Skip to content

Commit 22ac980

Browse files
authored
Merge pull request #14 from pennam/stray-print
hex: remove stray print
2 parents a7ca3c2 + a76e007 commit 22ac980

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

src/hex/hex.cpp

-2
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,6 @@ namespace arduino { namespace hex {
3030
bool decode(const String in, uint8_t* out, uint32_t size) {
3131
unsigned int byteNumber;
3232
byteNumber = chex_decode(out, size, in.begin(), in.length());
33-
Serial.println(byteNumber);
34-
Serial.println(in.length());
3533
return byteNumber * 2 == in.length();
3634
}
3735

0 commit comments

Comments
 (0)