FreeRTOS v9.0.0 upgrade
This commit is contained in:
parent
8840eb0411
commit
7bab80c33d
60 changed files with 10623 additions and 3652 deletions
|
|
@ -274,7 +274,7 @@ void user_init(void) {
|
|||
gpio_write(GPIO_LED, 1);
|
||||
|
||||
publish_queue = xQueueCreate(3, 16);
|
||||
xTaskCreate(&wifi_task, (int8_t *) "wifi_task", 256, NULL, 2, NULL);
|
||||
xTaskCreate(&beat_task, (int8_t *) "beat_task", 256, NULL, 2, NULL);
|
||||
xTaskCreate(&mqtt_task, (int8_t *) "mqtt_task", 2048, NULL, 2, NULL);
|
||||
xTaskCreate(&wifi_task, "wifi_task", 256, NULL, 2, NULL);
|
||||
xTaskCreate(&beat_task, "beat_task", 256, NULL, 2, NULL);
|
||||
xTaskCreate(&mqtt_task, "mqtt_task", 2048, NULL, 2, NULL);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue