fix no RTOS SysTick interrupt for a period of time after the OS Scheduler is started

pull/6491/head
Li Shuai 2020-12-15 11:38:41 +08:00
rodzic a43de3a44b
commit 63c4e5481f
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -152,11 +152,11 @@ void vPortSetupTimer(void)
/* configure the timer */
systimer_hal_init();
systimer_hal_connect_alarm_counter(SYSTIMER_ALARM_0, SYSTIMER_COUNTER_1);
systimer_hal_enable_counter(SYSTIMER_COUNTER_1);
systimer_hal_set_alarm_period(SYSTIMER_ALARM_0, 1000000UL / CONFIG_FREERTOS_HZ);
systimer_hal_select_alarm_mode(SYSTIMER_ALARM_0, SYSTIMER_ALARM_MODE_PERIOD);
systimer_hal_enable_alarm_int(SYSTIMER_ALARM_0);
systimer_hal_connect_alarm_counter(SYSTIMER_ALARM_0, SYSTIMER_COUNTER_1);
}
void prvTaskExitError(void)