Browse Source

【3.1.0.43】Uart 优化完成。

CHENJIE-PC\QiXiang_CHENJIE 3 years ago
parent
commit
bf177c8f58
2 changed files with 4 additions and 4 deletions
  1. 2 2
      inc/AppConfig.h
  2. 2 2
      src/AppTaskUart.c

+ 2 - 2
inc/AppConfig.h

@@ -2,7 +2,7 @@
  * @Author       : ChenJie
  * @Date         : 2021-10-14 09:27:15
  * @LastEditors  : ChenJie
- * @LastEditTime : 2021-11-15 15:05:49
+ * @LastEditTime : 2021-11-16 12:17:58
  * @Description  : App Config H file 配置文件,可以针对不同参数进行更改
  * @FilePath     : \PLAT\project\ec616_0h00\apps\qx_app\inc\AppConfig.h
  */
@@ -14,7 +14,7 @@
 #define DATA_MODULE_TYPE (1)           //1表示NB模块,2表示4G cat1
 #define EOLSTATE (0)                   //1表示下线检测跳过,使用默认值,0表示使用下线检测
 #define DEFAULT_SN "RLTEST00000000001" //默认上传的SN编码
-#define APPSWVERSION 0x0301002A        //数据模块软件版本号
+#define APPSWVERSION 0x0301002B        //数据模块软件版本号
 #define RELAYCONFIG 1                  //继电器配置
 #define TCP_ADD "iotp.fast-fun.cn"     //数据上传的地址
 #define TCP_PORT 8712                  //数据上传的端口

+ 2 - 2
src/AppTaskUart.c

@@ -2,7 +2,7 @@
  * @Author       : ChenJie
  * @Date         : 2021-10-14 09:27:15
  * @LastEditors  : ChenJie
- * @LastEditTime : 2021-11-15 15:05:06
+ * @LastEditTime : 2021-11-16 12:17:51
  * @Description  : file content
  * @FilePath     : \PLAT\project\ec616_0h00\apps\qx_app\src\AppTaskUart.c
  */
@@ -438,7 +438,7 @@ UINT8 UartAppTrasmit(UINT8 *pSend, UINT32 sendLen, UINT8 *pRead, UINT32 readLen,
 	{
 		UartBuffer UartData;
 		osStatus_t ret = osMessageQueueGet(uartDataHandle, &UartData, 0, timeout);
-		if (ret == osOK && readLen == UartData.len)
+		if (ret == osOK)
 		{
 			memcpy(pRead, (UINT8 *)&UartData, UartData.len);
 			CRC_Rece_buffer = *(pRead + UartData.len - 1) << 8 | *(pRead + UartData.len - 2);