You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
value=Channel_data[CH_TAER[idx]]; // -100%..+100% => 1024..1976us and -125%..+125% => 904..2096us based on Redcon 6 channel DSM2 RX
228
246
#else
229
-
if(option & 0x80)
247
+
if(option & MAX_THROW_BIT_MASK)
230
248
value=Channel_data[CH_TAER[idx]]; // -100%..+100% => 1024..1976us and -125%..+125% => 904..2096us based on Redcon 6 channel DSM2 RX
231
249
else
232
250
value=convert_channel_16b_nolimit(CH_TAER[idx],0x156,0x6AA,false); // -100%..+100% => 1100..1900us and -125%..+125% => 1000..2000us based on a DX8 G2 dump
Copy file name to clipboardExpand all lines: Multiprotocol/_Config.h
+4Lines changed: 4 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -296,13 +296,17 @@
296
296
//#define DSM_MAX_THROW
297
297
//Some models (X-Vert, Blade 230S...) require a special value to instant stop the motor(s).
298
298
// You can disable this feature by adding "//" on the line below. You have to specify which channel (14 by default) will be used to kill the throttle channel.
299
+
299
300
// If the channel 14 is above -50% the throttle is untouched but if it is between -50% and -100%, the throttle output will be forced between -100% and -150%.
300
301
// For example, a value of -80% applied on channel 14 will instantly kill the motors on the X-Vert.
301
302
#defineDSM_THROTTLE_KILL_CH 14
302
303
303
304
//Enable DSM Forward Programming
304
305
#defineDSM_FWD_PGM
305
306
307
+
//Enable X-Plus channels, Ch13-16.. if Enabled, will ignore the DSM_THROTTLE_KILL_CH feature
0 commit comments