Skip to content

Commit b49c1fc

Browse files
authored
Merge pull request #43 from Strooom/develop
fix - missing \n in CLI output
2 parents e69fd78 + 64b1869 commit b49c1fc

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

TODO.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# MuMo SW V3
22

33
## known bugs
4-
when unplugging the USB, sometimes the display is not updated immediately, but only at the next RTCtick ???
4+
55

66
## ToDo's
77

lib/application/maincontroller.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -803,7 +803,7 @@ void mainController::setSensor(const cliCommand& theCommand) {
803803
if (tmpTime >= 60) {
804804
cli::sendResponse("%u hours\n", tmpTime / 60);
805805
} else {
806-
cli::sendResponse("%u minutes", tmpTime);
806+
cli::sendResponse("%u minutes\n", tmpTime);
807807
}
808808
}
809809
}

0 commit comments

Comments
 (0)