Re: [lwip-users] LwIP 1.41 select does not return ?

2017-05-31 Thread Noam Weissman
31, 2017 8:44 PM To: Mailing list for lwIP users Subject: Re: [lwip-users] LwIP 1.41 select does not return ? Thanks I will check that tomorrow :-) From: lwip-users <lwip-users-bounces+noam=silrd@nongnu.org> on behalf of goldsimon <goldsi...@gmx.de&g

Re: [lwip-users] LwIP 1.41 select does not return ?

2017-05-31 Thread Arpit Agarwal
t for lwIP users Subject: Re: [lwip-users] LwIP 1.41 select does not return ? Thanks I will check that tomorrow :-) From: lwip-users <lwip-users-bounces+noam=silrd@nongnu.org> on behalf of goldsimon <goldsi...@gmx.de> Sent: Wednesday, May 31, 2

Re: [lwip-users] LwIP 1.41 select does not return ?

2017-05-31 Thread Noam Weissman
Thanks I will check that tomorrow :-) From: lwip-users <lwip-users-bounces+noam=silrd@nongnu.org> on behalf of goldsimon <goldsi...@gmx.de> Sent: Wednesday, May 31, 2017 5:53 PM To: Mailing list for lwIP users Subject: Re: [lwip-users] LwIP 1.41

Re: [lwip-users] LwIP 1.41 select does not return ?

2017-05-31 Thread goldsimon
Noam Weissman: >Were is the semaphore released ? In "event_callback()", if I remember correctly. Simon ___ lwip-users mailing list lwip-users@nongnu.org https://lists.nongnu.org/mailman/listinfo/lwip-users

Re: [lwip-users] LwIP 1.41 select does not return ?

2017-05-31 Thread goldsimon
Noam Weissman wrote: >My question was simple ... does anyone have an idea why select > >does not return when a connection to the correct port is initiated. Can't help you much there other than saying: try to check the socket's status: is there an acceptable connection pending in the queue? Has

Re: [lwip-users] LwIP 1.41 select does not return ?

2017-05-31 Thread Noam Weissman
nesday, May 31, 2017 4:30 PM To: Noam Weissman; lwip-users@nongnu.org Subject: Re: [lwip-users] LwIP 1.41 select does not return ? Hi Noam, OK, cool. It sounds like you're on top of the whole raw/netconn thing. I was really checking to see whether you'd failed to start the tcpip thread, or some

Re: [lwip-users] LwIP 1.41 select does not return ?

2017-05-31 Thread Tim Cussins
lwip-users-bounces+noam=silrd@nongnu.org> on behalf > of Tim Cussins <timcuss...@eml.cc> > Sent: Wednesday, May 31, 2017 1:43 PM > To: lwip-users@nongnu.org > Subject: Re: [lwip-users] LwIP 1.41 select does not return ? > > Hi Noam, > > On Wed, May 31, 2017, at 11

Re: [lwip-users] LwIP 1.41 select does not return ?

2017-05-31 Thread Arpit Agarwal
ns; Mailing list for lwIP users Subject: Re: [lwip-users] LwIP 1.41 select does not return ? Hi Arpit, Thanks for the reply. I am not saying that lwip_select is the problem, I am using the socket API in in another application that I wrote and have no problems. It works as expected. The code I am

Re: [lwip-users] LwIP 1.41 select does not return ?

2017-05-31 Thread Noam Weissman
. From: lwip-users <lwip-users-bounces+noam=silrd@nongnu.org> on behalf of Tim Cussins <timcuss...@eml.cc> Sent: Wednesday, May 31, 2017 1:43 PM To: lwip-users@nongnu.org Subject: Re: [lwip-users] LwIP 1.41 select does not return ? Hi Noam, On Wed, May 31, 2017, at 11:11 AM, N

Re: [lwip-users] LwIP 1.41 select does not return ?

2017-05-31 Thread Tim Cussins
Hi Noam, On Wed, May 31, 2017, at 11:11 AM, Noam Weissman wrote: > I am using a base project that is used for testing. This base project > uses FreeRTOS 8.01 + LwIP 1.41 > + a few modules that work just fine. The base project has a DHCP client > and a TCP server (Raw API) > that work just fine.

Re: [lwip-users] LwIP 1.41 select does not return ?

2017-05-31 Thread Tim Cussins
Hi Noam, On Wed, May 31, 2017, at 11:11 AM, Noam Weissman wrote: > I am using a base project that is used for testing. This base project > uses FreeRTOS 8.01 + LwIP 1.41 > + a few modules that work just fine. The base project has a DHCP client > and a TCP server (Raw API) > that work just fine.

Re: [lwip-users] LwIP 1.41 select does not return ?

2017-05-31 Thread Noam Weissman
t: Re: [lwip-users] LwIP 1.41 select does not return ? Hi Noam, I think lwip_select is not the problem. I have used it previously and it used to works with lwip 1.4.1 version. However as per your saying that select gets timeout, I would recommend you to debug event_callback API and verify i

Re: [lwip-users] LwIP 1.41 select does not return ?

2017-05-31 Thread Arpit Agarwal
arpit.a=alumni.iitg.ernet...@nongnu.org> on behalf of Noam Weissman <n...@silrd.com> Sent: Wednesday, May 31, 2017 4:49 PM To: Tim Cussins; Mailing list for lwIP users Subject: Re: [lwip-users] LwIP 1.41 select does not return ? Hi Tim, I am aware of that but that did not answer my questio

Re: [lwip-users] LwIP 1.41 select does not return ?

2017-05-31 Thread Noam Weissman
that lwip_select is not 100% BSD compliant as CypherBridge code is ? Thanks and BR, Noam. From: Tim Cussins <timcuss...@eml.cc> Sent: Wednesday, May 31, 2017 1:57 PM To: Noam Weissman; Mailing list for lwIP users Subject: Re: [lwip-users] LwIP 1.41 selec

[lwip-users] LwIP 1.41 select does not return ?

2017-05-31 Thread Noam Weissman
Hi All, I am trying to run a CypherBridge uSSH server demo on STM3240-Eval board. The original code was designed for ST discovery board with the same micro. The original code uses FreeRTOS 6.01 and LwIP 1.32 .. I am using a base project that is used for testing. This base project uses