Skip to content

Commit

Permalink
update: mqtt库的接收缓冲区,在ec618/ec718进一步放开到32k
Browse files Browse the repository at this point in the history
  • Loading branch information
wendal committed Apr 29, 2024
1 parent eb60d08 commit 4ec3fbc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/network/libemqtt/luat_mqtt.h
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
#define MQTT_ERROR_STATE_DISCONNECT -2

#if defined(CHIP_EC618) || defined(CHIP_EC718)
#define MQTT_RECV_BUF_LEN_MAX 8192 ///< MQTT 接收BUFF大小
#define MQTT_RECV_BUF_LEN_MAX (32*1024) ///< MQTT 接收BUFF大小
#else
#define MQTT_RECV_BUF_LEN_MAX 4096 ///< MQTT 接收BUFF大小
#endif
Expand Down

0 comments on commit 4ec3fbc

Please sign in to comment.