Re: [lwip-users] Memory Pool relocation

2017-10-15 Thread Dirk Ziegelmeier
​ extern u8_t attribute((section(".onchip_mem"))) memp_memory_PBUF_POOL_base[]; The documentation is wrong. I'll fix it. Ciao Dirk Hi > > > I eventually got round to testing this – but I am not sure the docs are > correct. Here is the note in the docs: > > > > extern u8_t attribute((section("

[lwip-users] broadcast-recv-broadcast sequence fails

2017-10-15 Thread newbie
hello, I ama using lwip-1.4.1 ontop of freertos, using a simple udp connection, I am not able to achieve the sequence boadcast_receive_broadcast. The first two instrunctions succeedes, however, the third, returns always ERR_VAL (-6). The code is nearly: /* setup , DHCP enabled */ conn = netconn

Re: [lwip-users] Memory Pool relocation

2017-10-15 Thread Zahir Lalani
Hi I eventually got round to testing this – but I am not sure the docs are correct. Here is the note in the docs: extern u8_t attribute((section(".onchip_mem"))) memp_memory_my_private_pool[]; I could not get this to move the pool if I did: extern u8_t attribute((section(".onchip_

Re: [lwip-users] I have some problem using Raw/Tcp interface.

2017-10-15 Thread Jens Nielsen
Hi Well, the assert tells you you're calling tcp_accepted with the wrong pcb? http://lwip.wikia.com/wiki/Raw/TCP Best regards Jens On 2017-10-15 10:57, Flavio Gobber wrote: calling the function  tcp_accepted (newpcb) ,with newpcb the argument passed to the callback. __

[lwip-users] I have some problem using Raw/Tcp interface.

2017-10-15 Thread Flavio Gobber
Hello, I'm trying to write a tcp server using that interface for a blackfin board. An other application which use the socket interface works well. The issue happens when I complete the accept_callback function, calling the function tcp_accepted (newpcb) ,with newpcb the argument passed to the cal