Jump to content
43oh

Recommended Posts

  • Replies 91
  • Created
  • Last Reply

Top Posters In This Topic

Top Posters In This Topic

Popular Posts

Buy: The 43oh Store or Rob's Tindie Store.   The newest version of the Ethernet BoosterPack is based on the newest chip from WIZnet, W5500.   P1.5 - SCLK P1.6 - MISO P1.7 - MOSI P2.3 - /CS P2.

Ok, my totally reworked version of RobG's G2553 example.   A number of changes have occurred here to Rob's core code: 1. Some minor bugs in the Sn_IMR macros in w5500.h were fixed (although I don't

Not yet. W5500 is different from W5200 in many ways and it requires new code. I will post something next week.

Posted Images

My server software is not ready for prime time yet, so here is the driver part.

This should be enough to get things going for those who have my v3 BP or use W5500.

 

 

attachicon.gifw5500.hattachicon.gifw5500.cattachicon.gifdefines.hattachicon.giftypedefs.h

Im trying to understand your code  :blink: but I dont know where is your definition and implementation of 

extern u_char sendReceiveByteSPI(u_char byte);

is.

I wrote this instead:

//extern u_char sendReceiveByteSPI(u_char byte);
u_char sendReceiveByteSPI(u_char d) {  // send character over SPI
    u_char received = 0;
	SPIF.DATA = d;
	while ((SPIF.STATUS & SPI_IF_bm)==0);
	received = SPIF.DATA; 
    return (received);   
} 

Great job btw.

 

P.S.: Does somebody have a demo.c for a sample webserver.

Link to post
Share on other sites

Thank you Rob for the quick response. My function looks similar to your code with small changes to work on xmega spi. Im trying to adapt a code vision sample that uses Arduino Uno ATmega328 board + Wiznet W5100 shield as hardware to work with xmega128a1 + Wiznet W5500. Do you have any demo.c or some function how to correctly use your drivers to get the webserver running.

Thanks in advance.

Link to post
Share on other sites
  • 2 weeks later...
  • 2 weeks later...
  • 2 weeks later...
  • 2 weeks later...

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.


×
×
  • Create New...