From a681fa17fef1c20f20263270ce2ad0ba9a9b46f2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ond=C5=99ej=20Hru=C5=A1ka?= Date: Sun, 24 Dec 2017 23:29:51 +0100 Subject: [PATCH] removed some confusing comments --- comm/messages.c | 4 ++-- framework/settings.h | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/comm/messages.c b/comm/messages.c index 27aed73..dc021b3 100644 --- a/comm/messages.c +++ b/comm/messages.c @@ -2,9 +2,9 @@ // Created by MightyPork on 2017/11/21. // -#include -#include #include "platform.h" +#include "framework/settings.h" +#include "utils/ini_parser.h" #include "TinyFrame.h" #include "framework/unit_registry.h" #include "comm/messages.h" diff --git a/framework/settings.h b/framework/settings.h index 792668d..9e15365 100644 --- a/framework/settings.h +++ b/framework/settings.h @@ -30,7 +30,7 @@ void settings_save(void); * * NOTE: Should the file be received only partially, this may corrupt the settings. * For this reason we don't commit it to flash immediately but require user to replace - * the LOCK jumper before unplugging the device. (TODO implement the LOCK jumper and this feature!!) + * the LOCK jumper before unplugging the device. */ void settings_load_ini_begin(void); @@ -46,7 +46,7 @@ void settings_load_ini_key(const char *restrict section, const char *restrict ke * * NOTE: Should the file be received only partially, this may corrupt the settings. * For this reason we don't commit it to flash immediately but require user to replace - * the LOCK jumper before unplugging the device. (TODO implement the LOCK jumper and this feature!!) + * the LOCK jumper before unplugging the device. */ void settings_load_ini_end(void);