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.

23 regels
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. }