[FreeRTOSKernelSim] 修复任务名称问题

This commit is contained in:
2025-09-30 14:33:10 +08:00
parent c015b6e3f7
commit d2166c0cf4

View File

@@ -45,7 +45,7 @@ int main()
/*创建任务*/
xTaskCreate( main_task1, "main_task1",40960, NULL, 1, NULL );
xTaskCreate( main_task2, "main_task2",40960, NULL, 1, NULL );
xTaskCreate( hshell_task, "hshell_task2",40960, NULL, 3, NULL );
xTaskCreate( hshell_task, "hshell_task",40960, NULL, 3, NULL );
/* Start the scheduler so the tasks start executing. */
vTaskStartScheduler();