Re: RTEMS BSD Net on Atmel SAM Board

2016-06-06 Thread Isaac Gutekunst
Hi Pavel, This information is quite helpful. Thank you! Isaac On 06/06/2016 04:36 AM, Pavel Pisa wrote: Hello Isaac, On Thursday 02 of June 2016 17:09:31 Isaac Gutekunst wrote: On 06/01/2016 07:18 PM, Pavel Pisa wrote: Hello Isaac, On Wednesday 01 of June 2016 23:09:39 Isaac Gutekunst wrote

Re: RTEMS BSD Net on Atmel SAM Board

2016-06-06 Thread Sebastian Huber
On 06/06/16 10:36, Pavel Pisa wrote: Hello Isaac, On Thursday 02 of June 2016 17:09:31 Isaac Gutekunst wrote: On 06/01/2016 07:18 PM, Pavel Pisa wrote: Hello Isaac, On Wednesday 01 of June 2016 23:09:39 Isaac Gutekunst wrote: I believe I solved all my problems. Not enough memory. After upd

Re: RTEMS BSD Net on Atmel SAM Board

2016-06-06 Thread Pavel Pisa
Hello Isaac, On Thursday 02 of June 2016 17:09:31 Isaac Gutekunst wrote: > On 06/01/2016 07:18 PM, Pavel Pisa wrote: > > Hello Isaac, > > > > On Wednesday 01 of June 2016 23:09:39 Isaac Gutekunst wrote: > >> I believe I solved all my problems. Not enough memory. After updating > >> the linker scri

Re: RTEMS BSD Net on Atmel SAM Board

2016-06-02 Thread Isaac Gutekunst
On 06/01/2016 07:18 PM, Pavel Pisa wrote: Hello Isaac, On Wednesday 01 of June 2016 23:09:39 Isaac Gutekunst wrote: I believe I solved all my problems. Not enough memory. After updating the linker script to use SDRAM, everything appears to be working well! (Knock on wood). I think that SAM

Re: RTEMS BSD Net on Atmel SAM Board

2016-06-01 Thread Pavel Pisa
Hello Isaac, On Wednesday 01 of June 2016 23:09:39 Isaac Gutekunst wrote: > I believe I solved all my problems. Not enough memory. After updating the > linker script to use SDRAM, everything appears to be working well! (Knock > on wood). I think that SAM V71 setup with 2 MB of external SDRAM is n

Re: RTEMS BSD Net on Atmel SAM Board

2016-06-01 Thread Isaac Gutekunst
I believe I solved all my problems. Not enough memory. After updating the linker script to use SDRAM, everything appears to be working well! (Knock on wood). I've also been reminded that the ping shell command has a memory leak. It expects the kernel to free up memory after the command exits.

Re: RTEMS BSD Net on Atmel SAM Board

2016-06-01 Thread Isaac Gutekunst
A brief update: I've updated my configuration from a different example to be a bit more complete. It looks like it can't communicate with the PHY. #if (defined (RTEMS_SET_ETHERNET_ADDRESS)) static char ethernet_address[6] = { 0x00, 0x04, 0x9F, 0x00, 0x5B, 0x21 }; #endif static struct rtems_b

RTEMS BSD Net on Atmel SAM Board

2016-06-01 Thread Isaac Gutekunst
Hi All, I'm trying to bring up tHE Atmel SAMV71 Explained Ultra board with networking, and can't figure out how to. Does anyone have any quick pointers? Isaac To limit potential email traffic, this is my setup as of now: I've compiled the BSP with --enable-networking, verified by sprinkli