25개 이상의 토픽을 선택하실 수 없습니다.
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- #include "SdPositionsBackup.h"
- #include "SdPositionsConfig.h"
- #include "SdCard.h"
-
- #include "Config.h"
-
- namespace positions {
- namespace backup {
- namespace sd {
-
- void SdPositionsBackup::setup() {
- config::backup::sd::setup();
- _config = new RawSdFile(&hardware::sdcard::filesystem, POSITIONS_CONFIG_FILENAME);
- }
-
- void SdPositionsBackup::backup() {
- Config referenceConfig = config::main::get();
-
- }
-
- }
- }
- }
|