AC_PID: Unify from print or println to printf.

This commit is contained in:
murata 2017-01-21 13:47:49 +09:00 committed by Andrew Tridgell
parent 1b2ea27a68
commit 5e11497332
1 changed files with 1 additions and 1 deletions

View File

@ -21,7 +21,7 @@ const AP_HAL::HAL& hal = AP_HAL::get_HAL();
// setup function
void setup()
{
hal.console->println("ArduPilot Mega AC_PID library test");
hal.console->printf("ArduPilot Mega AC_PID library test\n");
hal.scheduler->delay(1000);
}