-->
Page 1 of 2

Anyone try Freertos SDK?

PostPosted: Thu Dec 11, 2014 2:57 pm
by alonewolfx2
I am testing and developing iot rtos SDK and I think it's powerful because multitasking and free 42k ram very good. but I found some bugs. Udhcp a little buggy. Anyone tried?
I wish we can use like at firmware but on the wifi.
Now it can start in stationAp mode with standalone lwip socket server and I can do some operations on the socket. (gpio control, connecting router, restart, deepsleep, )
And I am planning to a small command set like interpreter)

Re: Anyone try Freertos SDK?

PostPosted: Sat Dec 13, 2014 3:32 am
by Baoshi
I found udhcpd_start() must be called as late as in user_init, just before xTaskCreates. If I insert some lengthly function in between udncpd_start and xTaskCreate, dhcpd will fail to issue IP address. Guess the dhcpd task cannot be interrupted for too long.

Re: Anyone try Freertos SDK?

PostPosted: Wed Dec 17, 2014 3:37 am
by alonewolfx2
Baoshi wrote:I found udhcpd_start() must be called as late as in user_init, just before xTaskCreates. If I insert some lengthly function in between udncpd_start and xTaskCreate, dhcpd will fail to issue IP address. Guess the dhcpd task cannot be interrupted for too long.

I didn't add anything between xtask and udhcp but it still fail. I don't know why. Rtos SDK new and buggy I think

Re: Anyone try Freertos SDK?

PostPosted: Wed Dec 31, 2014 5:26 am
by Athena
How about this issue now? Does it still bother you?