14 lines
320 B
C
14 lines
320 B
C
#ifndef APP_PARAM_STORE_H
|
|
#define APP_PARAM_STORE_H
|
|
|
|
#include <stdbool.h>
|
|
#include "Com_type.h"
|
|
|
|
void App_ParamStore_Init(void);
|
|
bool App_ParamStore_LoadAndApply(void);
|
|
bool App_ParamStore_Save(const App_RunParams_t *params);
|
|
bool App_ParamStore_Read(App_RunParams_t *params);
|
|
void App_ParamStore_Process(void);
|
|
|
|
#endif
|