EC800(2091).c 30 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291
  1. //----------------------------说明
  2. // 程序使用hal库,数据传输使用的串口,串口设置为发送+dma,接收+dma+空闲中断的模式
  3. #include "EC800.h"
  4. //-----------------------------变量定义
  5. //---------
  6. ec800Date s_ec800Date = {
  7. .ip = "39.98.37.180",
  8. .port = 32449,
  9. .clientid = "NULL",
  10. .username = "hechun",
  11. .password = "admin123",
  12. // .username = "SZC30010-AE01",
  13. // .password = "qazSZC30010-AE01",
  14. };
  15. messageDate s_messageDate = {0};
  16. typedef struct{
  17. uint8_t maxSpeed; // 服务器下发的允许最大车速
  18. uint16_t year; // 上传时间 年
  19. uint8_t month; // 上传时间 月
  20. uint8_t day; // 上传时间 日
  21. uint8_t hour; // 上传时间 时
  22. uint8_t minute; // 上传时间 分
  23. uint8_t sec; // 上传时间 秒
  24. }recDate;
  25. recDate s_recDate = {0};
  26. nmea_msg s_nmea_msg = {0};
  27. nmea_utc_time s_nmea_utc_time = {0};
  28. // AT指令响应超时时间定义
  29. #define REC_TIMEOUT (10000) // 1ms
  30. /**
  31. * @brief 计算字符串的长度
  32. * @param str: 所需计算字符串的指针
  33. * @note
  34. * @retval 无
  35. */
  36. int EC800_calculateStringLength(const char* str) {
  37. int length = 0;
  38. while (str[length] != '\0') {
  39. length++;
  40. }
  41. return length;
  42. }
  43. /**
  44. * @brief 发送指令函数
  45. * @param command: 指令
  46. * @param enterNum: 进入函数次数,只有第一次的时候清除buff
  47. * @note
  48. * @retval 无
  49. */
  50. void EC800M_SendCommand(const char* command)
  51. {
  52. uint32_t stringLen = 0;
  53. stringLen = EC800_calculateStringLength(command);
  54. //等待发送状态OK
  55. while(HAL_DMA_GetState(&hdma_usart3_tx) == HAL_DMA_STATE_BUSY) osDelay(1);
  56. //发送数据
  57. HAL_UART_Transmit_DMA(&huart3, (uint8_t*)command, stringLen);
  58. }
  59. /**
  60. * @brief 接收指令回复函数
  61. * @param haystack: 接收的字符串数据
  62. * @param needle: 正确回复的数据
  63. * @note
  64. * @retval 无
  65. */
  66. char* EC800M_RecRespond(char *haystack, const char *needle ){
  67. char* p = NULL;
  68. HAL_UART_Receive_DMA(&huart3, (uint8_t*)g_usart3_rx_buf, USART3_REC_LEN); //设置接收缓冲区
  69. __HAL_UART_ENABLE_IT(&huart3, UART_IT_IDLE);
  70. while(g_usart3_rx_sta == 0) osDelay(1);
  71. __HAL_UART_DISABLE_IT(&huart3, UART_IT_IDLE); // 关闭空闲中断
  72. g_usart3_rx_sta= 0;
  73. p = strstr(haystack, needle);
  74. memset(haystack, 0, USART3_REC_LEN); // 清除数据buff
  75. return p;
  76. }
  77. // 自定义的搜索函数
  78. void* search_sequence(const void* haystack, size_t haystack_len, const void* needle, size_t needle_len) {
  79. const unsigned char* h = (const unsigned char*)haystack;
  80. const unsigned char* n = (const unsigned char*)needle;
  81. // 如果needle为空或haystack长度小于needle长度,则直接返回NULL
  82. if (needle_len == 0 || haystack_len < needle_len) {
  83. return NULL;
  84. }
  85. for (size_t i = 0; i <= haystack_len - needle_len; ++i) {
  86. size_t j;
  87. for (j = 0; j < needle_len; ++j) {
  88. if (h[i + j] != n[j]) {
  89. break; // 如果当前字符不匹配,则跳出内层循环
  90. }
  91. }
  92. if (j == needle_len) {
  93. return (void*)(h + i); // 找到匹配的序列,返回其在haystack中的位置
  94. }
  95. }
  96. // 如果遍历了整个haystack都没有找到匹配的序列,则返回NULL
  97. return NULL;
  98. }
  99. // 接收并比较响应字符串
  100. uint8_t Accept_and_Compare_Str(const char* needle){
  101. uint8_t temp = 0;
  102. static uint16_t timeOutCnt = 0; // 超时计数
  103. HAL_UART_Receive_DMA(&huart3, (uint8_t*)g_usart3_rx_buf, USART3_REC_LEN); //设置接收缓冲区
  104. __HAL_UART_ENABLE_IT(&huart3, UART_IT_IDLE);
  105. while(!temp) {
  106. osDelay(1);
  107. if(search_sequence(g_usart3_rx_buf, USART3_REC_LEN, needle, strlen(needle))){
  108. temp = 1;
  109. }
  110. if(search_sequence(g_usart3_rx_buf, USART3_REC_LEN, "ERROR", strlen("ERROR"))){
  111. temp = 2;
  112. }
  113. if(timeOutCnt < REC_TIMEOUT){
  114. timeOutCnt++;
  115. }else{
  116. timeOutCnt = 0;
  117. temp = 3;
  118. }
  119. }
  120. g_usart3_rx_sta = 0;
  121. __HAL_UART_DISABLE_IT(&huart3, UART_IT_IDLE); // 关闭空闲中断
  122. return temp;
  123. }
  124. /**
  125. * @brief 接收使能函数
  126. * @note
  127. * @retval 无
  128. */
  129. void EC800_recEnable(void){
  130. HAL_UART_Receive_DMA(&huart3, (uint8_t*)g_usart3_rx_buf, USART3_REC_LEN); //设置接收缓冲区
  131. __HAL_UART_ENABLE_IT(&huart3, UART_IT_IDLE);
  132. while(g_usart3_rx_sta == 0) osDelay(1);
  133. }
  134. /**
  135. * @brief 提取检查信号响应字符串字段中的信号量并进行信号判断
  136. * @param data: 响应的信号量指针
  137. * @note
  138. * @retval 无
  139. */
  140. static uint8_t EC800_extractSignal(char *data){
  141. char *token;
  142. int field_1;
  143. // 使用strtok函数提取字段
  144. token = strtok(data, ":,");
  145. while (token != NULL) {
  146. field_1 = atoi(token); // 转换为整数类型
  147. token = strtok(NULL, ":,");
  148. memset(data, 0, USART3_REC_LEN); // 清除数据buff
  149. g_usart3_rx_sta = 0; // 清除接收状态
  150. if (field_1 < 31) {
  151. return 1;
  152. } else {
  153. return 0;
  154. }
  155. }
  156. return 0;
  157. }
  158. /**
  159. * @brief 获取IMSI号
  160. * @param 无
  161. * @note
  162. * @retval 1: imsi没有获取到 0;imsi获取到
  163. */
  164. uint8_t EC800_getIMSI(void){
  165. char* found = NULL;
  166. char number[16]; // 15 digits + 1 for null terminator
  167. int numberIndex = 0;
  168. int numberFound = 0;
  169. EC800M_SendCommand(AT_CIMI);
  170. EC800_recEnable();
  171. found = strstr(g_usart3_rx_buf, AT_RESP_OK);
  172. if (found != NULL) {
  173. printf("IMSI is get\r\n");
  174. }else{
  175. printf("IMSI is not get\r\n");
  176. return 1;
  177. }
  178. for (int i = 0; i < strlen(g_usart3_rx_buf); i++) {
  179. if (isdigit(g_usart3_rx_buf[i])) {
  180. number[numberIndex] = g_usart3_rx_buf[i];
  181. numberIndex++;
  182. if (numberIndex >= 15) {
  183. numberFound = 1;
  184. break;
  185. }
  186. }
  187. }
  188. number[numberIndex] = '\0';
  189. if (numberFound) {
  190. memcpy(s_messageDate.imsi, number, strlen(number));
  191. printf("IMSI is: %s\n", number);
  192. } else {
  193. printf("Error: Unable to extract the number\n");
  194. }
  195. return 0;
  196. }
  197. /**
  198. * @brief EC800M确认网络并链接MQTT服务器
  199. * @param NONE
  200. * @note
  201. * @retval 无
  202. */
  203. uint8_t linkStep = 0;
  204. void EC800M_link(void){
  205. uint8_t temp = 0;
  206. char command[100] = {0};
  207. char errrCnt = 0; // 错误计数
  208. char* found = NULL;
  209. switch(linkStep){
  210. case 0: // 基础配置
  211. EC800M_SendCommand(AT_CMD_TEST);
  212. found = EC800M_RecRespond(g_usart3_rx_buf, AT_RESP_OK);
  213. if (found != NULL) {
  214. printf("Module status normal\r\n");
  215. }else{
  216. errrCnt++;
  217. printf("Module status abnormal\r\n");
  218. }
  219. if(errrCnt == 0){
  220. linkStep = 1;
  221. }else{
  222. errrCnt = 0;
  223. }
  224. break;
  225. case 1: // 获取ISMI号
  226. errrCnt = EC800_getIMSI();
  227. if(errrCnt == 0){
  228. linkStep = 2;
  229. }else{
  230. errrCnt = 0;
  231. }
  232. break;
  233. case 2:
  234. EC800M_SendCommand(AT_CMD_ATE0);
  235. found = EC800M_RecRespond(g_usart3_rx_buf, AT_RESP_OK);
  236. if (found != NULL) {
  237. printf("Cancel module echo\r\n");
  238. }else{
  239. errrCnt++;
  240. printf("Failed to cancel module echo\r\n");
  241. }
  242. if(errrCnt == 0){
  243. linkStep = 3;
  244. }else{
  245. errrCnt = 0;
  246. }
  247. break;
  248. case 3:
  249. EC800M_SendCommand(AT_CMD_CPIN);
  250. found = EC800M_RecRespond(g_usart3_rx_buf, AT_RESP_CPIN_READY);
  251. if (found != NULL) {
  252. printf("SIM card normal\r\n");
  253. }else{
  254. errrCnt++;
  255. printf("SIM card abnormal\r\n");
  256. }
  257. if(errrCnt == 0){
  258. linkStep = 4;
  259. }else{
  260. errrCnt = 0;
  261. }
  262. break;
  263. case 4:
  264. EC800M_SendCommand(AT_CMD_CSQ);
  265. EC800_recEnable();
  266. temp = EC800_extractSignal(g_usart3_rx_buf);
  267. if (temp) {
  268. printf("signal normal\r\n");
  269. }else{
  270. errrCnt++;
  271. printf("signal abnormal\r\n");
  272. }
  273. if(errrCnt == 0){
  274. linkStep = 5;
  275. }else{
  276. errrCnt = 0;
  277. }
  278. break;
  279. case 5:
  280. EC800M_SendCommand(AT_CMD_CREG);
  281. EC800_recEnable();
  282. // 使用字符串处理函数判断是否为正常状态
  283. if (strstr(g_usart3_rx_buf, "1") != NULL || strstr(g_usart3_rx_buf, "5") != NULL) {
  284. printf("The module successfully registered on the GSM network\r\n");
  285. } else {
  286. errrCnt++;
  287. printf("The module failed to register on the GSM network\r\n");
  288. }
  289. memset(g_usart3_rx_buf, 0, USART3_REC_LEN); // 清除数据buff
  290. g_usart3_rx_sta = 0; // 清除接收状态
  291. if(errrCnt == 0){
  292. linkStep = 6;
  293. }else{
  294. errrCnt = 0;
  295. }
  296. break;
  297. case 6:
  298. EC800M_SendCommand(AT_CMD_QIDEACT);
  299. found = EC800M_RecRespond(g_usart3_rx_buf, AT_RESP_OK);
  300. if (found != NULL) {
  301. printf("Successfully disabled mobile scene\r\n");
  302. }else{
  303. errrCnt++;
  304. printf("Failed to disable mobile scene\r\n");
  305. }
  306. if(errrCnt == 0){
  307. linkStep = 7;
  308. }else{
  309. errrCnt = 0;
  310. }
  311. break;
  312. case 7:
  313. EC800M_SendCommand(AT_CMD_QIACT);
  314. found = EC800M_RecRespond(g_usart3_rx_buf, AT_RESP_OK);
  315. if (found != NULL) {
  316. printf("Successfully enabled mobile scene\r\n");
  317. }else{
  318. errrCnt++;
  319. printf("Failed to enable mobile scene\r\n");
  320. }
  321. if(errrCnt == 0){
  322. linkStep = 8;
  323. }else{
  324. errrCnt = 0;
  325. }
  326. break;
  327. case 8: // 连接mqtt服务器
  328. sprintf(command, "AT+QMTCFG=\"qmtping\",0,%d\r\n", 30);
  329. EC800M_SendCommand(command);
  330. found = EC800M_RecRespond(g_usart3_rx_buf, AT_RESP_OK);
  331. if (found != NULL) {
  332. printf("MQTT heartbeat set successfully\r\n");
  333. }else{
  334. errrCnt++;
  335. printf("Failed to set MQTT heartbeat\r\n");
  336. }
  337. if(errrCnt == 0){
  338. linkStep = 9;
  339. }else{
  340. errrCnt = 0;
  341. }
  342. break;
  343. case 9:
  344. EC800M_SendCommand(AT_CMD_QMTCFG_SET_DATA_MODE);
  345. found = EC800M_RecRespond(g_usart3_rx_buf, AT_RESP_OK);
  346. if (found != NULL) {
  347. printf("Data receiving mode set successfully.\r\n");
  348. }else{
  349. errrCnt++;
  350. printf("Failed to set data receiving mode\r\n");
  351. }
  352. if(errrCnt == 0){
  353. linkStep = 10;
  354. }else{
  355. errrCnt = 0;
  356. }
  357. break;
  358. case 10:
  359. sprintf(command,"AT+QMTOPEN=0,\"%s\",%d\r\n", s_ec800Date.ip, s_ec800Date.port);
  360. EC800M_SendCommand(command);
  361. // found = EC800M_RecRespond(g_usart3_rx_buf, AT_RESP_OK);
  362. // found = EC800M_RecRespond(g_usart3_rx_buf, AT_RESP_QMTOPEN);
  363. //
  364. // if (found != NULL) {
  365. // printf("Successfully opened a network for the module\r\n");
  366. // }else{
  367. // errrCnt++;
  368. // printf("Failed to open a network for the module\r\n");
  369. // }
  370. temp = Accept_and_Compare_Str(AT_RESP_QMTOPEN);
  371. if (temp == 1) {
  372. printf("Successfully opened a network for the module\r\n");
  373. }else{
  374. errrCnt++;
  375. printf("Failed to open a network for the module\r\n");
  376. }
  377. if(errrCnt == 0){
  378. linkStep = 11;
  379. }else{
  380. errrCnt = 0;
  381. }
  382. break;
  383. case 11:
  384. sprintf(command,"AT+QMTCONN=0,%s,%s,%s\r\n",s_ec800Date.clientid, s_ec800Date.username, s_ec800Date.password);
  385. EC800M_SendCommand(command);
  386. found = EC800M_RecRespond(g_usart3_rx_buf, AT_RESP_OK);
  387. found = EC800M_RecRespond(g_usart3_rx_buf, AT_RESP_QMTCONN);
  388. if (found != NULL) {
  389. printf("Successfully connected to the MQTT server\r\n");
  390. }else{
  391. errrCnt++;
  392. printf("Failed to connect to the MQTT server\r\n");
  393. }
  394. if(errrCnt == 0){
  395. linkStep = 12;
  396. }else{
  397. errrCnt = 0;
  398. }
  399. break;
  400. default: break;
  401. }
  402. }
  403. /**
  404. * @brief EC800M初始化GNSS
  405. * @param NONE
  406. * @note
  407. * @retval 无
  408. */
  409. uint8_t gnssStep = 0;
  410. void EC800_gnss_init(void){
  411. char errrCnt = 0; // 错误计数
  412. char* found = NULL;
  413. switch(gnssStep){
  414. case 6:
  415. EC800M_SendCommand(AT_QGPS_0);
  416. found = EC800M_RecRespond(g_usart3_rx_buf, AT_RESP_OK);
  417. if (found != NULL) {
  418. printf("Turn off the GNSS module\r\n");
  419. }else{
  420. errrCnt++;
  421. printf("Failed to turn off the GNSS module\r\n");
  422. }
  423. if(errrCnt == 0){
  424. gnssStep = 7;
  425. }else{
  426. gnssStep = 7;
  427. }
  428. break;
  429. case 7:
  430. EC800M_SendCommand(AT_QGPS_1);
  431. found = EC800M_RecRespond(g_usart3_rx_buf, AT_RESP_OK);
  432. if (found != NULL) {
  433. printf("Turn on the GNSS module\r\n");
  434. }else{
  435. errrCnt++;
  436. printf("Failed to turn on the GNSS module\r\n");
  437. }
  438. if(errrCnt == 0){
  439. gnssStep = 8;
  440. }else{
  441. errrCnt = 0;
  442. }
  443. break;
  444. case 0:
  445. EC800M_SendCommand(AT_QGPSCFG_out_port);
  446. found = EC800M_RecRespond(g_usart3_rx_buf, AT_RESP_OK);
  447. if (found != NULL) {
  448. printf("Outputting NMEA Sentences via Serial Debugging\r\n");
  449. }else{
  450. errrCnt++;
  451. printf("The NMEA sentence output is set incorrectly\r\n");
  452. }
  453. if(errrCnt == 0){
  454. gnssStep = 1;
  455. }else{
  456. errrCnt = 0;
  457. }
  458. break;
  459. case 1:
  460. EC800M_SendCommand(AT_QGPSCFG_nmeasrc);
  461. found = EC800M_RecRespond(g_usart3_rx_buf, AT_RESP_OK);
  462. if (found != NULL) {
  463. printf("Enabling NMEA sentence retrieval via AT+QGPSGNMEA\r\n");
  464. }else{
  465. errrCnt++;
  466. printf("Failed to enable retrieving NMEA sentences via AT+QGPSGNMEA\r\n");
  467. }
  468. if(errrCnt == 0){
  469. gnssStep = 2;
  470. }else{
  471. errrCnt = 0;
  472. }
  473. break;
  474. case 2:
  475. EC800M_SendCommand(AT_QGPSCFG_gpsnmeatype);
  476. found = EC800M_RecRespond(g_usart3_rx_buf, AT_RESP_OK);
  477. if (found != NULL) {
  478. printf("Configuring the output type of NMEA sentences to all formats\r\n");
  479. }else{
  480. errrCnt++;
  481. printf("Failed to configure the output type of NMEA sentences to all formats\r\n");
  482. }
  483. if(errrCnt == 0){
  484. gnssStep = 3;
  485. }else{
  486. errrCnt = 0;
  487. }
  488. break;
  489. case 3:
  490. EC800M_SendCommand(AT_QGPSCFG_gnssconfig);
  491. found = EC800M_RecRespond(g_usart3_rx_buf, AT_RESP_OK);
  492. if (found != NULL) {
  493. printf("Configuring the supported GNSS satellite navigation systems to GPS+BeiDou\r\n");
  494. }else{
  495. errrCnt++;
  496. printf("Failed to configure the supported GNSS satellite navigation systems to GPS+BeiDou\r\n");
  497. }
  498. if(errrCnt == 0){
  499. gnssStep = 4;
  500. }else{
  501. errrCnt = 0;
  502. }
  503. break;
  504. case 4:
  505. EC800M_SendCommand(AT_QGPSCFG_autogps);
  506. found = EC800M_RecRespond(g_usart3_rx_buf, AT_RESP_OK);
  507. if (found != NULL) {
  508. printf("Disable GNSS auto-start\r\n");
  509. }else{
  510. errrCnt++;
  511. printf("Failed to disable GNSS auto-start\r\n");
  512. }
  513. if(errrCnt == 0){
  514. gnssStep = 5;
  515. }else{
  516. errrCnt = 0;
  517. }
  518. break;
  519. case 5:
  520. EC800M_SendCommand(AT_QGPSCFG_apflash);
  521. found = EC800M_RecRespond(g_usart3_rx_buf, AT_RESP_OK);
  522. if (found != NULL) {
  523. printf("Disable AP-Flash quick start function\r\n");
  524. }else{
  525. errrCnt++;
  526. printf("Failed to disable AP-Flash quick start function\r\n");
  527. }
  528. if(errrCnt == 0){
  529. gnssStep = 6;
  530. }else{
  531. errrCnt = 0;
  532. }
  533. break;
  534. default:
  535. break;
  536. }
  537. }
  538. //UTC时间转换为任意时区时间,如果是转换为北京时间,timezone传8即可
  539. void utc_to_local_time(nmea_utc_time* utc_time, int8_t timezone, nmea_utc_time* local_time)
  540. {
  541. int year,month,day,hour;
  542. int lastday = 0; //last day of this month 本月天数
  543. int lastlastday = 0; //last day of last month 上个月天数
  544. year = utc_time->year; //utc time
  545. month = utc_time->month;
  546. day = utc_time->date;
  547. hour = utc_time->hour + timezone;
  548. //1月大,2月小,3月大,4月小,5月大,6月小,7月大,8月大,9月小,10月大,11月小,12月大
  549. if(month==1 || month==3 || month==5 || month==7 || month==8 || month==10 || month==12)
  550. {
  551. lastday = 31;//本月天数
  552. lastlastday = 30;//这里应该补上上个月的天数
  553. if(month == 3)
  554. {
  555. if((year%400 == 0)||(year%4 == 0 && year%100 != 0))//if this is lunar year
  556. lastlastday = 29;
  557. else
  558. lastlastday = 28;
  559. }
  560. if(month == 8 || month == 1)//这里应该是8月和1月,因为8月和1月的上一个月(7月和12月)的天数是31天的
  561. lastlastday = 31;
  562. }
  563. else if(month == 4 || month == 6 || month == 9 || month == 11)
  564. {
  565. lastday = 30;
  566. lastlastday = 31;
  567. }
  568. else
  569. {
  570. lastlastday = 31;
  571. if((year%400 == 0)||(year%4 == 0 && year%100 != 0))
  572. lastday = 29;
  573. else
  574. lastday = 28;
  575. }
  576. if(hour >= 24)// if >24, day+1
  577. {
  578. hour -= 24;
  579. day += 1;
  580. if(day > lastday)// next month, day-lastday of this month
  581. {
  582. day -= lastday;
  583. month += 1;
  584. if(month > 12)// next year, month-12
  585. {
  586. month -= 12;
  587. year += 1;
  588. }
  589. }
  590. }
  591. if(hour < 0)// if <0, day-1
  592. {
  593. hour += 24;
  594. day -= 1;
  595. if(day < 1)// month-1, day=last day of last month
  596. {
  597. day = lastlastday;
  598. month -= 1;
  599. if(month < 1)// last year, month=12
  600. {
  601. month = 12;
  602. year -= 1;
  603. }
  604. }
  605. }
  606. // transfer value to local_time
  607. local_time->year = year;
  608. local_time->month = month;
  609. local_time->date = day;
  610. local_time->hour = hour;
  611. local_time->min = utc_time->min;
  612. local_time->sec = utc_time->sec;
  613. }
  614. /**
  615. * @brief 常用时间格式转时间戳
  616. * @param NONE
  617. * @note
  618. * @retval 无
  619. */
  620. uint32_t EC800_mktime (unsigned int year, unsigned int mon,
  621. unsigned int day, unsigned int hour,
  622. unsigned int min, unsigned int sec)
  623. {
  624. if (0 >= (int) (mon -= 2)){ /**//* 1..12 -> 11,12,1..10 */
  625. mon += 12; /**//* Puts Feb last since it has leap day */
  626. year -= 1;
  627. }
  628. return (((
  629. (unsigned long) (year/4 - year/100 + year/400 + 367*mon/12 + day) +
  630. year*365 - 719499
  631. )*24 + hour /**//* now have hours */
  632. )*60 + min /**//* now have minutes */
  633. )*60 + sec; /**//* finally seconds */
  634. }
  635. /**
  636. * @brief 读取GNSS的数据
  637. * @param NONE
  638. * @note
  639. * @retval 无
  640. */
  641. void EC800_readGnssDate(void){
  642. char* found = NULL;
  643. EC800M_SendCommand(AT_QGPSGNMEA_RMC);
  644. EC800_recEnable();
  645. found = strstr(g_usart3_rx_buf, AT_RESP_OK);
  646. if (found != NULL) {
  647. printf("Location information received successfully\r\n");
  648. }else{
  649. printf("Location information reception failed\r\n");
  650. return ;
  651. }
  652. printf("Location information:%s\r\n", g_usart3_rx_buf);
  653. NMEA_GNRMC_Analysis(&s_nmea_msg, (uint8_t*)g_usart3_rx_buf);
  654. utc_to_local_time(&(s_nmea_msg.utc), 8, &s_nmea_utc_time);
  655. printf("timer-%d/%d/%d %d:%d:%d\r\n",s_nmea_utc_time.year,s_nmea_utc_time.month,s_nmea_utc_time.date,s_nmea_utc_time.hour,s_nmea_utc_time.min,s_nmea_utc_time.sec);
  656. s_messageDate.Timestamp = EC800_mktime(s_nmea_utc_time.year,s_nmea_utc_time.month,s_nmea_utc_time.date,s_nmea_utc_time.hour,s_nmea_utc_time.min,s_nmea_utc_time.sec);
  657. g_usart3_rx_sta= 0;
  658. memset(g_usart3_rx_buf, 0, USART3_REC_LEN); // 清除数据buff
  659. printf("latitude:%d%d--longitude:%d%d\r\n", s_nmea_msg.latitude, s_nmea_msg.nshemi, s_nmea_msg.longitude, s_nmea_msg.ewhemi);
  660. s_messageDate.latitude = s_nmea_msg.latitude;
  661. s_messageDate.nshemi = s_nmea_msg.nshemi;
  662. s_messageDate.longitude = s_nmea_msg.longitude;
  663. s_messageDate.ewhemi = s_nmea_msg.ewhemi;
  664. }
  665. /**
  666. * @brief EC800M订阅主题
  667. * @param topic1: 订阅的主题名称1字符串形式
  668. * @param topic2: 订阅的主题名称2字符串形式
  669. * @note
  670. * @retval 无
  671. */
  672. uint8_t EC800_subscribeToTopic(const char* topic1){
  673. char command[100] = {0};
  674. uint8_t recTemp = 0;
  675. sprintf(command, "AT+QMTSUB=0,1,\"%s\",0\r\n", topic1);
  676. EC800M_SendCommand(command);
  677. recTemp = Accept_and_Compare_Str(AT_RESP_QMTSUB);
  678. if (recTemp == 1) {
  679. printf("Subscription to the topic successful\r\n");
  680. return 1;
  681. }else if (recTemp == 2){
  682. printf("Subscription to the topic failed\r\n");
  683. return 0;
  684. }
  685. }
  686. /**
  687. * @brief EC800M发布消息
  688. * @param topic: 消息发布的主题 字符串形式
  689. * @param message: 发布的消息 字符串形式
  690. * @param len: 发布消息的字节长度
  691. * @note
  692. * @retval 无
  693. */
  694. uint8_t EC800_publishMessage(const char* topic, const char* message, uint16_t len){
  695. char command[100] = {0};
  696. char* found = NULL;
  697. char* responseCmd = ">";
  698. static uint8_t publishStep = 0;
  699. uint8_t recBack = 0;
  700. switch(publishStep){
  701. case 0:
  702. sprintf(command,"AT+QMTPUBEX=0,0,0,0,\"%s\",%d\r\n",topic,len);
  703. EC800M_SendCommand(command);
  704. found = EC800M_RecRespond(g_usart3_rx_buf, responseCmd);
  705. if (found != NULL) {
  706. found = NULL; // 将found指针指向NULL处
  707. printf("The topic has been linked\r\n");
  708. publishStep = 1;
  709. }else{
  710. printf("The topic link failed\r\n");
  711. publishStep = 0;
  712. }
  713. // break;
  714. case 1:
  715. EC800M_SendCommand(message);
  716. // found = EC800M_RecRespond(g_usart3_rx_buf, AT_RESP_OK);
  717. // found = EC800M_RecRespond(g_usart3_rx_buf, AT_RESP_QMTPUBEX);
  718. // if (found != NULL) {
  719. // printf("The message has been successfully posted\r\n");
  720. // publishStep = 0;
  721. // }else{
  722. // printf("Message publication failed\r\n");
  723. // publishStep = 0;
  724. // }
  725. recBack = Accept_and_Compare_Str(AT_RESP_QMTPUBEX);
  726. if (recBack == 1) {
  727. publishStep = 0;
  728. printf("The message has been successfully posted\r\n");
  729. }else{
  730. printf("Message publication failed\r\n");
  731. publishStep = 0;
  732. }
  733. break;
  734. default:
  735. break;
  736. }
  737. return recBack;
  738. }
  739. /**
  740. * @brief EC800M与服务器进行时间对时
  741. * @note
  742. * @retval 无
  743. */
  744. uint8_t EC800_time_calibration(void){
  745. cJSON *root = NULL;
  746. char *jsonString = NULL;
  747. uint8_t temp = 0;
  748. // 定义对象 { }
  749. root = cJSON_CreateObject();
  750. // 插入元素,对应 键值对
  751. cJSON_AddItemToObject(root, "msgType", cJSON_CreateString("json"));
  752. cJSON_AddItemToObject(root, "imsi", cJSON_CreateString(s_messageDate.imsi));
  753. cJSON_AddItemToObject(root, "hardVersion", cJSON_CreateString(HARD_VERSION));
  754. cJSON_AddItemToObject(root, "softVersion", cJSON_CreateString(SOFT_VERSION));
  755. cJSON_AddItemToObject(root, "devId", cJSON_CreateString(DEV_ID));
  756. cJSON_AddItemToObject(root, "protocolVersion", cJSON_CreateString(PROTOCOL_VERSION));
  757. cJSON_AddItemToObject(root, "txnNo", cJSON_CreateNumber(s_messageDate.Timestamp));
  758. cJSON_AddItemToObject(root, "devType", cJSON_CreateNumber(DEV_TYPE));
  759. // 将 JSON 对象转换为字符串
  760. jsonString = cJSON_Print(root);
  761. cJSON_Delete(root);
  762. temp = EC800_publishMessage("ABCDEFG", jsonString, strlen(jsonString));
  763. free(jsonString);
  764. return temp;
  765. }
  766. /**
  767. * @brief 将服务器响应的字符串中的年月日进行分离
  768. * @note
  769. * @retval 无
  770. */
  771. void parseServerTime(char* str){
  772. char year[5];
  773. char month[3];
  774. char day[3];
  775. char hour[3];
  776. char minute[3];
  777. char second[3];
  778. strncpy(year, str, 4);
  779. year[4] = '\0';
  780. strncpy(month, str + 4, 2);
  781. month[2] = '\0';
  782. strncpy(day, str + 6, 2);
  783. day[2] = '\0';
  784. strncpy(hour, str + 8, 2);
  785. hour[2] = '\0';
  786. strncpy(minute, str + 10, 2);
  787. minute[2] = '\0';
  788. strncpy(second, str + 12, 2);
  789. second[2] = '\0';
  790. s_recDate.year = atoi(year);
  791. s_recDate.month = atoi(month);
  792. s_recDate.day = atoi(day);
  793. s_recDate.hour = atoi(hour);
  794. s_recDate.minute = atoi(minute);
  795. s_recDate.sec = atoi(second);
  796. s_messageDate.Timestamp = EC800_mktime(s_recDate.year,s_recDate.month,s_recDate.day,s_recDate.hour,s_recDate.minute,s_recDate.sec);
  797. printf("Year (int): %d\n", s_recDate.year);
  798. printf("Month (int): %d\n", s_recDate.month);
  799. printf("Day (int): %d\n", s_recDate.day);
  800. printf("Hour (int): %d\n", s_recDate.hour);
  801. printf("Minute (int): %d\n", s_recDate.minute);
  802. printf("Second (int): %d\n", s_recDate.sec);
  803. }
  804. /**
  805. * @brief 解析对时数据帧的响应
  806. * @note
  807. * @retval 无
  808. */
  809. void EC800_parseRespondTime(cJSON *root, cJSON *item){
  810. uint8_t temp = 0;
  811. // 获取"resultCode"字段的值
  812. item = cJSON_GetObjectItem(root, "resultCode");
  813. if (item == NULL) {
  814. printf("Field \"resultCode\" not found\n");
  815. }else{
  816. // 打印"resultCode"字段的值
  817. printf("resultCode: %d\n", item->valueint);
  818. if((item->valueint) == 1){
  819. printf("The upload of synchronized data was successful.\n");
  820. temp = 1; // 上传成功
  821. }else{
  822. printf("The upload of synchronized data has failed.\n");
  823. }
  824. }
  825. if(temp == 1){
  826. item = cJSON_GetObjectItem(root, "serverTime");
  827. if (item == NULL) {
  828. printf("Field \"serverTime\" not found\n");
  829. }else{
  830. // 打印"serverTime"字段的值
  831. printf("serverTime: %d\n", item->valuestring);
  832. parseServerTime(item->valuestring);
  833. }
  834. }
  835. }
  836. /**
  837. * @brief EC800M上传实时数据
  838. * @note
  839. * @retval 无
  840. */
  841. uint8_t EC800_uploadRealDate(void){
  842. cJSON *root = NULL;
  843. char *jsonString = NULL;
  844. cJSON *rt000 = NULL;
  845. cJSON *rt000Object1 = NULL;
  846. uint8_t temp = 0;
  847. // 定义对象 { }
  848. root = cJSON_CreateObject();
  849. //
  850. // 插入元素,对应 键值对
  851. cJSON_AddItemToObject(root, "msgType", cJSON_CreateString("json"));
  852. cJSON_AddItemToObject(root, "imsi", cJSON_CreateString(s_messageDate.imsi));
  853. cJSON_AddItemToObject(root, "hardVersion", cJSON_CreateString(HARD_VERSION));
  854. cJSON_AddItemToObject(root, "softVersion", cJSON_CreateString(SOFT_VERSION));
  855. cJSON_AddItemToObject(root, "devId", cJSON_CreateString(DEV_ID));
  856. cJSON_AddItemToObject(root, "protocolVersion", cJSON_CreateString(PROTOCOL_VERSION));
  857. cJSON_AddItemToObject(root, "txnNo", cJSON_CreateNumber(s_messageDate.Timestamp));
  858. cJSON_AddItemToObject(root, "devType", cJSON_CreateNumber(DEV_TYPE));
  859. // 定义 { } 对象
  860. rt000Object1 = cJSON_CreateObject();
  861. cJSON_AddItemToObject(rt000Object1, "rt003", cJSON_CreateNumber(s_messageDate.vehicleStatus));
  862. cJSON_AddItemToObject(rt000Object1, "rt025", cJSON_CreateNumber(s_messageDate.demandVol));
  863. cJSON_AddItemToObject(rt000Object1, "rt026", cJSON_CreateNumber(s_messageDate.demandCur));
  864. cJSON_AddItemToObject(rt000Object1, "rt027", cJSON_CreateString((char *)s_messageDate.VIN));
  865. cJSON_AddItemToObject(rt000Object1, "rt028", cJSON_CreateString(s_messageDate.lat_long_data));
  866. cJSON_AddItemToObject(rt000Object1, "rt029", cJSON_CreateNumber(s_messageDate.drivDirection));
  867. cJSON_AddItemToObject(rt000Object1, "rt030", cJSON_CreateNumber(s_messageDate.vehicleSpeed));
  868. cJSON_AddItemToObject(rt000Object1, "rt031", cJSON_CreateNumber(s_messageDate.dailyDrivTime));
  869. cJSON_AddItemToObject(rt000Object1, "rt032", cJSON_CreateNumber(s_messageDate.dailyDrivMileage));
  870. cJSON_AddItemToObject(rt000Object1, "rt033", cJSON_CreateNumber(s_messageDate.accTotalDrivTime_h_min));
  871. cJSON_AddItemToObject(rt000Object1, "rt034", cJSON_CreateNumber((s_messageDate.accTotalMileage_h << 16) + s_messageDate.accTotalMileage_l));
  872. cJSON_AddItemToObject(rt000Object1, "rt035", cJSON_CreateNumber(s_messageDate.runTime));
  873. // 定义 [ ] 数组
  874. rt000 = cJSON_CreateArray();
  875. // 往数组中添加元素
  876. cJSON_AddItemToArray(rt000, rt000Object1);
  877. // 将子项插入根项中
  878. cJSON_AddItemToObject(root, "rt000", rt000);
  879. //
  880. // 将 JSON 对象转换为字符串
  881. jsonString = cJSON_Print(root);
  882. cJSON_Delete(root);
  883. temp = EC800_publishMessage("ABCDEFG", jsonString, strlen(jsonString));
  884. free(jsonString);
  885. return temp;
  886. }
  887. /**
  888. * @brief 解析实时数据响应
  889. * @note
  890. * @retval 无
  891. */
  892. void EC800_respondRealDate(cJSON *root, cJSON *item){
  893. // 获取"name"字段的值
  894. item = cJSON_GetObjectItem(root, "resultCode");
  895. if (item == NULL) {
  896. printf("Field \"resultCode\" not found\n");
  897. }else{
  898. // 打印"name"字段的值
  899. printf("resultCode: %d\n", item->valueint);
  900. if((item->valueint) == 1){
  901. printf("Uploaded real-time data successfully\n");
  902. }else{
  903. printf("The upload of real-time data has failed\n");
  904. }
  905. }
  906. }
  907. /**
  908. * @brief 解析升級数据
  909. * @note
  910. * @retval 无
  911. */
  912. void EC800_respondUpdateDate(cJSON *root, cJSON *item){
  913. // 获取"name"字段的值
  914. item = cJSON_GetObjectItem(root, "update");
  915. if (item == NULL) {
  916. printf("Field \"update\" not found\n");
  917. }else{
  918. // 打印"name"字段的值
  919. printf("update: %d\n", item->valueint);
  920. if((item->valueint) == 1){
  921. s_ec800Date.hardwareUpdate = 1;
  922. printf("update begin\n");
  923. }else{
  924. printf("no update\n");
  925. }
  926. }
  927. }
  928. /**
  929. * @brief 通信响应解析
  930. * @note
  931. * @return 当前的控制命令
  932. */
  933. short EC800_respondParse(void){
  934. cJSON *root = NULL;
  935. cJSON *item = NULL;
  936. short cmd = 0;
  937. // 找到JSON数据的起始位置
  938. const char* start = strchr(g_usart3_rx_buf, '{');
  939. if (start == NULL) {
  940. printf("JSON data not found\n");
  941. return 0;
  942. }
  943. // 解析JSON数据
  944. root = cJSON_Parse(start);
  945. if (root == NULL) {
  946. printf("Failed to parse JSON data\n");
  947. cJSON_Delete(root);
  948. return 0;
  949. }
  950. // 获取"controlCode"字段的值
  951. item = cJSON_GetObjectItem(root, "controlCode");
  952. if (item == NULL) {
  953. printf("Field \"controlCode\" not found\n");
  954. }else{
  955. // 打印"controlCode"字段的值
  956. printf("controlCode: %d\n", item->valueint);
  957. cmd = item->valueint;
  958. }
  959. // 解析对应命令的对应数据
  960. switch(cmd){
  961. case 106:
  962. EC800_parseRespondTime(root, item);
  963. break;
  964. case 202:
  965. EC800_respondRealDate(root, item);
  966. break;
  967. case 203:
  968. EC800_respondUpdateDate(root, item);
  969. break;
  970. default :
  971. break;
  972. }
  973. cJSON_Delete(root);
  974. return (cmd);
  975. }
  976. /**
  977. * @brief EC800M状态转换与使用
  978. * @note
  979. * @retval 无
  980. */
  981. uint8_t stateStep = 0;
  982. void EC800_stateTransition_use(void){
  983. uint8_t right = 1; // 返回是否为正确
  984. static uint16_t timesCnt = 0;
  985. static uint8_t tudeErrcnt = 0; // 定位信息错误计数
  986. ec800Date *p_ec800Date = &s_ec800Date;
  987. switch(stateStep){
  988. case 0: // 初始化模块
  989. EC800M_link();
  990. if(linkStep == 12){
  991. stateStep = 1;
  992. p_ec800Date->ec800InitFlag = 1; // 初始化完成
  993. }else{
  994. p_ec800Date->ec800InitFlag = 0; // 初始化未完成
  995. }
  996. break;
  997. case 1: // 初始化GNSS
  998. EC800_gnss_init();
  999. if(gnssStep == 8){
  1000. stateStep = 2;
  1001. }
  1002. break;
  1003. case 2: // 订阅主题
  1004. right = EC800_subscribeToTopic("aabbcc");
  1005. if(right != 1){ // 发布消息失败,可能断开链接
  1006. // stateStep = 0; // 重新初始化
  1007. }else{
  1008. stateStep = 3;
  1009. }
  1010. break;
  1011. case 3:
  1012. // 获取定位信息
  1013. EC800_readGnssDate();
  1014. // 没有获取到定位信息 重复获取三次
  1015. if((s_messageDate.latitude == 0) && (s_messageDate.longitude == 0)){
  1016. tudeErrcnt++;
  1017. if(tudeErrcnt == 4){
  1018. tudeErrcnt = 0;
  1019. stateStep = 4;
  1020. }
  1021. }else{
  1022. tudeErrcnt = 0;
  1023. stateStep = 4;
  1024. }
  1025. break;
  1026. case 4: // 与服务器对时
  1027. right = EC800_time_calibration();
  1028. if(right == 1){
  1029. stateStep = 6; // 去步骤6等待对时响应 收到对时响应后,发布实时消息
  1030. }
  1031. break;
  1032. case 5: // 发布消息
  1033. right = EC800_uploadRealDate();
  1034. stateStep = 6;
  1035. // if(right == 0){ // 发布消息失败,可能断开链接
  1036. // stateStep = 0; // 重新初始化
  1037. // linkStep = 0;
  1038. // stateStep = 6;
  1039. // }else if(right == 1){
  1040. // stateStep = 6;
  1041. // }
  1042. break;
  1043. case 6: // 接收消息
  1044. HAL_UART_Receive_DMA(&huart3, (uint8_t*)g_usart3_rx_buf, USART3_REC_LEN); //设置接收缓冲区
  1045. __HAL_UART_ENABLE_IT(&huart3, UART_IT_IDLE);
  1046. if(g_usart3_rx_sta!=0){
  1047. HAL_UART_Transmit(&huart1, (uint8_t*)g_usart3_rx_buf, strlen(g_usart3_rx_buf), HAL_MAX_DELAY); // 打印数据除去URC
  1048. right = EC800_respondParse();
  1049. if(right == CTR_CODE_JUDETIME){ // 对时响应
  1050. stateStep = 5;
  1051. right = 0;
  1052. timesCnt = 0;
  1053. }else if(right == 203){ // 固件更新
  1054. stateStep = 0xff;
  1055. }
  1056. memset(g_usart3_rx_buf, 0, USART3_REC_LEN); // 清除数据buff,接收新的数据
  1057. g_usart3_rx_sta = 0; // 清除接收状态
  1058. }
  1059. // 转弯行驶中
  1060. if(turnFlag == 1){
  1061. if(timesCnt < TURN_INTERVAL_TIME_MS){
  1062. timesCnt++;
  1063. }else{
  1064. timesCnt= 0;
  1065. stateStep = 3;
  1066. HAL_UART_DMAStop(&huart3);
  1067. __HAL_UART_DISABLE_IT(&huart3, UART_IT_IDLE);
  1068. }
  1069. }else{ // 正常行驶中
  1070. if(timesCnt < PUBLISH_TIME_MS){
  1071. timesCnt++;
  1072. }else{
  1073. timesCnt= 0;
  1074. stateStep = 3;
  1075. HAL_UART_DMAStop(&huart3);
  1076. __HAL_UART_DISABLE_IT(&huart3, UART_IT_IDLE);
  1077. }
  1078. }
  1079. break;
  1080. default:
  1081. break;
  1082. }
  1083. }