FreeRTOS v9.0.0 upgrade
This commit is contained in:
parent
8840eb0411
commit
7bab80c33d
60 changed files with 10623 additions and 3652 deletions
|
|
@ -119,7 +119,7 @@ void frc2_handler(void)
|
|||
void user_init(void)
|
||||
{
|
||||
uart_set_baud(0, 115200);
|
||||
xTaskCreate(timerRegTask, (signed char *)"timerRegTask", 1024, NULL, 2, NULL);
|
||||
xTaskCreate(timerRegTask, "timerRegTask", 1024, NULL, 2, NULL);
|
||||
|
||||
TIMER(0).CTRL = VAL2FIELD(TIMER_CTRL_CLKDIV, TIMER_CLKDIV_256) | TIMER_CTRL_RELOAD;
|
||||
TIMER(0).LOAD = 0x200000;
|
||||
|
|
|
|||
|
|
@ -230,7 +230,7 @@ void user_init(void)
|
|||
test_sign_extension();
|
||||
|
||||
xTaskHandle taskHandle;
|
||||
xTaskCreate(test_system_interaction, (signed char *)"interactionTask", 256, &taskHandle, 2, NULL);
|
||||
xTaskCreate(test_system_interaction, "interactionTask", 256, &taskHandle, 2, NULL);
|
||||
}
|
||||
|
||||
static volatile bool frc1_ran;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue