2021-07-02 16:45:29 +00:00
|
|
|
//
|
|
|
|
// Created by jedi on 25.06.21.
|
|
|
|
//
|
|
|
|
|
|
|
|
#ifndef FIRMWARE_SYSTEM_H
|
|
|
|
#define FIRMWARE_SYSTEM_H
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2021-07-06 20:55:38 +00:00
|
|
|
void system_clear_config();
|
2021-07-09 19:35:41 +00:00
|
|
|
void system_init_config();
|
2021-07-06 20:55:38 +00:00
|
|
|
|
2021-07-02 16:45:29 +00:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif //FIRMWARE_SYSTEM_H
|