Skip to content

Commit 70a7180

Browse files
committed
Remove FIXME comments from supervisor/port.c. Changes were tested.
1 parent 259cc66 commit 70a7180

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

ports/analog/supervisor/port.c

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -65,14 +65,12 @@ static uint32_t tick_flag = 0;
6565
// defined by cmsis core files
6666
extern void NVIC_SystemReset(void) NORETURN;
6767

68-
// FIXME: Currently have an issue with time.sleep b/c MXC_Delay uses SysTick,
69-
// and SysTick ISR isn't happening. Seems that MXC_Delay results in inf. loop
7068
safe_mode_t port_init(void) {
7169
int err = E_NO_ERROR;
7270

7371
// 1ms tick timer
7472
SysTick_Config(SystemCoreClock / 1000);
75-
NVIC_EnableIRQ(SysTick_IRQn); // FIXME: Test with NVIC Enable here before committing
73+
NVIC_EnableIRQ(SysTick_IRQn);
7674

7775
// Enable GPIO (enables clocks + common init for ports)
7876
for (int i = 0; i < MXC_CFG_GPIO_INSTANCES; i++) {

0 commit comments

Comments
 (0)