Search found 5 matches

by frankket
Wed Jun 20, 2018 7:35 pm
Forum: ESP-IDF
Topic: esp_register_freertos_tick_hook() verus FreeRTOS vApplicationTickHook()
Replies: 12
Views: 15807

Re: esp_register_freertos_tick_hook() verus FreeRTOS vApplicationTickHook()

Thank you - that's much clearer. Much appreciated.

Frank
by frankket
Tue Jun 19, 2018 6:28 pm
Forum: ESP-IDF
Topic: esp_register_freertos_tick_hook() verus FreeRTOS vApplicationTickHook()
Replies: 12
Views: 15807

esp_register_freertos_tick_hook() verus FreeRTOS vApplicationTickHook()

Hi all I need to setup a regular tick feature. The freeRTOS "vanilla" vApplicationTickHook() would work, but I see that the ESP-IDF provides it’s own time hook API (esp_register_freertos_tick_hook), one for each core. This seems like a better choice than the FreeRTOS option, but I can find very the ...
by frankket
Sun May 27, 2018 3:30 pm
Forum: ESP-IDF
Topic: c++ and simple wifi example
Replies: 6
Views: 16487

Re: c++ and simple wifi example

Hi all, Thank you for your replies. Sorry for the delay, but unfortunately my day job kept me away.... Adding memset solved the problem >> (I (3295) simple wifi: got ip:192.168.1.113 :D :D ) memset(&wifi_config, 0, sizeof(wifi_config)); sprintf (reinterpret_cast<char*>(wifi_config.sta.ssid), EXAMPLE...
by frankket
Mon May 21, 2018 8:29 pm
Forum: ESP-IDF
Topic: c++ and simple wifi example
Replies: 6
Views: 16487

Re: c++ and simple wifi example

:oops: :oops: :oops: Yes, sorry. Adding some more details would have helped..... /* Simple WiFi Example This example code is in the Public Domain (or CC0 licensed, at your option.) Unless required by applicable law or agreed to in writing, this software is distributed on an "AS IS" BASIS, WITHOUT WA...
by frankket
Sun May 20, 2018 6:20 pm
Forum: ESP-IDF
Topic: c++ and simple wifi example
Replies: 6
Views: 16487

c++ and simple wifi example

Hi all I am having a bit of difficulty implementing C++. I’ve managed to compile and run the ‘simple_Wi-Fi’ example from the Espressif IDF example folder using C in Eclipse. My router shows that the esp32 connects and is allocated a IP address. I then tried to re-configure the same simple_Wi-Fi exam...