Home
last modified time | relevance | path

Searched refs:TX_BUF_SIZE (Results 1 – 2 of 2) sorted by relevance

/Zephyr-Core-3.5.0/include/zephyr/shell/
Dshell_mqtt.h24 #define TX_BUF_SIZE CONFIG_SHELL_MQTT_TX_BUF_SIZE macro
34 char buf[TX_BUF_SIZE];
/Zephyr-Core-3.5.0/subsys/shell/backends/
Dshell_mqtt.c750 if ((sh_mqtt->tx_buf.len + length - *cnt) > TX_BUF_SIZE) { in write()
751 copy_len = TX_BUF_SIZE - sh_mqtt->tx_buf.len; in write()
760 if (sh_mqtt->tx_buf.len == TX_BUF_SIZE) { in write()