Skip to content

Commit

Permalink
Remove debug print from _checksum.
Browse files Browse the repository at this point in the history
  • Loading branch information
farlepet committed Oct 22, 2021
1 parent 5a5cc5b commit 0f50973
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/PacketHandler.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,6 @@ int PacketHandler::handlePacket(size_t len, uint8_t *data) {


static uint32_t _checksum(size_t len, uint8_t *data) {
std::cerr << " _checksum(" << len << ")" << std::endl;
uint32_t accum = 0;
for(size_t i = 0; i < len; i++) {
if(i & 1) {
Expand Down

0 comments on commit 0f50973

Please sign in to comment.