Add saving cnf in ROM, workink with leds

This commit is contained in:
2026-03-30 18:42:53 +03:00
parent 0b982e5d4d
commit d43458c770
82 changed files with 43899 additions and 41684 deletions

View File

@@ -0,0 +1,21 @@
#ifndef CONFIG_STORE_H
#define CONFIG_STORE_H
#ifdef __cplusplus
extern "C" {
#endif
#include "config_types.h"
#include "config_consts.h"
#include <stdbool.h>
bool Config_Load(BridgeConfig_t *cfg);
bool Config_Save(const BridgeConfig_t *cfg);
#ifdef __cplusplus
}
#endif
#endif