Changed CRSF RX to be bidirectional

This commit is contained in:
Martin Budden 2016-11-16 10:26:48 +00:00
parent 3c5dd1604e
commit e58d4bc0ad
2 changed files with 2 additions and 1 deletions

View File

@ -18,7 +18,7 @@
#pragma once
#define CRSF_BAUDRATE 420000
#define CRSF_PORT_OPTIONS (SERIAL_STOPBITS_1 | SERIAL_PARITY_NO)
#define CRSF_PORT_OPTIONS (SERIAL_STOPBITS_1 | SERIAL_PARITY_NO | SERIAL_BIDIR)
#define CRSF_MAX_CHANNEL 16

View File

@ -196,6 +196,7 @@ bool serialRxInit(const rxConfig_t *rxConfig, rxRuntimeConfig_t *rxRuntimeConfig
#endif
default:
enabled = false;
break;
}
return enabled;
}