owhw: add missing function board_main_top

the board_main_top function was not defined, causing a hard fault
when initializing the board

Change-Id: Ib92003416648822c4115472992850c592bc4047a
This commit is contained in:
Kevin Redon 2018-09-06 22:52:42 +02:00
parent 6303c39a00
commit 64f69fc4ac
1 changed files with 8 additions and 0 deletions

View File

@ -21,6 +21,7 @@
#include "chip.h"
#include "board.h"
#include "utils.h"
#include "usb_buf.h"
static const Pin pins_cardsim[] = PINS_CARDSIM;
@ -42,6 +43,13 @@ void board_exec_dbg_cmd(int ch)
}
}
void board_main_top(void)
{
#ifndef APPLICATION_dfu
usb_buf_init();
#endif
}
void cardsim_set_simpres(uint8_t slot, int present)
{
if (slot > 1)