RC_Channel: Unify from print or println to printf.

This commit is contained in:
murata 2017-01-21 13:50:24 +09:00 committed by Andrew Tridgell
parent 9b1dadd93e
commit 836c8aa684
2 changed files with 2 additions and 2 deletions

View File

@ -19,7 +19,7 @@ static void print_radio_values();
void setup()
{
hal.console->println("ArduPilot RC Channel test");
hal.console->printf("ArduPilot RC Channel test\n");
rc = RC_Channels::rc_channel(CH_1);

View File

@ -28,7 +28,7 @@ private:
void RC_UART::setup()
{
hal.scheduler->delay(1000);
hal.console->println("RC_UART starting");
hal.console->printf("RC_UART starting\n");
hal.UART->begin(baudrate, 512, 512);
hal.rcout->set_freq(0xFF, RC_SPEED);
}