From 64f69fc4aca1b5adc077447a4467d603f6d23445 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?K=C3=A9vin=20Redon?= Date: Thu, 6 Sep 2018 22:52:42 +0200 Subject: [PATCH] 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 --- firmware/libboard/owhw/source/owhw.c | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/firmware/libboard/owhw/source/owhw.c b/firmware/libboard/owhw/source/owhw.c index be62660c..3bf51ec0 100644 --- a/firmware/libboard/owhw/source/owhw.c +++ b/firmware/libboard/owhw/source/owhw.c @@ -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)