Skip to content

Commit

Permalink
boards/mcb2388: provide custom leds_init()
Browse files Browse the repository at this point in the history
  • Loading branch information
benpicco committed Feb 17, 2022
1 parent 2b12d69 commit 02c7769
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions boards/mcb2388/board_init.c
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,13 @@ static mtd_dev_t _mtd_mci = { .driver = &mtd_mci_driver };
mtd_dev_t *mtd0 = &_mtd_mci;
#endif

void leds_int(void)
{
/* LEDs */
FIO2DIR |= LED0_MASK | LED1_MASK | LED2_MASK | LED3_MASK \
| LED4_MASK | LED5_MASK | LED6_MASK | LED7_MASK;
}

void board_init(void)
{
}

0 comments on commit 02c7769

Please sign in to comment.