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.

15 regels
382 B

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