mirror of
https://github.com/ArduPilot/ardupilot
synced 2025-01-03 14:38:30 -04:00
RC_Channel: Unify from print or println to printf.
This commit is contained in:
parent
9b1dadd93e
commit
836c8aa684
@ -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);
|
||||
|
||||
|
@ -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);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user