This commit is contained in:
parent
10e11d91b6
commit
c0a1c4f79e
3 changed files with 7 additions and 3 deletions
|
|
@ -13,6 +13,7 @@
|
|||
|
||||
void user_init(void)
|
||||
{
|
||||
|
||||
uart_set_baud(0, 115200);
|
||||
printf("SDK version: %s\n", sdk_system_get_sdk_version());
|
||||
|
||||
|
|
@ -22,6 +23,8 @@ void user_init(void)
|
|||
|
||||
wifi_available_semaphore = xSemaphoreCreateBinary();
|
||||
|
||||
xTaskCreate(mqtt_task, "mqtt_task", 1024, NULL, 1, NULL);
|
||||
|
||||
xTaskCreate(wifi_task, "wifi_task", 1024, NULL, 1, NULL);
|
||||
|
||||
xTaskCreate(&httpd_task, "httpd_task", 1024, NULL, 2, NULL);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue