From d86cab0080367bb8a5df9cd9f3309906afc74b7a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?K=C3=A9vin=20Redon?= Date: Sun, 17 Jun 2018 22:34:47 +0200 Subject: [PATCH] DFU: uncomment print message when DFU is forced using the button --- firmware/libboard/simtrace/source/board_simtrace.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/firmware/libboard/simtrace/source/board_simtrace.c b/firmware/libboard/simtrace/source/board_simtrace.c index 5c865f01..e29161c0 100644 --- a/firmware/libboard/simtrace/source/board_simtrace.c +++ b/firmware/libboard/simtrace/source/board_simtrace.c @@ -44,7 +44,7 @@ int board_override_enter_dfu(void) /* Enter DFU bootloader in case the respective button is pressed */ if (PIO_Get(&bl_sw_pin) == 0) { - //printf("BOOTLOADER switch presssed -> Force DFU\n\r"); + printf("BOOTLOADER switch presssed -> Force DFU\n\r"); return 1; } else return 0;