how to add other xTaskCreate when fisrt call smartconfig
Posted: Sun Sep 03, 2017 1:39 pm
The code:
void app_main()
{
smart_app(); // 3,4096
//oled_app(); // 11,2048
//timer_app(); // 5,2048
//tcp_app(); // 4,4096
//led_app(); // 9,1024
//uartx_app(); // 10.1024
}
Note:
every *_app() is a "xTaskCreate ()",
Problem:
I found after smart_app(), none xTaskCreate could run,
is ther any point I should care?
void app_main()
{
smart_app(); // 3,4096
//oled_app(); // 11,2048
//timer_app(); // 5,2048
//tcp_app(); // 4,4096
//led_app(); // 9,1024
//uartx_app(); // 10.1024
}
Note:
every *_app() is a "xTaskCreate ()",
Problem:
I found after smart_app(), none xTaskCreate could run,
is ther any point I should care?