diff options
author | ThomasintAnker <thomasintanker1@gmail.com> | 2024-05-24 11:21:41 +0200 |
---|---|---|
committer | ThomasintAnker <thomasintanker1@gmail.com> | 2024-05-24 11:21:41 +0200 |
commit | 4499d3cdfa2210a3c8be5e93f45fd7286e0d646d (patch) | |
tree | 6c8de3536a0c03f29198e905a4d7f4a8d2538e2a /main/main.c | |
parent | 5e7481e9170c1334d74a57e84640e89a40cf74c3 (diff) |
pani
Diffstat (limited to 'main/main.c')
-rw-r--r-- | main/main.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/main/main.c b/main/main.c index b38030f..22287b3 100644 --- a/main/main.c +++ b/main/main.c @@ -24,8 +24,8 @@ int main() { init(); xTaskCreate((TaskFunction_t) blink_task, "blink", configMINIMAL_STACK_SIZE, NULL, tskIDLE_PRIORITY + 2, NULL); - xTaskCreate((TaskFunction_t) serve_task, "serve", configMINIMAL_STACK_SIZE, NULL, tskIDLE_PRIORITY + 2, NULL); - xTaskCreate((TaskFunction_t) bus_task, "bus", configMINIMAL_STACK_SIZE, NULL, tskIDLE_PRIORITY + 2, NULL); + //xTaskCreate((TaskFunction_t) serve_task, "serve", configMINIMAL_STACK_SIZE, NULL, tskIDLE_PRIORITY + 2, NULL); + //xTaskCreate((TaskFunction_t) bus_task, "bus", configMINIMAL_STACK_SIZE, NULL, tskIDLE_PRIORITY + 2, NULL); vTaskStartScheduler(); } |