From 9f419e1da06e5225b65c687cff2926f0ad4ee9e9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?King=20K=C3=A9vin?= Date: Wed, 10 Jun 2020 17:40:54 +0200 Subject: [PATCH] application: minor, improve code --- application.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/application.c b/application.c index 880e480..4d4a108 100644 --- a/application.c +++ b/application.c @@ -71,7 +71,7 @@ static time_t time_start = 0; /** @defgroup main_flags flag set in interrupts to be processed in main task * @{ */ -volatile bool rtc_internal_tick_flag = false; /**< flag set when internal RTC ticked */ +static volatile bool rtc_internal_tick_flag = false; /**< flag set when internal RTC ticked */ /** @} */ size_t putc(char c)