Non puoi selezionare più di 25 argomenti
Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
|
- #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
|