WIZnet Ethernet Shield 1.1 on Panda II

Hi 
I just bought a WIZnet Ethernet Shield 1.1(http://www.seeedstudio.com/wiki/Ethernet_Shield_V1.0), and i was planning to use it on my FEZ Panda II...

Now it all seems to work, except i get no connection through the SPI...
RX & TX flashing on full speed when i ping the device... but MISO; MOSI and SCK is just off...

I have a simple code i run, And if i then ping the device, i get unknow "Destination host unreachable"... 

public class Program {

        static OutputPort MyLED = new OutputPort((Cpu.Pin)FEZ_Pin.Digital.LED, true);

        public static void Main() {

            byte[] ip = { 192, 168, 1, 222 };

            byte[] subnet = { 255, 255, 255, 0 };

            byte[] gateway = { 192, 168, 1, 1 };

            byte[] mac = { 0x00, 0x88, 0x98, 0x90, 0xD4, 0xE0 };

            WIZnet_W5100.Enable(SPI.SPI_module.SPI1,        // Use SPI1

          (Cpu.Pin)FEZ_Pin.Digital.Di10,              // /CS pin

          (Cpu.Pin)FEZ_Pin.Digital.Di3,               // /Reset pin

          true);

            NetworkInterface.EnableStaticIP(ip, subnet, gateway, mac);

            NetworkInterface.EnableStaticDns(new byte[] { 192, 168, 1, 1 });

            while (true) {

                MyLED.Write(false);

                Thread.Sleep(300);

                MyLED.Write(true);

                Thread.Sleep(300);

            }

        }

    } 


Hi,have you set the solder

Hi,

have you set the solder jumpers for SCK, MISO, MOSI? Put a solder pin for each IO from the middle to the left pin.

 

Thanks for the answer.So

Thanks for the answer.


So theese pins should be soldered together (marked with red)?
What about the ones that currently have a diode(i think it is?) between them from middle to right??
And what does this exactly do? 

WP_20130607_004.jpg

 

 

Forgot to make it a reply,

Forgot to make it a reply, so just be sure you get this:
https://www.robotshop.com/letsmakerobots/node/37411#comment-103626 

correct, the red marked pins

correct, the red marked pins should be soldered together. This will connect SPI pins to D11…D13. The resistors (my guess) from middle to right goes to the 6-pin ISP header. 

Thank you bery much!It

Thank you bery much!
It worked like a charm, got reply from it now when i ping it :)