cardem: set more reasonable interrupt priorities

the ISO7816 UARTs have highest priority, while console has lowest.

remaining sources (USB, ADC, GPIO) are in between.

Change-Id: Ie6c97d61d8da3990b6e44144f36cb6d37d194307
This commit is contained in:
Harald Welte
2022-01-25 23:24:48 +01:00
parent 8680677256
commit 039680a8d4
3 changed files with 7 additions and 1 deletions

View File

@@ -155,7 +155,7 @@ extern int main(void)
WDT_Enable(WDT, WDT_MR_WDRSTEN | WDT_MR_WDDBGHLT | WDT_MR_WDIDLEHLT |
(WDT_GetPeriod(2000) << 16) | WDT_GetPeriod(2000));
PIO_InitializeInterrupts(0);
PIO_InitializeInterrupts(10);
print_banner();
board_main_top();