mirror of
https://github.com/espressif/esp-protocols.git
synced 2025-07-31 03:07:30 +02:00
fix(modem): Fix cmux log message
This commit is contained in:
@ -327,7 +327,7 @@ bool CMux::on_cmux_data(uint8_t *data, size_t actual_len)
|
|||||||
auto data_end = buffer.get() + buffer.size;
|
auto data_end = buffer.get() + buffer.size;
|
||||||
data_to_read = payload_len + 2; // 2 -- CMUX protocol footer
|
data_to_read = payload_len + 2; // 2 -- CMUX protocol footer
|
||||||
if (data + data_to_read >= data_end) {
|
if (data + data_to_read >= data_end) {
|
||||||
ESP_LOGW("CUMX", "Failed to defragment longer payload (payload=%" PRIsize_t ")", payload_len);
|
ESP_LOGW("CMUX", "Failed to defragment longer payload (payload=%" PRIsize_t ")", payload_len);
|
||||||
// If you experience this error, your device uses longer payloads while
|
// If you experience this error, your device uses longer payloads while
|
||||||
// the configured buffer is too small to defragment the payload properly.
|
// the configured buffer is too small to defragment the payload properly.
|
||||||
// To resolve this issue you can:
|
// To resolve this issue you can:
|
||||||
|
Reference in New Issue
Block a user