We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5b707dc commit 0e60215Copy full SHA for 0e60215
src/decoder.h
@@ -176,6 +176,13 @@ class RpcDecoder {
176
// This is a blocking send, under the assumption _transport.write will always succeed eventually
177
inline size_t send(const uint8_t* data, const size_t size) {
178
179
+ Serial.print("-- DECODER send -- : ");
180
+ for (size_t j=0; j<size; j++) {
181
+ Serial.print(data[j], HEX);
182
+ Serial.print(" ");
183
+ }
184
+ Serial.println(" ");
185
+
186
size_t offset = 0;
187
188
while (offset < size) {
0 commit comments