lab2-4_single_msg_queue_interrupt

This commit is contained in:
2022-11-03 16:41:20 +01:00
parent 7ddfd4a1aa
commit 0c0741aef3
4 changed files with 102 additions and 28 deletions

View File

@@ -104,7 +104,7 @@ void app_main(void) {
DISPLAY("Start of app_main task, priority = %d",uxTaskPriorityGet(NULL));
vTaskSuspendAll();
xTaskCreatePinnedToCore(vTaskFunction1, "Task 1", STACK_SIZE, (void*)"Task 1", T1_PRIO, NULL,CORE_1);
xTaskCreatePinnedToCore(vTaskFunction2, "Task 2", STACK_SIZE, (void*)"Task 2", T2_PRIO, NULL,CORE_0);
xTaskCreatePinnedToCore(vTaskFunction3, "Task 3", STACK_SIZE, (void*)"Task 3", T3_PRIO, NULL,CORE_0);