forked from Archive/PX4-Autopilot
disable console print of incoming telemetry data
This commit is contained in:
parent
e25b26e2a8
commit
403810c688
|
@ -345,7 +345,8 @@ static int frsky_telemetry_thread_main(int argc, char *argv[])
|
|||
int nbytes = read(uart, &dbuf[0], sizeof(dbuf));
|
||||
bool new_input = frsky_parse_host(&dbuf[0], nbytes, &host_frame);
|
||||
|
||||
if (new_input) {
|
||||
/* the RSSI value could be useful */
|
||||
if (false && new_input) {
|
||||
warnx("host frame: ad1:%u, ad2: %u, rssi: %u",
|
||||
host_frame.ad1, host_frame.ad2, host_frame.linkq);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue