AP_Menu: Unify from print or println to printf.

This commit is contained in:
murata 2017-01-21 13:56:01 +09:00 committed by Andrew Tridgell
parent 0733d760f6
commit aa3fb830af

View File

@ -152,7 +152,7 @@ Menu::_run_command(bool prompt_on_enter)
if (cmd_found==false) if (cmd_found==false)
{ {
_port->println("Invalid command, type 'help'"); _port->printf("Invalid command, type 'help'\n");
} }
return false; return false;
@ -223,7 +223,7 @@ Menu::_help(void)
{ {
int i; int i;
_port->println("Commands:"); _port->printf("Commands:\n");
for (i = 0; i < _entries; i++) { for (i = 0; i < _entries; i++) {
hal.scheduler->delay(10); hal.scheduler->delay(10);
_port->printf(" %s\n", _commands[i].command); _port->printf(" %s\n", _commands[i].command);