您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

22 行
291 B

  1. #include "Positions.h"
  2. #include "Gps.h"
  3. #include "Network.h"
  4. #include "Storage.h"
  5. #define LOGGER_NAME "Positions"
  6. namespace positions {
  7. void appendLast() {
  8. //write gps::lastPosition to eeprom and eventually to sd card
  9. }
  10. bool needsToSend() {
  11. return false;
  12. }
  13. void send() {
  14. }
  15. }