increase the base network buffer size from 8192 -> 16384, this is doubly as large, some transfer frames to sysview can reach the 8k boundary and become truncated, this increase in buffer size should allievate that issue;

pull/121/merge
Bryan Biedenkapp 3 weeks ago
parent efedd6a53c
commit 54b2a41ec0

@ -28,7 +28,7 @@ namespace network
// Constants
// ---------------------------------------------------------------------------
const uint32_t DATA_PACKET_LENGTH = 8192U;
const uint32_t DATA_PACKET_LENGTH = 16384U;
const uint32_t OVERSIZED_PACKET_WARN = 1536U;
const uint8_t MAX_FAILED_READ_CNT_LOGGING = 5U;

Loading…
Cancel
Save

Powered by TurnKey Linux.