Skip to content

Commit

Permalink
Merge pull request #126 from grapherd/hotfix/irq_priority_comment
Browse files Browse the repository at this point in the history
irq: Fixed debug_uart priority in comment
  • Loading branch information
jserv authored Oct 7, 2016
2 parents 5834887 + 49f66ef commit 1d17dfa
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions platform/irq.c
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,9 @@ void irq_init(void)
NVIC_SetPriority(BusFault_IRQn, 0x1, 0);
NVIC_SetPriority(UsageFault_IRQn, 0x1, 0);

/* Priority 0x2 - debug_uart */

NVIC_SetPriority(SysTick_IRQn, 0x3, 0);

/* Priority 0xF - debug_uart */
NVIC_SetPriority(SVCall_IRQn, 0xF, 0);
NVIC_SetPriority(PendSV_IRQn, 0xF, 0);
}
Expand Down

0 comments on commit 1d17dfa

Please sign in to comment.