25개 이상의 토픽을 선택하실 수 없습니다.
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- #pragma once
-
- #include "System.h"
- #include "Hardware.h"
- #include "Gps.h"
- #include "Network.h"
- #include "Sleeps.h"
- #include "Alerts.h"
-
- /**
- \def BACKUP_ENABLE_SDCARD
- Enable (1) or disable (0) the backup of positions using an sd card.
- Note: This code has never been finished properly because of the lack of space
- on the ATMega
- */
- #define BACKUP_ENABLE_SDCARD 0
- /**
- \def BACKUP_ENABLE_NETWORK
- Enable (1) or disable (0) the backup of positions using the network.
- */
- #define BACKUP_ENABLE_NETWORK 1
-
- #if BACKUP_ENABLE_SDCARD
- #include "BackupSd.h"
- #endif
-
- #if BACKUP_ENABLE_NETWORK
- #include "BackupNetwork.h"
- #endif
|