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.

16 rivejä
474 B

  1. #pragma once
  2. #define POSITIONS_CONFIG_NET_DEFAULT_SAVE_THRESHOLD 30
  3. #define POSITIONS_CONFIG_NET_DEFAULT_APN "Vodafone"
  4. #define POSITIONS_CONFIG_NET_DEFAULT_URL "http://yourserver.com/endpoint"
  5. #define POSITIONS_CONFIG_NET_DEFAULT_EXPECTED_RESPONSE 201
  6. #define POSITIONS_CONFIG_NET_DEFAULT_UNAVAILABLE_NETWORK_POSTPONE_THRESHOLD 5
  7. struct networkConfig_t {
  8. uint8_t saveThreshold;
  9. uint16_t lastSavedEntry;
  10. char apn[20];
  11. char url[50];
  12. };