From 7f2bbcd95ec6697118abb5202a9f7afa32afa29b Mon Sep 17 00:00:00 2001 From: Kevin Hester Date: Sun, 23 May 2021 12:07:28 +0800 Subject: [PATCH] fix debug spam for api calls (possibly corrupting protocol) --- src/mesh/StreamAPI.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mesh/StreamAPI.cpp b/src/mesh/StreamAPI.cpp index 3785e5028..3e52506c7 100644 --- a/src/mesh/StreamAPI.cpp +++ b/src/mesh/StreamAPI.cpp @@ -45,7 +45,7 @@ int32_t StreamAPI::readStream() } else if (ptr >= HEADER_LEN - 1) { // we have at least read our 4 byte framing uint32_t len = (rxBuf[2] << 8) + rxBuf[3]; // big endian 16 bit length follows framing - console->printf("len %d\n", len); + // console->printf("len %d\n", len); if (ptr == HEADER_LEN - 1) { // we _just_ finished our 4 byte header, validate length now (note: a length of zero is a valid