Skip to content

Commit

Permalink
IPC test
Browse files Browse the repository at this point in the history
  • Loading branch information
shin21 committed Apr 17, 2014
1 parent ed0bd2f commit 140be04
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions CORTEX_M4F_STM32F407ZG-SK/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -242,11 +242,11 @@ main( void )

MsgQueue = xQueueCreate( 5 , sizeof( uint32_t ) );

xTaskCreate( Task1, (signed char*)"Task1", 128, NULL, tskIDLE_PRIORITY+1, NULL );
// xTaskCreate( Task1, (signed char*)"Task1", 128, NULL, tskIDLE_PRIORITY+1, NULL );
// xTaskCreate( Task2, (signed char*)"Task2", 128, NULL, tskIDLE_PRIORITY+2, NULL );
// xTaskCreate( Task3, (signed char*)"Task3", 128, NULL, tskIDLE_PRIORITY+3, NULL );
// xTaskCreate( QTask1, (signed char*)"Task1", 128, NULL, tskIDLE_PRIORITY+1, NULL );
// xTaskCreate( QTask2, (signed char*)"Task2", 128, NULL, tskIDLE_PRIORITY+1, NULL );
xTaskCreate( QTask1, (signed char*)"Task1", 128, NULL, tskIDLE_PRIORITY+1, NULL );
xTaskCreate( QTask2, (signed char*)"Task2", 128, NULL, tskIDLE_PRIORITY+1, NULL );

vTaskStartScheduler();
}
Expand Down

0 comments on commit 140be04

Please sign in to comment.