You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
353 B
18 lines
353 B
#pragma once
|
|
#if 0
|
|
#include <stdint.h>
|
|
|
|
#include "stm32basic/stm32basic.hpp"
|
|
#include "stm32halport/stm32halport.hpp"
|
|
|
|
typedef struct {
|
|
uint32_t configMark;
|
|
uint32_t placeHolder;
|
|
uint32_t checksum; //
|
|
} config_t;
|
|
|
|
void config_init(void);
|
|
config_t* config_get(void);
|
|
void config_flush(void);
|
|
void config_factory_reset(void);
|
|
#endif
|