Skip to content

Commit a5cc565

Browse files
committed
fix: Disable DShot 600 support on BB1 (L) ESCs
Avoid using a suboptimal performing configuration
1 parent fff71d4 commit a5cc565

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

Bluejay.asm

+3-1
Original file line numberDiff line numberDiff line change
@@ -3744,7 +3744,8 @@ ENDIF
37443744
mov A, Rcp_Outside_Range_Cnt ; Check if pulses were accepted
37453745
jz arming_begin
37463746

3747-
; Setup variables for DShot600
3747+
; Setup variables for DShot600 (Only on 48MHz for performance reasons)
3748+
IF MCU_48MHZ == 1
37483749
mov DShot_Timer_Preset, #-64 ; Load DShot sync timer preset (for DShot600)
37493750
mov DShot_Pwm_Thr, #8 ; Load DShot pwm threshold (for DShot600)
37503751
mov DShot_Frame_Length_Thr, #40 ; Load DShot frame length criteria
@@ -3756,6 +3757,7 @@ ENDIF
37563757
call wait100ms ; Wait for new RC pulse
37573758
mov A, Rcp_Outside_Range_Cnt ; Check if pulses were accepted
37583759
jz arming_begin
3760+
ENDIF
37593761

37603762
ljmp init_no_signal
37613763

0 commit comments

Comments
 (0)