Não pode escolher mais do que 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.

29 linhas
643 B

  1. #pragma once
  2. #include "System.h"
  3. #include "Hardware.h"
  4. #include "Gps.h"
  5. #include "Network.h"
  6. #include "Sleeps.h"
  7. #include "Alerts.h"
  8. /**
  9. \def BACKUP_ENABLE_SDCARD
  10. Enable (1) or disable (0) the backup of positions using an sd card.
  11. Note: This code has never been finished properly because of the lack of space
  12. on the ATMega
  13. */
  14. #define BACKUP_ENABLE_SDCARD 0
  15. /**
  16. \def BACKUP_ENABLE_NETWORK
  17. Enable (1) or disable (0) the backup of positions using the network.
  18. */
  19. #define BACKUP_ENABLE_NETWORK 1
  20. #if BACKUP_ENABLE_SDCARD
  21. #include "BackupSd.h"
  22. #endif
  23. #if BACKUP_ENABLE_NETWORK
  24. #include "BackupNetwork.h"
  25. #endif