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

12 months ago
12 months ago
12 months ago
12 months ago
  1. #pragma once
  2. #if 0
  3. #include <stdint.h>
  4. #include "stm32basic/stm32basic.hpp"
  5. #include "stm32halport/stm32halport.hpp"
  6. typedef struct {
  7. uint32_t configMark;
  8. uint32_t placeHolder;
  9. uint32_t checksum; //
  10. } config_t;
  11. void config_init(void);
  12. config_t* config_get(void);
  13. void config_flush(void);
  14. void config_factory_reset(void);
  15. #endif