removed some confusing comments

This commit is contained in:
2017-12-24 23:29:51 +01:00
parent 9132e549ac
commit a681fa17fe
2 changed files with 4 additions and 4 deletions
+2 -2
View File
@@ -2,9 +2,9 @@
// Created by MightyPork on 2017/11/21. // Created by MightyPork on 2017/11/21.
// //
#include <framework/settings.h>
#include <utils/ini_parser.h>
#include "platform.h" #include "platform.h"
#include "framework/settings.h"
#include "utils/ini_parser.h"
#include "TinyFrame.h" #include "TinyFrame.h"
#include "framework/unit_registry.h" #include "framework/unit_registry.h"
#include "comm/messages.h" #include "comm/messages.h"
+2 -2
View File
@@ -30,7 +30,7 @@ void settings_save(void);
* *
* NOTE: Should the file be received only partially, this may corrupt the settings. * 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 * 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); 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. * 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 * 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); void settings_load_ini_end(void);