You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 line
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. };