您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

23 行
297 B

  1. #pragma once
  2. #include <Arduino.h>
  3. struct SdPositionConfig_t {
  4. uint16_t fileIndex;
  5. uint32_t position;
  6. size_t size;
  7. };
  8. namespace config {
  9. namespace backup {
  10. namespace sd {
  11. void setup();
  12. SdPositionConfig_t get();
  13. void set(SdPositionConfig_t config);
  14. void reset();
  15. }
  16. }
  17. }