Skip to content

Commit d8c3013

Browse files
committed
MoFly protocol
1 parent b5e140b commit d8c3013

7 files changed

Lines changed: 32 additions & 25 deletions

File tree

Lua_scripts/MultiChan.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -201,7 +201,7 @@
201201
62,0,XK,X450,1,FMode,TakeOf,Emerg,3D_6G,Pict,Video
202202
62,1,XK,X420,1,FMode,TakeOf,Emerg,3D_6G,Pict,Video,Flip,Light
203203
62,2,XK,Cars,0,FMode,TakeOf,Emerg,3D_6G,Pict,Video,Flip,Light
204-
62,3,XK,MoFly,0,FMode,Rate,BFlip,LRoll,RRoll,Invert
204+
109,0,MoFly,Std,0,FMode,Rate,BFlip,LRoll,RRoll,Invert
205205
99,0,XK2,X4,0,Rate,Mode,Hover,Light,Stunt
206206
99,1,XK2,P10,0,Rate,Mode,Hover,Light,Stunt
207207
8,0,YD717,Std,1,Flip,Light,Pict,Video,HLess

Multiprotocol/Multi.txt

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@
5959
59,Bayang_RX,Multi,CPPM
6060
60,Pelikan,Pro,Lite,SCX24
6161
61,EazyRC
62-
62,XK,X450,X420,Cars,MoFly
62+
62,XK,X450,X420,Cars
6363
63,XN_DUMP,250K,1M,2M,AUTO
6464
64,FrskyX2,CH_16,CH_8,EU_16,EU_8,Cloned
6565
65,FrSkyR9,915MHz,868MHz,915_8ch,868_8ch,FCC,--,FCC_8ch,--_8ch
@@ -103,4 +103,5 @@
103103
105,Shenqi2
104104
106,WL91x
105105
107,WPL
106-
108,0,Ares
106+
108,Ares
107+
109,MoFly

Multiprotocol/Multi_Protos.ino

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -84,6 +84,7 @@ const char STR_FX[] ="FX";
8484
const char STR_BAYANG_RX[] ="BayanRX";
8585
const char STR_PELIKAN[] ="Pelikan";
8686
const char STR_XK[] ="XK";
87+
const char STR_MOFLY[] ="MoFly";
8788
const char STR_XK2[] ="XK2";
8889
const char STR_XN297DUMP[] ="XN297DP";
8990
const char STR_FRSKYR9[] ="FrSkyR9";
@@ -170,7 +171,7 @@ const char STR_SUBTYPE_XN297DUMP[] = "\x07""250Kbps""1Mbps\0 ""2Mbps\0 ""Auto\0
170171
const char STR_SUBTYPE_ESKY150[] = "\x03""4ch""7ch";
171172
const char STR_SUBTYPE_ESKY150V2[] = "\x05""150V2";
172173
const char STR_SUBTYPE_V911S[] = "\x05""V911S""E119\0";
173-
const char STR_SUBTYPE_XK[] = "\x05""X450\0""X420\0""Cars\0""MoFly";
174+
const char STR_SUBTYPE_XK[] = "\x05""X450\0""X420\0""Cars\0";
174175
const char STR_SUBTYPE_XK2[] = "\x03""X4\0""P10";
175176
const char STR_SUBTYPE_FRSKYR9[] = "\x07""915MHz\0""868MHz\0""915 8ch""868 8ch""FCC\0 ""--\0 ""FCC 8ch""-- 8ch\0";
176177
const char STR_SUBTYPE_ESKY[] = "\x03""Std""ET4";
@@ -431,6 +432,9 @@ const mm_protocol_definition multi_protocols[] = {
431432
#if defined(MLINK_CYRF6936_INO)
432433
{PROTO_MLINK, STR_MLINK, NO_SUBTYPE, 0, OPTION_NONE, 1, 0, SW_CYRF, MLINK_init, MLINK_callback },
433434
#endif
435+
#if defined(XK_CCNRF_INO)
436+
{PROTO_MOFLY, STR_MOFLY, NO_SUBTYPE, 0, OPTION_RFTUNE, 0, 0, SW_NRF, XK_init, XK_callback },
437+
#endif
434438
#if defined(MOULDKG_NRF24L01_INO)
435439
{PROTO_MOULDKG, STR_MOULDKG, STR_SUBTYPE_MOULDKG, 3, OPTION_OPTION, 0, 0, SW_NRF, MOULDKG_init, MOULDKG_callback },
436440
#endif
@@ -532,7 +536,7 @@ const mm_protocol_definition multi_protocols[] = {
532536
{PROTO_XERALL, STR_XERALL, NO_SUBTYPE, 0, OPTION_NONE, 0, 0, SW_NRF, XERALL_init, XERALL_callback },
533537
#endif
534538
#if defined(XK_CCNRF_INO)
535-
{PROTO_XK, STR_XK, STR_SUBTYPE_XK, 4, OPTION_RFTUNE, 0, 0, SW_NRF, XK_init, XK_callback },
539+
{PROTO_XK, STR_XK, STR_SUBTYPE_XK, 3, OPTION_RFTUNE, 0, 0, SW_NRF, XK_init, XK_callback },
536540
#endif
537541
#if defined(XK2_CCNRF_INO)
538542
{PROTO_XK2, STR_XK2, STR_SUBTYPE_XK2, 2, OPTION_RFTUNE, 0, 0, SW_NRF, XK2_init, XK2_callback },

Multiprotocol/Multiprotocol.h

Lines changed: 2 additions & 2 deletions
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 4
22-
#define VERSION_PATCH_LEVEL 68
22+
#define VERSION_PATCH_LEVEL 69
2323

2424
#define MODE_SERIAL 0
2525

@@ -136,6 +136,7 @@ enum PROTOCOLS
136136
PROTO_WL91X = 106, // =>CC2500 & NRF24L01
137137
PROTO_WPL = 107, // =>NRF24L01
138138
PROTO_ARES = 108, // =>CC2500
139+
PROTO_MOFLY = 109, // =>CC2500 & NRF24L01
139140

140141
PROTO_NANORF = 126, // =>NRF24L01
141142
PROTO_TEST = 127, // =>CC2500
@@ -393,7 +394,6 @@ enum XK
393394
X450 = 0,
394395
X420 = 1,
395396
XK_CARS = 2,
396-
MOFLY = 3,
397397
};
398398
enum XN297DUMP
399399
{

Multiprotocol/XK_ccnrf.ino

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ static void __attribute__((unused)) XK_send_packet()
6868
memset(packet,0x00,7);
6969
memset(&packet[10],0x00,5);
7070

71-
if(sub_protocol != MOFLY)
71+
if(protocol != PROTO_MOFLY)
7272
{
7373
packet[12]=0x40;
7474
packet[13]=0x40;
@@ -218,7 +218,7 @@ static void __attribute__((unused)) XK_initialize_txid()
218218

219219
static void __attribute__((unused)) XK_RF_init()
220220
{
221-
XN297_Configure(XN297_CRCEN, XN297_SCRAMBLED, (sub_protocol==X450||sub_protocol==MOFLY) ? XN297_250K : XN297_1M );
221+
XN297_Configure(XN297_CRCEN, XN297_SCRAMBLED, sub_protocol==X450 ? XN297_250K : XN297_1M ); //MoFly equals to X450 here
222222
XN297_SetTXAddr((uint8_t*)"\x68\x94\xA6\xD5\xC3", 5); // Bind address
223223
XN297_HoppingCalib(XK_RF_BIND_NUM_CHANNELS+XK_RF_NUM_CHANNELS); // Calibrate all channels
224224
}
@@ -240,7 +240,7 @@ uint16_t XK_callback()
240240

241241
void XK_init()
242242
{
243-
if(sub_protocol != XK_CARS)
243+
if(sub_protocol != XK_CARS && protocol != PROTO_MOFLY)
244244
BIND_IN_PROGRESS; // Autobind protocol
245245
XK_initialize_txid();
246246
XK_RF_init();

Multiprotocol/_Config.h

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -281,7 +281,7 @@
281281
#define UDIRC_CCNRF_INO
282282
#define V911S_CCNRF_INO
283283
#define WL91X_CCNRF_INO
284-
#define XK_CCNRF_INO
284+
#define XK_CCNRF_INO //Include MoFly protocol
285285
#define XK2_CCNRF_INO
286286

287287
//The protocols below need a SX1276 to be installed
@@ -789,6 +789,8 @@ const PPM_Parameters PPM_prot[14*NBR_BANKS]= {
789789
PHOENIX
790790
PROTO_MLINK
791791
NONE
792+
PROTO_MOFLY
793+
NONE
792794
PROTO_MOULDKG
793795
MOULDKG_ANALOG4
794796
MOULDKG_DIGIT4
@@ -901,7 +903,6 @@ const PPM_Parameters PPM_prot[14*NBR_BANKS]= {
901903
X450
902904
X420
903905
XK_CARS
904-
MOFLY
905906
PROTO_XK2
906907
XK2_X4
907908
XK2_P10

Protocols_Details.md

Lines changed: 14 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -126,6 +126,7 @@ CFlie|AIR|38|CFlie||||||||NRF24L01|
126126
[Losi](Protocols_Details.md#Losi---89)||89|||||||||CYRF6936|
127127
[MJXq](Protocols_Details.md#MJXQ---18)||18|WLH08|X600|X800|H26D|E010*|H26WH|PHOENIX*||NRF24L01|XN297
128128
[MLINK](Protocols_Details.md#MLINK---78)||78|||||||||CYRF6936|
129+
[MoFly](Protocols_Details.md#MoFly---109)||109|||||||||NRF24L01&CC2500|XN297
129130
[MouldKg](Protocols_Details.md#mouldkg---90)||90|A4444|D4444|A664||||||NRF24L01|XN297
130131
[MT99xx](Protocols_Details.md#MT99XX---17)||17|MT|H7|YZ|LS|FY805|A180|DRAGON|F949G|NRF24L01|XN297
131132
[MT99xx2](Protocols_Details.md#MT99XX2---92)||92|PA18|SU35|||||||NRF24L01|XN297
@@ -1257,6 +1258,19 @@ If a CC2500 is installed it will be used for this sub protocol. Option in this c
12571258

12581259
If only a NRF24L01 is installed then this sub protocol might be problematic because it is using the xn297L emulation with a transmission speed of 250kbps which doesn't work very well with every NRF24L01, this is an hardware issue with the authenticity and accuracy of the components.
12591260

1261+
## MoFly - *109*
1262+
Models: MoFly planes MF-X7, P-51D, MF-A84 and Ki-84
1263+
1264+
If a CC2500 is installed it will be used for this sub protocol. Option in this case is used for fine frequency tuning like any CC2500 protocols so check the [Frequency Tuning page](/docs/Frequency_Tuning.md).
1265+
1266+
If only a NRF24L01 is installed then this sub protocol might be problematic because it is using the xn297L emulation with a transmission speed of 250kbps which doesn't work very well with every NRF24L01, this is an hardware issue with the authenticity and accuracy of the components.
1267+
1268+
CH1|CH2|CH3|CH4|CH5|CH6|CH7|CH8|CH9|CH10
1269+
---|---|---|---|---|---|---|---|---|----
1270+
A|E|T|R|Flight_modes|Rate_L/H|Back_Flip|Left_Roll|Right_Roll|Inverted
1271+
1272+
Flight_modes: -100%=MM-Mode, 0%=3D-Mode, +100%=6G-Mode. CH7-CH9 are momentary switches. CH10 is a toggle switch.
1273+
12601274
## MT99XX - *17*
12611275
Autobind protocol
12621276

@@ -1627,19 +1641,6 @@ A|E|T|R|FLIP|LIGHT
16271641
### Sub_protocol Cars - *2*
16281642
Models: WLtoys cars 284131/284161/284010/124016/124017/144010 and Eachine EAT14
16291643

1630-
### Sub_protocol MoFly - *3*
1631-
Models: MoFly planes
1632-
1633-
If a CC2500 is installed it will be used for this sub protocol. Option in this case is used for fine frequency tuning like any CC2500 protocols so check the [Frequency Tuning page](/docs/Frequency_Tuning.md).
1634-
1635-
If only a NRF24L01 is installed then this sub protocol might be problematic because it is using the xn297L emulation with a transmission speed of 250kbps which doesn't work very well with every NRF24L01, this is an hardware issue with the authenticity and accuracy of the components.
1636-
1637-
CH1|CH2|CH3|CH4|CH5|CH6|CH7|CH8|CH9|CH10
1638-
---|---|---|---|---|---|---|---|---|----
1639-
A|E|T|R|Flight_modes|Rate_L/H|Back_Flip|Left_Roll|Right_Roll|Inverted
1640-
1641-
Flight_modes: -100%=MM-Mode, 0%=3D-Mode, +100%=6G-Mode. CH7-CH9 are momentary switches. CH10 is a toggle switch.
1642-
16431644
## XK2 - *99*
16441645

16451646
You must assign a different RX number for each receiver/plane. Otherwise the new receiver/plane ID will overwrite the previous one.

0 commit comments

Comments
 (0)