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

15 行
383 B

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