mirror of
https://github.com/okalachev/flix.git
synced 2025-07-27 17:49:33 +00:00
Remove unneeded INVERT_SERIAL define
This commit is contained in:
parent
0f83e8ed80
commit
0661aecccf
@ -5,8 +5,6 @@
|
|||||||
|
|
||||||
#include <SBUS.h>
|
#include <SBUS.h>
|
||||||
|
|
||||||
#define INVERT_SERIAL true // false if external SBUS invertor is used
|
|
||||||
|
|
||||||
// NOTE: use `cr` command and replace with the actual values
|
// NOTE: use `cr` command and replace with the actual values
|
||||||
int channelNeutral[] = {995, 883, 200, 972, 512, 512};
|
int channelNeutral[] = {995, 883, 200, 972, 512, 512};
|
||||||
int channelMax[] = {1651, 1540, 1713, 1630, 1472, 1472};
|
int channelMax[] = {1651, 1540, 1713, 1630, 1472, 1472};
|
||||||
@ -16,7 +14,7 @@ SBUS RC(Serial2);
|
|||||||
void setupRC() {
|
void setupRC() {
|
||||||
Serial.println("Setup RC");
|
Serial.println("Setup RC");
|
||||||
RC.begin();
|
RC.begin();
|
||||||
Serial2.setRxInvert(INVERT_SERIAL);
|
Serial2.setRxInvert(true); // SBUS uses inverted signal
|
||||||
}
|
}
|
||||||
|
|
||||||
void readRC() {
|
void readRC() {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user