We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5437d88 commit fa055e9Copy full SHA for fa055e9
Multiprotocol/Kyosho3_cyrf6936.ino
@@ -112,7 +112,10 @@ void KYOSHO3_init()
112
debugln("RF CH: %02X",hopping_frequency[0]);
113
#endif
114
115
- CYRF_ConfigRFChannel(hopping_frequency[0]);
+ if(IS_BIND_IN_PROGRESS)
116
+ CYRF_ConfigRFChannel(0x04);
117
+ else
118
+ CYRF_ConfigRFChannel(hopping_frequency[0]);
119
120
bind_counter = 8217;
121
phase = 0;
Multiprotocol/Multiprotocol.h
@@ -19,7 +19,7 @@
19
#define VERSION_MAJOR 1
20
#define VERSION_MINOR 3
21
#define VERSION_REVISION 4
22
-#define VERSION_PATCH_LEVEL 41
+#define VERSION_PATCH_LEVEL 42
23
24
#define MODE_SERIAL 0
25
0 commit comments