Vous ne pouvez pas sélectionner plus de 25 sujets
Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
|
- #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
|