CAT CELL "sf_cellular_api.h"

  1. typedef enum e_sf_cellular_at_cmd_index
  2. {
  3. SF_CELLULAR_AT_CMD_INDEX_AT = , ///< Index for Command AT
  4. SF_CELLULAR_AT_CMD_INDEX_ATZ0, ///< Index for Command ATZ0
  5. SF_CELLULAR_AT_CMD_INDEX_AT_CREG_SET_0, ///< Index for Command to set AT+CREG
  6. SF_CELLULAR_AT_CMD_INDEX_AT_CMEE_SET_0, ///< Index for Command to set AT+CMEE
  7. SF_CELLULAR_AT_CMD_INDEX_AT_ECHO, ///< Index for Command ATE
  8. SF_CELLULAR_AT_CMD_INDEX_AT_SAVE, ///< Index for Command AT&W
  9. SF_CELLULAR_AT_CMD_INDEX_AT_CREG, ///< Index for Command AT+CREG
  10. SF_CELLULAR_AT_CMD_INDEX_AT_CPIN_STATUS_GET, ///< Index for Command to get status of SIM lock
  11. SF_CELLULAR_AT_CMD_INDEX_AT_ENTER_CPIN, ///< Index for Command to unlock SIM
  12. SF_CELLULAR_AT_CMD_INDEX_AT_CPIN_SET, ///< Index for Command to set SIM PIN
  13. SF_CELLULAR_AT_CMD_INDEX_AT_CGDCONT_SET, ///< Index for Command to set AT+CGDCOND
  14. SF_CELLULAR_AT_CMD_INDEX_AT_CPOL_SET, ///< Index for Command to set AT+CPOL
  15. SF_CELLULAR_AT_CMD_INDEX_AT_COPS_AUTO_SET, ///< Index for Command to set AUTO AT+COPS
  16. SF_CELLULAR_AT_CMD_INDEX_AT_COPS_MANUAL_SET, ///< Index for Command to set Manual AT+COPS
  17. SF_CELLULAR_AT_CMD_INDEX_AT_AIRPLANE_OFF, ///< Index for Command to set Airplane mode OFF
  18. SF_CELLULAR_AT_CMD_INDEX_AT_AIRPLANE_ON, ///< Index for Command to set Airplane mode ON
  19. SF_CELLULAR_AT_CMD_INDEX_AT_CONTEXT_ACTIVE, ///< Index for Command to activate context
  20. SF_CELLULAR_AT_CMD_INDEX_AT_CONTEXT_DEACTIVE, ///< Index for Command to deactivate context
  21. SF_CELLULAR_AT_CMD_INDEX_AT_CGDATA_ACTIVE, ///< Index for Command to activate Data mode
  22. SF_CELLULAR_AT_CMD_INDEX_AT_CGDATA_DEACTIVE, ///< Index for Command to deactivate Data mode
  23. SF_CELLULAR_AT_CMD_INDEX_AT_CSQ_GET, ///< Index for Command to get signal quality
  24. SF_CELLULAR_AT_CMD_INDEX_AT_VER_GET, ///< Index for Command to get Modem stack Version
  25. SF_CELLULAR_AT_CMD_INDEX_AT_CHIPSET_GET, ///< Index for Command to get chipset details
  26. SF_CELLULAR_AT_CMD_INDEX_AT_IMEI_GET, ///< Index for Command to get IMEI number
  27. SF_CELLULAR_AT_CMD_INDEX_AT_MANF_NAME_GET, ///< Index for Command to get manufacturer name
  28. SF_CELLULAR_AT_CMD_INDEX_AT_SIMID_GET, ///< Index for Command to get SIM Card ID
  29. SF_CELLULAR_AT_CMD_INDEX_AT_NET_TYPE_STATUS_GET, ///< Index for Command to get network type information
  30. SF_CELLULAR_AT_CMD_INDEX_AT_NET_STATUS_GET, ///< Index for Command to get network status information
  31. SF_CELLULAR_AT_CMD_INDEX_AT_LOCK_SIM, ///< Index for Command to lock SIM card
  32. SF_CELLULAR_AT_CMD_INDEX_AT_UNLOCK_SIM, ///< Index for Command to unlock SIM card
  33. SF_CELLULAR_AT_CMD_INDEX_AT_ENTER_DATA_MODE, ///< Index for Command to enter data mode
  34. SF_CELLULAR_AT_CMD_INDEX_AT_EXIT_DATA_MODE, ///< Index for Command to exit data mode
  35. SF_CELLULAR_AT_CMD_INDEX_AT_USERNAME_SET, ///< Index for Command to set username
  36. SF_CELLULAR_AT_CMD_INDEX_AT_PASSWORD_SET, ///< Index for Command to set password
  37. SF_CELLULAR_AT_CMD_INDEX_AT_AUTH_TYPE_SET, ///< Index for Command to set authorisation type
  38. SF_CELLULAR_AT_CMD_INDEX_AT_AUTO_TIME_UPDATE_ENABLE_SET, ///< Index for Command to enable auto time update
  39. SF_CELLULAR_AT_CMD_INDEX_AT_AUTO_TIME_UPDATE_DISABLE_SET, ///< Index for Command to disable auto time update
  40. SF_CELLULAR_AT_CMD_INDEX_AT_EMPTY_APN_SET, ///< Index for Command to set empty APN
  41. SF_CELLULAR_AT_CMD_INDEX_AT_GET_IP_ADDR, ///< Index for Command to get IP address
  42. SF_A9500_AT_CMD_INDEX_AT_AUTO_SEARCH_WEB, ///< Index for command to auto search web >
  43. SF_A9500_AT_CMD_INDEX_AT_LTE_SEARCH_WEB, ///<Index for command to search LTE web >
  44. SF_A9500_AT_CMD_INDEX_AT_CPIN, ///<Index for command to check sim card>
  45. SF_A9500_AT_CMD_INDEX_AT_CGDCONT, ///<Index for command to connect>
  46. SF_A9500_AT_CMD_INDEX_AT_PSRAT, ///<Index for command to connect LTE>
  47. SF_A9500_AT_CMD_INDEX_AT_ATD_DATA_CONNECTION, ///<Index for command to data connection>
  48. } sf_cellular_at_cmd_index_t;

"sf_cellular_cat3.c"

  1. const sf_cellular_at_cmd_set_t g_sf_cellular_cat3_cmd_set[] =
  2. {
  3. /** AT Command: To check module init */
  4. [SF_CELLULAR_AT_CMD_INDEX_AT] =
  5. {
  6. .p_cmd = (uint8_t *) "AT\r\n",
  7. .p_success_resp = (uint8_t *) "OK",
  8. .max_resp_length = SF_CELLULAR_STR_LEN_32,
  9. .retry = SF_CELLULAR_RETRY_VALUE_10,
  10. .retry_delay = SF_CELLULAR_DELAY_500MS
  11. },
  12. /** AT Command to soft reset the module */
  13. [SF_CELLULAR_AT_CMD_INDEX_ATZ0] =
  14. {
  15. .p_cmd = (uint8_t *) "ATZ0\r\n",
  16. .p_success_resp = (uint8_t *) "OK",
  17. .max_resp_length = SF_CELLULAR_STR_LEN_32,
  18. .retry = SF_CELLULAR_RETRY_VALUE_5,
  19. .retry_delay = SF_CELLULAR_DELAY_200MS
  20. },
  21. #if SF_CELLULAR_CAT3_TEUG
  22. /** AT Command set to disable registration notification */
  23. [SF_CELLULAR_AT_CMD_INDEX_AT_CREG_SET_0] =
  24. {
  25. .p_cmd = (uint8_t *) "AT+CREG=0\r\n",
  26. .p_success_resp = (uint8_t *) "OK",
  27. .max_resp_length = SF_CELLULAR_STR_LEN_32,
  28. .retry = SF_CELLULAR_RETRY_VALUE_10,
  29. .retry_delay = SF_CELLULAR_DELAY_500MS
  30. },
  31. #endif
  32. #if SF_CELLULAR_CAT3_TSVG
  33. /** AT Command set to disable registration notification */
  34. [SF_CELLULAR_AT_CMD_INDEX_AT_CREG_SET_0] =
  35. {
  36. .p_cmd = (uint8_t *) "AT+CGREG=0\r\n",
  37. .p_success_resp = (uint8_t *) "OK",
  38. .max_resp_length = SF_CELLULAR_STR_LEN_32,
  39. .retry = SF_CELLULAR_RETRY_VALUE_0,
  40. .retry_delay = SF_CELLULAR_DELAY_0
  41. },
  42. #endif
  43. /** AT Command set to disable the error details */
  44. [SF_CELLULAR_AT_CMD_INDEX_AT_CMEE_SET_0] =
  45. {
  46. .p_cmd = (uint8_t *) "AT+CMEE=0\r\n",
  47. .p_success_resp = (uint8_t *) "OK",
  48. .max_resp_length = SF_CELLULAR_STR_LEN_32,
  49. .retry = SF_CELLULAR_RETRY_VALUE_5,
  50. .retry_delay = SF_CELLULAR_DELAY_100MS
  51. },
  52.  
  53. /** AT Command set to set echo off */
  54. [SF_CELLULAR_AT_CMD_INDEX_AT_ECHO] =
  55. {
  56. .p_cmd = (uint8_t *) "ATE0\r\n",
  57. .p_success_resp = (uint8_t *) "OK",
  58. .max_resp_length = SF_CELLULAR_STR_LEN_32,
  59. .retry = SF_CELLULAR_RETRY_VALUE_5,
  60. .retry_delay = SF_CELLULAR_DELAY_100MS,
  61. },
  62. /** AT Command set to save the current setting */
  63. [SF_CELLULAR_AT_CMD_INDEX_AT_SAVE] =
  64. {
  65. .p_cmd = (uint8_t *) "AT&W\r\n",
  66. .p_success_resp = (uint8_t *) "OK",
  67. .max_resp_length = SF_CELLULAR_STR_LEN_32,
  68. .retry = SF_CELLULAR_RETRY_VALUE_0,
  69. .retry_delay = SF_CELLULAR_DELAY_200MS
  70. },
  71. #if SF_CELLULAR_CAT3_TEUG
  72. /** AT Command set to read registration status */
  73. [SF_CELLULAR_AT_CMD_INDEX_AT_CREG] =
  74. {
  75. .p_cmd = (uint8_t *) "AT+CREG?\r\n",
  76. .p_success_resp = (uint8_t *) "+CREG: 0,1",
  77. .max_resp_length = SF_CELLULAR_STR_LEN_32,
  78. .retry = SF_CELLULAR_RETRY_VALUE_5,
  79. .retry_delay = SF_CELLULAR_DELAY_500MS
  80. },
  81. #endif
  82. #if SF_CELLULAR_CAT3_TSVG
  83. /** AT Command set to read registration status */
  84. [SF_CELLULAR_AT_CMD_INDEX_AT_CREG] =
  85. {
  86. .p_cmd = (uint8_t *) "AT+CGREG?\r\n",
  87. .p_success_resp = (uint8_t *) "+CGREG: 0,1",
  88. .max_resp_length = SF_CELLULAR_STR_LEN_32,
  89. .retry = SF_CELLULAR_RETRY_VALUE_5,
  90. .retry_delay = SF_CELLULAR_DELAY_300MS
  91. },
  92. #endif
  93. /** AT Command set to read SIM PIN status */
  94. [SF_CELLULAR_AT_CMD_INDEX_AT_CPIN_STATUS_GET] =
  95. {
  96. .p_cmd = (uint8_t *) "AT+CPIN?\r\n",
  97. .p_success_resp = (uint8_t *) "+CPIN",
  98. .max_resp_length = SF_CELLULAR_STR_LEN_32,
  99. .retry = SF_CELLULAR_RETRY_VALUE_5,
  100. .retry_delay = SF_CELLULAR_DELAY_100MS
  101. },
  102. /** AT Command set to enter SIM pin to unlock SIM */
  103. [SF_CELLULAR_AT_CMD_INDEX_AT_ENTER_CPIN] =
  104. {
  105. .p_cmd = (uint8_t *) "AT+CPIN=\"",
  106. .p_success_resp = (uint8_t *) "OK",
  107. .max_resp_length = SF_CELLULAR_STR_LEN_32,
  108. .retry = SF_CELLULAR_RETRY_VALUE_5,
  109. .retry_delay = SF_CELLULAR_DELAY_100MS
  110. },
  111. /** AT Command set to change the SIM Pin used for lock/unlock SIM */
  112. [SF_CELLULAR_AT_CMD_INDEX_AT_CPIN_SET] =
  113. {
  114. .p_cmd = (uint8_t *) "AT+CPWD=\"SC\",\"",
  115. .p_success_resp = (uint8_t *) "OK",
  116. .max_resp_length = SF_CELLULAR_STR_LEN_32,
  117. .retry = SF_CELLULAR_RETRY_VALUE_5,
  118. .retry_delay = SF_CELLULAR_DELAY_300MS
  119. },
  120. /** AT Command set define PDP context */
  121. [SF_CELLULAR_AT_CMD_INDEX_AT_CGDCONT_SET] =
  122. {
  123. .p_cmd = (uint8_t *) "AT+CGDCONT=",
  124. .p_success_resp = (uint8_t *) "OK",
  125. .max_resp_length = SF_CELLULAR_STR_LEN_32,
  126. .retry = SF_CELLULAR_RETRY_VALUE_10,
  127. .retry_delay = SF_CELLULAR_DELAY_500MS
  128. },
  129. /** AT Command set to set preferred operator list */
  130. [SF_CELLULAR_AT_CMD_INDEX_AT_CPOL_SET] =
  131. {
  132. .p_cmd = (uint8_t *) "AT+CPOL=",
  133. .p_success_resp = (uint8_t *) "OK",
  134. .max_resp_length = SF_CELLULAR_STR_LEN_32,
  135. .retry = SF_CELLULAR_RETRY_VALUE_5,
  136. .retry_delay = SF_CELLULAR_DELAY_100MS
  137. },
  138. /** AT Command set to operator selection mode to auto */
  139. [SF_CELLULAR_AT_CMD_INDEX_AT_COPS_AUTO_SET] =
  140. {
  141. .p_cmd = (uint8_t *) "AT+COPS=0\r\n",
  142. .p_success_resp = (uint8_t *) "OK",
  143. .max_resp_length = SF_CELLULAR_STR_LEN_32,
  144. .retry = SF_CELLULAR_RETRY_VALUE_5,
  145. .retry_delay = SF_CELLULAR_DELAY_100MS
  146. },
  147. /** AT Command set to set operator selection mode to manual */
  148. [SF_CELLULAR_AT_CMD_INDEX_AT_COPS_MANUAL_SET] =
  149. {
  150. .p_cmd = (uint8_t *) "AT+COPS=1",
  151. .p_success_resp = (uint8_t *) "OK",
  152. .max_resp_length = SF_CELLULAR_STR_LEN_32,
  153. .retry = SF_CELLULAR_RETRY_VALUE_5,
  154. .retry_delay = SF_CELLULAR_DELAY_100MS
  155. },
  156. #if SF_CELLULAR_CAT3_TEUG
  157. /** AT Command set to set full function mode */
  158. [SF_CELLULAR_AT_CMD_INDEX_AT_AIRPLANE_OFF] =
  159. {
  160. .p_cmd = (uint8_t *) "AT+CFUN=1,1\r\n",
  161. .p_success_resp = (uint8_t *) "OK",
  162. .max_resp_length = SF_CELLULAR_STR_LEN_32,
  163. .retry = SF_CELLULAR_RETRY_VALUE_5,
  164. .retry_delay = SF_CELLULAR_DELAY_100MS
  165. },
  166. #endif
  167. #if SF_CELLULAR_CAT3_TSVG
  168. /** AT Command set to set full function mode */
  169. [SF_CELLULAR_AT_CMD_INDEX_AT_AIRPLANE_OFF] =
  170. {
  171. .p_cmd = (uint8_t *) "AT+CFUN=1,0\r\n",
  172. .p_success_resp = (uint8_t *) "OK",
  173. .max_resp_length = SF_CELLULAR_STR_LEN_32,
  174. .retry = SF_CELLULAR_RETRY_VALUE_1,
  175. .retry_delay = SF_CELLULAR_DELAY_100MS
  176. },
  177. #endif
  178. /** AT Command set to set airplane mode on */
  179. [SF_CELLULAR_AT_CMD_INDEX_AT_AIRPLANE_ON] =
  180. {
  181. .p_cmd = (uint8_t *) "AT+CFUN=4,0\r\n",
  182. .p_success_resp = (uint8_t *) "OK",
  183. .max_resp_length = SF_CELLULAR_STR_LEN_32,
  184. .retry = SF_CELLULAR_RETRY_VALUE_5,
  185. .retry_delay = SF_CELLULAR_DELAY_2000MS,
  186. },
  187. /** AT Command set to activate the PDP context */
  188. [SF_CELLULAR_AT_CMD_INDEX_AT_CONTEXT_ACTIVE] =
  189. {
  190. .p_cmd = (uint8_t *) "AT+CGACT=1,",
  191. .p_success_resp = (uint8_t *) "OK",
  192. .max_resp_length = SF_CELLULAR_STR_LEN_32,
  193. .retry = SF_CELLULAR_RETRY_VALUE_10,
  194. .retry_delay = SF_CELLULAR_DELAY_500MS
  195. },
  196. /** AT Command set to disable the PDP context */
  197. [SF_CELLULAR_AT_CMD_INDEX_AT_CONTEXT_DEACTIVE] =
  198. {
  199. .p_cmd = (uint8_t *) "AT+CGACT=0,",
  200. .p_success_resp = (uint8_t *) "OK",
  201. .max_resp_length = SF_CELLULAR_STR_LEN_32,
  202. .retry = SF_CELLULAR_RETRY_VALUE_5,
  203. .retry_delay = SF_CELLULAR_DELAY_300MS
  204. },
  205. /** AT Command set to start Data mode */
  206. [SF_CELLULAR_AT_CMD_INDEX_AT_CGDATA_ACTIVE] =
  207. {
  208. .p_cmd = (uint8_t *) "AT+CGDATA=",
  209. .p_success_resp = (uint8_t *) "CONNECT",
  210. .max_resp_length = (uint16_t) sizeof("CONNECT XXXXXXXXXX\r\nOK\r\n"),
  211. .retry = SF_CELLULAR_RETRY_VALUE_5,
  212. .retry_delay = SF_CELLULAR_DELAY_500MS
  213. },
  214. /** AT Command set to close Data mode */
  215. [SF_CELLULAR_AT_CMD_INDEX_AT_CGDATA_DEACTIVE] =
  216. {
  217. .p_cmd = (uint8_t *) "+++",
  218. .p_success_resp = (uint8_t *) "OK",
  219. .max_resp_length = SF_CELLULAR_STR_LEN_32,
  220. .retry = SF_CELLULAR_RETRY_VALUE_5,
  221. .retry_delay = SF_CELLULAR_DELAY_500MS
  222. },
  223. /** AT Command set to get the Cellular information */
  224. [SF_CELLULAR_AT_CMD_INDEX_AT_CSQ_GET] =
  225. {
  226. .p_cmd = (uint8_t *) "AT+CSQ\r\n",
  227. .p_success_resp = (uint8_t *) "OK",
  228. .max_resp_length = SF_CELLULAR_STR_LEN_32,
  229. .retry = SF_CELLULAR_RETRY_VALUE_5,
  230. .retry_delay = SF_CELLULAR_DELAY_200MS
  231. },
  232. /** AT Command set to get the Cellular version */
  233. [SF_CELLULAR_AT_CMD_INDEX_AT_VER_GET] =
  234. {
  235. .p_cmd = (uint8_t *) "AT+CGMR\r\n",
  236. .p_success_resp = (uint8_t *) "OK",
  237. .max_resp_length = SF_CELLULAR_STR_LEN_32,
  238. .retry = SF_CELLULAR_RETRY_VALUE_5,
  239. .retry_delay = SF_CELLULAR_DELAY_200MS
  240. },
  241. /** AT Command set to get the Cellular chipset number */
  242. [SF_CELLULAR_AT_CMD_INDEX_AT_CHIPSET_GET] =
  243. {
  244. .p_cmd = (uint8_t *) "AT+CGMM\r\n",
  245. .p_success_resp = (uint8_t *) "OK",
  246. .max_resp_length = SF_CELLULAR_STR_LEN_32,
  247. .retry = SF_CELLULAR_RETRY_VALUE_5,
  248. .retry_delay = SF_CELLULAR_DELAY_200MS
  249. },
  250.  
  251. /** AT Command set to get the Cellular IMEI number */
  252. [SF_CELLULAR_AT_CMD_INDEX_AT_IMEI_GET] =
  253. {
  254. .p_cmd = (uint8_t *) "AT+CGSN\r\n",
  255. .p_success_resp = (uint8_t *) "OK",
  256. .max_resp_length = SF_CELLULAR_STR_LEN_32,
  257. .retry = SF_CELLULAR_RETRY_VALUE_5,
  258. .retry_delay = SF_CELLULAR_DELAY_200MS
  259. },
  260. /** AT Command set to get the Cellular manufacture name */
  261. [SF_CELLULAR_AT_CMD_INDEX_AT_MANF_NAME_GET] =
  262. {
  263. .p_cmd = (uint8_t *) "AT+CGMI\r\n",
  264. .p_success_resp = (uint8_t *) "OK",
  265. .max_resp_length = SF_CELLULAR_STR_LEN_32,
  266. .retry = SF_CELLULAR_RETRY_VALUE_5,
  267. .retry_delay = SF_CELLULAR_DELAY_200MS
  268. },
  269. /** AT Command set to get the Cellular SIM ID */
  270. [SF_CELLULAR_AT_CMD_INDEX_AT_SIMID_GET] =
  271. {
  272. .p_cmd = (uint8_t *) "AT+ICCID\r\n",
  273. .p_success_resp = (uint8_t *) "\r\n+CCID: ",
  274. .max_resp_length = SF_CELLULAR_STR_LEN_64,
  275. .retry = SF_CELLULAR_RETRY_VALUE_5,
  276. .retry_delay = SF_CELLULAR_DELAY_200MS
  277. },
  278. /** AT Command set to get the Cellular network type */
  279. [SF_CELLULAR_AT_CMD_INDEX_AT_NET_TYPE_STATUS_GET] =
  280. {
  281. .p_cmd = (uint8_t *) "AT#PSNT?\r\n",
  282. .p_success_resp = (uint8_t *) "#PSNT: ",
  283. .max_resp_length = SF_CELLULAR_STR_LEN_32,
  284. .retry = SF_CELLULAR_RETRY_VALUE_5,
  285. .retry_delay = SF_CELLULAR_DELAY_200MS
  286. },
  287.  
  288. /** AT Command set to get the Cellular network status info */
  289. [SF_CELLULAR_AT_CMD_INDEX_AT_NET_STATUS_GET] =
  290. {
  291. .p_cmd = (uint8_t *) "AT#RFSTS\r\n",
  292. .p_success_resp = (uint8_t *) "#RFSTS",
  293. .max_resp_length = SF_CELLULAR_RFSTS_RSP_LEN,
  294. .retry = SF_CELLULAR_RETRY_VALUE_5,
  295. .retry_delay = SF_CELLULAR_DELAY_200MS
  296. },
  297. /** AT Command set to Lock the SIM */
  298. [SF_CELLULAR_AT_CMD_INDEX_AT_LOCK_SIM] =
  299. {
  300. .p_cmd = (uint8_t *) "AT+CLCK=\"SC\",1,\"",
  301. .p_success_resp = (uint8_t *) "OK",
  302. .max_resp_length = SF_CELLULAR_STR_LEN_32,
  303. .retry = SF_CELLULAR_RETRY_VALUE_5,
  304. .retry_delay = SF_CELLULAR_DELAY_200MS
  305. },
  306. /** AT Command set to Unlock the SIM */
  307. [SF_CELLULAR_AT_CMD_INDEX_AT_UNLOCK_SIM] =
  308. {
  309. .p_cmd = (uint8_t *) "AT+CLCK=\"SC\",0,\"",
  310. .p_success_resp = (uint8_t *) "OK",
  311. .max_resp_length = SF_CELLULAR_STR_LEN_32,
  312. .retry = SF_CELLULAR_RETRY_VALUE_5,
  313. .retry_delay = SF_CELLULAR_DELAY_200MS
  314. },
  315.  
  316. /** AT Command set to Cellular into Data Mode */
  317. [SF_CELLULAR_AT_CMD_INDEX_AT_ENTER_DATA_MODE] =
  318. {
  319. .p_cmd = (uint8_t *) "ATD*99***",
  320. .p_success_resp = (uint8_t *) "CONNECT ",
  321. .max_resp_length = (uint16_t) sizeof("\r\nCONNECT xxxxxxxxx\r\n"),
  322. .retry = SF_CELLULAR_RETRY_VALUE_5,
  323. .retry_delay = SF_CELLULAR_DELAY_200MS
  324. },
  325. /** AT Command set to exit Data Mode */
  326. [SF_CELLULAR_AT_CMD_INDEX_AT_EXIT_DATA_MODE] =
  327. {
  328. .p_cmd = (uint8_t *) "+++",
  329. .p_success_resp = (uint8_t *) "OK",
  330. .max_resp_length = SF_CELLULAR_STR_LEN_32,
  331. .retry = SF_CELLULAR_RETRY_VALUE_5,
  332. .retry_delay = SF_CELLULAR_DELAY_200MS
  333. },
  334. /** AT Command set to set user name */
  335. [SF_CELLULAR_AT_CMD_INDEX_AT_USERNAME_SET] =
  336. {
  337. .p_cmd = (uint8_t *) "AT#USERID=\"",
  338. .p_success_resp = (uint8_t *) "OK",
  339. .max_resp_length = SF_CELLULAR_STR_LEN_32,
  340. .retry = SF_CELLULAR_RETRY_VALUE_5,
  341. .retry_delay = SF_CELLULAR_DELAY_200MS
  342. },
  343. /** AT Command set to set user password */
  344. [SF_CELLULAR_AT_CMD_INDEX_AT_PASSWORD_SET] =
  345. {
  346. .p_cmd = (uint8_t *) "AT#PASSW=\"",
  347. .p_success_resp = (uint8_t *) "OK",
  348. .max_resp_length = SF_CELLULAR_STR_LEN_32,
  349. .retry = SF_CELLULAR_RETRY_VALUE_5,
  350. .retry_delay = SF_CELLULAR_DELAY_200MS
  351. },
  352. /** AT Command set to set Authentication Type */
  353. [SF_CELLULAR_AT_CMD_INDEX_AT_AUTH_TYPE_SET] =
  354. {
  355. .p_cmd = (uint8_t *) "AT#GAUTH=",
  356. .p_success_resp = (uint8_t *) "OK",
  357. .max_resp_length = SF_CELLULAR_STR_LEN_32,
  358. .retry = SF_CELLULAR_RETRY_VALUE_5,
  359. .retry_delay = SF_CELLULAR_DELAY_200MS
  360. },
  361. /** AT Command set to enable auto time zone update */
  362. [SF_CELLULAR_AT_CMD_INDEX_AT_AUTO_TIME_UPDATE_ENABLE_SET] =
  363. {
  364. .p_cmd = (uint8_t *) "AT+CTZU=1\r\n",
  365. .p_success_resp = (uint8_t *) "OK",
  366. .max_resp_length = SF_CELLULAR_STR_LEN_32,
  367. .retry = SF_CELLULAR_RETRY_VALUE_5,
  368. .retry_delay = SF_CELLULAR_DELAY_200MS
  369. },
  370. /** AT Command set to disable auto time zone update */
  371. [SF_CELLULAR_AT_CMD_INDEX_AT_AUTO_TIME_UPDATE_DISABLE_SET] =
  372. {
  373. .p_cmd = (uint8_t *) "AT+CTZU=0\r\n",
  374. .p_success_resp = (uint8_t *) "OK",
  375. .max_resp_length = SF_CELLULAR_STR_LEN_32,
  376. .retry = SF_CELLULAR_RETRY_VALUE_5,
  377. .retry_delay = SF_CELLULAR_DELAY_200MS
  378. },
  379. /** AT Command set to set default pdp context configuration */
  380. [SF_CELLULAR_AT_CMD_INDEX_AT_EMPTY_APN_SET] =
  381. {
  382. .p_cmd = (uint8_t *) "AT+CGDCONT=1,\"IPV4V6\",\"\",\"0.0.0.0\",0,0\r\n",
  383. .p_success_resp = (uint8_t *) "OK",
  384. .max_resp_length = SF_CELLULAR_STR_LEN_32,
  385. .retry = SF_CELLULAR_RETRY_VALUE_5,
  386. .retry_delay = SF_CELLULAR_DELAY_200MS
  387. },
  388. /** AT Command set to get the IP address */
  389. [SF_CELLULAR_AT_CMD_INDEX_AT_GET_IP_ADDR] =
  390. {
  391. .p_cmd = (uint8_t *) "AT+CGPADDR=",
  392. .p_success_resp = (uint8_t *) "OK",
  393. .max_resp_length = SF_CELLULAR_STR_LEN_128,
  394. .retry = SF_CELLULAR_RETRY_VALUE_5,
  395. .retry_delay = SF_CELLULAR_DELAY_200MS
  396. },
  397. /** AT Command to set auto search web mode **/
  398. [SF_A9500_AT_CMD_INDEX_AT_AUTO_SEARCH_WEB] =
  399. {
  400. .p_cmd = (uint8_t *) "AT+MODODR=5\r\n",
  401. .p_success_resp = (uint8_t *) "OK",
  402. .max_resp_length = SF_CELLULAR_STR_LEN_32,
  403. .retry = SF_CELLULAR_RETRY_VALUE_5,
  404. .retry_delay = SF_CELLULAR_DELAY_200MS
  405. },
  406.  
  407. /** AT Command to set search web mode **/
  408. [SF_A9500_AT_CMD_INDEX_AT_LTE_SEARCH_WEB] =
  409. {
  410. .p_cmd = (uint8_t *) "AT+LTEOPMOD=2\r\n",
  411. .p_success_resp = (uint8_t *) "OK",
  412. .max_resp_length = SF_CELLULAR_STR_LEN_32,
  413. .retry = SF_CELLULAR_RETRY_VALUE_5,
  414. .retry_delay = SF_CELLULAR_DELAY_200MS
  415.  
  416. },
  417.  
  418. /** AT command to check sim card **/
  419. [SF_A9500_AT_CMD_INDEX_AT_CPIN] =
  420. {
  421. .p_cmd = (uint8_t *) "AT+CPIN?\r\n",
  422. .p_success_resp = (uint8_t *) "READY",
  423. .max_resp_length = SF_CELLULAR_STR_LEN_32,
  424. .retry = SF_CELLULAR_RETRY_VALUE_5,
  425. .retry_delay = SF_CELLULAR_DELAY_100MS
  426. },
  427.  
  428. /** AT command set to connect **/
  429. [SF_A9500_AT_CMD_INDEX_AT_CGDCONT] =
  430. {
  431. .p_cmd = (uint8_t *) "AT+CGDCONT=",
  432. .p_success_resp = (uint8_t *) "OK",
  433. .max_resp_length = SF_CELLULAR_STR_LEN_32,
  434. .retry = SF_CELLULAR_RETRY_VALUE_5,
  435. .retry_delay = SF_CELLULAR_DELAY_500MS
  436. },
  437.  
  438. /** AT command connect to LTE web **/
  439. [SF_A9500_AT_CMD_INDEX_AT_PSRAT] =
  440. {
  441. .p_cmd = (uint8_t *) "AT+PSRAT\r\n",
  442. .p_success_resp = (uint8_t *) "LTE",
  443. .max_resp_length = SF_CELLULAR_STR_LEN_128,
  444. .retry = SF_CELLULAR_RETRY_VALUE_10,
  445. .retry_delay = SF_CELLULAR_DELAY_500MS
  446. },
  447.  
  448. /** AT command for data connection **/
  449. [SF_A9500_AT_CMD_INDEX_AT_ATD_DATA_CONNECTION]
  450. {
  451.  
  452. .p_cmd = (uint8_t *) "ATD*99***",
  453. .p_success_resp = (uint8_t *) "CONNECT ",
  454. .max_resp_length = SF_CELLULAR_STR_LEN_128,
  455. .retry = SF_CELLULAR_RETRY_VALUE_5,
  456. .retry_delay = SF_CELLULAR_DELAY_200MS
  457. },
  458. };

Renesas CAT CONFIG的更多相关文章

  1. 深入详解美团点评CAT跨语言服务监控(七)消息分析器与报表(二)

    CrossAnalyzer-调用链分析 在分布式环境中,应用是运行在独立的进程中的,有可能是不同的机器,或者不同的服务器进程.那么他们如果想要彼此联系在一起,形成一个调用链,在Cat中,CrossAn ...

  2. u-boot 2016.05 添加自己的board 以及config.h

    拿到一个uboot 后,我都想添加一个属于自己的board文件以及include/configs/*.h 文件. 如何添加这个些文件,今天来记录一下. 复制一份你所参考的板级文件,比如说board/v ...

  3. 大众点评CAT开源监控系统剖析

    参考文档: 大众点评的实时监控系统分析(一) CAT_source_analyze 透过CAT,来看分布式实时监控系统的设计与实现 深度剖析开源分布式监控CAT [分布式监控CAT] Client端源 ...

  4. CAT 监控搭建

    简介 CAT 是基于 Java 开发的实时应用监控平台,为美团点评提供了全面的实时监控告警服务. 已经在美团点评的基础架构中间件框架(MVC框架,RPC框架,数据库框架,缓存框架等,消息队列,配置系统 ...

  5. 【转】大众点评CAT开源监控系统剖析

    https://www.cnblogs.com/yeahwell/p/cat.html 参考文档: 大众点评的实时监控系统分析(一) CAT_source_analyze 透过CAT,来看分布式实时监 ...

  6. docker 安装cat

    1.下载cat cat 地址:https://github.com/dianping/cat 进入opt 创建cat文件夹 cd /opt/ mkdir cat cd cat 下载cat git cl ...

  7. elastic search使用总结

    1. elasticsearch安装 官方下载地址:https://www.elastic.co/downloads/elasticsearch 解压文件 elasticsearch-2.4.0.zi ...

  8. ARM学习 之 如何在向内核写入系统调用

    本文主要介绍两个例子:1-系统调用打印“hello kernel”  2-驱动开发板的蜂鸣器 使用的是友善之臂(Friendly ARM)的开发板,三星2440 =================== ...

  9. KVM 介绍(8):使用 libvirt 迁移 QEMU/KVM 虚机和 Nova 虚机 [Nova Libvirt QEMU/KVM Live Migration]

    学习 KVM 的系列文章: (1)介绍和安装 (2)CPU 和 内存虚拟化 (3)I/O QEMU 全虚拟化和准虚拟化(Para-virtulizaiton) (4)I/O PCI/PCIe设备直接分 ...

随机推荐

  1. Ubuntu 13.10 如何修改背景色--豆沙绿

    如何修改Ubunut 13.10的窗口背景色,在网上找到了多资料,安装了dconf,Unity Tweak Tool,GNOME Color Chooser都无法修改背景色. 最后,还是直接去修改主题 ...

  2. Flask数据库常见关系模板代码

    常见关系模板代码 以下罗列了使用关系型数据库中常见关系定义模板代码 一对多 示例场景: 用户与其发布的帖子(用户表与帖子表) 角色与所属于该角色的用户(角色表与多用户表) 示例代码 class Rol ...

  3. L158

    It started out modestly enough: David Hertz, having learned that under the right conditions you real ...

  4. ETL学习整理 PostgreSQL

    ETL分别是“Extract”.“ Transform” .“Load”三个单词的首字母缩写也就是“抽取”.“转换”.“装载”,但我们日常往往简称其为数据抽取. ETL是BI/DW(商务智能/数据仓库 ...

  5. (转)使用Hive UDF和GeoIP库为Hive加入IP识别功能

    Hive是基于Hadoop的数据管理系统,作为分析人员的即时分析工具和ETL等工作的执行引擎,对于如今的大数据管理与分析.处理有着非常大的 意义.GeoIP是一套IP映射数据库,它定时更新,并且提供了 ...

  6. TypeError: pivot_table() got an unexpected keyword argument 'rows'

    利用Python进行数据分析>第二章,处理MovieLens 1M数据集,有句代码总是报错: mean_rating = data.pivot_table('rating', rows='tit ...

  7. 【剑指offer】输入一颗二叉树的根节点,判断是不是平衡二叉树,C++实现

    原创博文,转载请注明出处! # 题目 # 举例 # 思路 由平衡二叉树的定义可知,判断二叉树是否是平衡二叉树的关键在于判断任意结点是否是平衡结点.后序遍历二叉树,判断节点的子树是否平衡并计算节点的子树 ...

  8. linux中的网络基础

    ifconfig -a 查看所有网口ifconfig eth 查看具体网口 ifup ethoifdown etho 网卡配置文件/etc/sysconfig/networkk-scripts/ifc ...

  9. cms与blog汇总

    CMS ecms phpcms dedecms dilicms(CI框架) finecms Joomla dayucms DZ PHPwind Data地方门户网站 Blog wordpress ty ...

  10. WIN7下配置和使用解压缩版MYSQL

    最近mysql出了新的GA版本——mysql5.6.11,此版本windows64位下只有解压缩版,于是在win7上进行了配置.期间碰到了一些问题,在此记录一下. 一.环境 操作系统:WIN764位 ...