From a74539ab4f4f9c9db74b5a8df9d31033f7a024a7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?King=20K=C3=A9vin?= Date: Fri, 24 Sep 2021 15:59:47 +0200 Subject: [PATCH] bootloader: fix new compiler error --- bootloader.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bootloader.c b/bootloader.c index f4ac26b..1faf09d 100644 --- a/bootloader.c +++ b/bootloader.c @@ -20,7 +20,7 @@ /** symbol for beginning of the application * @note this symbol will be provided by the bootloader linker script */ -extern char __application_beginning; +extern uint32_t __application_beginning; /** bootloader entry point */ void main(void);