Skip to content

Commit e085602

Browse files
committed
FX816 is not limited to the P38
1 parent dee2521 commit e085602

File tree

4 files changed

+3
-5
lines changed

4 files changed

+3
-5
lines changed

Multiprotocol/E129_cyrf6936.ino

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,6 @@ static void __attribute__((unused)) E129_build_data_packet()
5656
//packet[ 3] = 0x00; // E129 Mode: short press=0x20->0x00->0x20->..., long press=0x10->0x30->0x10->... => C186 throttle trim is doing the same:up=short press and down=long press
5757
packet[ 4] = GET_FLAG(CH5_SW, 0x20) // Take off/Land 0x20
5858
| GET_FLAG(CH6_SW, 0x04); // Emergency stop 0x04
59-
6059
//Channels and trims
6160
uint16_t val = convert_channel_10b(AILERON,false);
6261
uint8_t trim = convert_channel_8b(CH7) & 0xFC;

Multiprotocol/Multi.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@
5555
55,Frsky_RX,Multi,CloneTX,EraseTX,CPPM
5656
56,AFHDS2A_RX,Multi,CPPM
5757
57,HoTT,Sync,No_Sync
58-
58,FX816,P38
58+
58,FX816
5959
59,Bayang_RX,Multi,CPPM
6060
60,Pelikan,Pro,Lite,SCX24
6161
61,Tiger

Multiprotocol/Multi_Protos.ino

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,6 @@ const char STR_SUBTYPE_REDPINE[] = "\x04""Fast""Slow";
141141
const char STR_SUBTYPE_POTENSIC[] = "\x03""A20";
142142
const char STR_SUBTYPE_ZSX[] = "\x07""280JJRC";
143143
const char STR_SUBTYPE_HEIGHT[] = "\x03""5ch""8ch";
144-
const char STR_SUBTYPE_FX816[] = "\x03""P38";
145144
const char STR_SUBTYPE_XN297DUMP[] = "\x07""250Kbps""1Mbps\0 ""2Mbps\0 ""Auto\0 ""NRF\0 ""CC2500\0";
146145
const char STR_SUBTYPE_ESKY150[] = "\x03""4ch""7ch";
147146
const char STR_SUBTYPE_ESKY150V2[] = "\x05""150V2";
@@ -306,7 +305,7 @@ const mm_protocol_definition multi_protocols[] = {
306305
{PROTO_FUTABA, STR_FUTABA, STR_SUBTYPE_FUTABA, 1, OPTION_RFTUNE, 1, 1, SW_CC2500, SFHSS_init, SFHSS_callback },
307306
#endif
308307
#if defined(FX816_NRF24L01_INO)
309-
{PROTO_FX816, STR_FX816, STR_SUBTYPE_FX816, 1, OPTION_NONE, 0, 0, SW_NRF, FX816_init, FX816_callback },
308+
{PROTO_FX816, STR_FX816, NO_SUBTYPE, 0, OPTION_NONE, 0, 0, SW_NRF, FX816_init, FX816_callback },
310309
#endif
311310
#if defined(FY326_NRF24L01_INO)
312311
{PROTO_FY326, STR_FY326, STR_SUBTYPE_FY326, 2, OPTION_NONE, 0, 0, SW_NRF, FY326_init, FY326_callback },

Multiprotocol/Multiprotocol.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
#define VERSION_MAJOR 1
2020
#define VERSION_MINOR 3
2121
#define VERSION_REVISION 3
22-
#define VERSION_PATCH_LEVEL 13
22+
#define VERSION_PATCH_LEVEL 14
2323

2424
#define MODE_SERIAL 0
2525

0 commit comments

Comments
 (0)