Você não pode selecionar mais de 25 tópicos
Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.
|
- #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
|