Skip to content

Commit

Permalink
comment some debugging code
Browse files Browse the repository at this point in the history
  • Loading branch information
thelsing committed May 7, 2020
1 parent ed5dc73 commit c97bcc2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/knx/memory.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ void Memory::writeMemory()
{
println(_data - buffer);
println(".");
println((int)_saveRestores[i], HEX);
//println((long)_saveRestores[i], HEX);
buffer = _saveRestores[i]->save(buffer);
}

Expand All @@ -105,7 +105,7 @@ void Memory::writeMemory()
{
println(_data - buffer);
println(".");
println((int)_tableObjects[i], HEX);
//println((long)_tableObjects[i], HEX);
buffer = _tableObjects[i]->save(buffer);

//save to size of the memoryblock for tableobject too, so that we can rebuild the usedList and freeList
Expand Down

0 comments on commit c97bcc2

Please sign in to comment.