Nie możesz wybrać więcej, niż 25 tematów
Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.
|
- #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
|