fix well message printing

This commit is contained in:
Adrien Marquès 2018-12-11 13:34:17 +01:00
parent 8b669af363
commit 555fcd17f2
1 changed files with 1 additions and 1 deletions

View File

@ -54,6 +54,6 @@ void loop() {
// log message
screen.clear();
screen.printfn(0, "msg[%3d/%3d] %3d", recv.getDist(), recv.getTTL(), recv.getSize());
screen.printfn_overflow(1, "%s", recv.getData());
screen.printfn_overflow(1, "%s", (char*) recv.getData());
}