25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
284 B

  1. #pragma once
  2. #define POSITIONS_CONFIG_DEFAULT_SAVE_THRESHOLD 10
  3. #define POSITIONS_CONFIG_DEFAULT_APN "Vodafone"
  4. #define POSITIONS_CONFIG_DEFAULT_URL "http://default.url"
  5. struct networkConfig_t {
  6. uint8_t saveThreshold;
  7. uint16_t lastSavedEntry;
  8. char apn[20];
  9. char url[50];
  10. };