2 * This file is part of Cleanflight and Betaflight.
4 * Cleanflight and Betaflight are free software. You can redistribute
5 * this software and/or modify this software under the terms of the
6 * GNU General Public License as published by the Free Software
7 * Foundation, either version 3 of the License, or (at your option)
10 * Cleanflight and Betaflight are distributed in the hope that they
11 * will be useful, but WITHOUT ANY WARRANTY; without even the implied
12 * warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
13 * See the GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License
16 * along with this software.
18 * If not, see <http://www.gnu.org/licenses/>.
27 #ifdef USE_DSHOT_BITBANG
29 #include "build/debug.h"
30 #include "build/debug_pin.h"
32 #include "drivers/io.h"
33 #include "drivers/io_impl.h"
34 #include "drivers/dma.h"
35 #include "drivers/dma_reqmap.h"
36 #include "drivers/dshot.h"
37 #include "drivers/dshot_bitbang.h"
38 #include "drivers/dshot_bitbang_impl.h"
39 #include "drivers/dshot_command.h"
40 #include "drivers/motor.h"
41 #include "drivers/nvic.h"
42 #include "drivers/pwm_output.h" // XXX for pwmOutputPort_t motors[]; should go away with refactoring
43 #include "drivers/dshot_dpwm.h" // XXX for motorDmaOutput_t *getMotorDmaOutput(uint8_t index); should go away with refactoring
44 #include "drivers/dshot_bitbang_decode.h"
45 #include "drivers/time.h"
46 #include "drivers/timer.h"
51 // DEBUG_DSHOT_TELEMETRY_COUNTS
52 // 0 - Count of telemetry packets read
53 // 1 - Count of missing edge
54 // 2 - Count of reception not complete in time
55 // 3 - Number of high bits before telemetry start
57 // Maximum time to wait for telemetry reception to complete
58 #define DSHOT_TELEMETRY_TIMEOUT 2000
60 FAST_DATA_ZERO_INIT bbPacer_t bbPacers
[MAX_MOTOR_PACERS
]; // TIM1 or TIM8
61 FAST_DATA_ZERO_INIT
int usedMotorPacers
= 0;
63 FAST_DATA_ZERO_INIT bbPort_t bbPorts
[MAX_SUPPORTED_MOTOR_PORTS
];
64 FAST_DATA_ZERO_INIT
int usedMotorPorts
;
66 FAST_DATA_ZERO_INIT bbMotor_t bbMotors
[MAX_SUPPORTED_MOTORS
];
68 static FAST_DATA_ZERO_INIT
int motorCount
;
69 dshotBitbangStatus_e bbStatus
;
71 // For MCUs that use MPU to control DMA coherency, there might be a performance hit
72 // on manipulating input buffer content especially if it is read multiple times,
73 // as the buffer region is attributed as not cachable.
74 // If this is not desirable, we should use manual cache invalidation.
75 #ifdef USE_DSHOT_CACHE_MGMT
76 #define BB_OUTPUT_BUFFER_ATTRIBUTE DMA_RW_AXI __attribute__((aligned(32)))
77 #define BB_INPUT_BUFFER_ATTRIBUTE DMA_RW_AXI __attribute__((aligned(32)))
80 #define BB_OUTPUT_BUFFER_ATTRIBUTE
81 #define BB_INPUT_BUFFER_ATTRIBUTE
82 #elif defined(STM32F7)
83 #define BB_OUTPUT_BUFFER_ATTRIBUTE FAST_DATA_ZERO_INIT
84 #define BB_INPUT_BUFFER_ATTRIBUTE FAST_DATA_ZERO_INIT
85 #elif defined(STM32H7)
86 #define BB_OUTPUT_BUFFER_ATTRIBUTE DMA_RAM
87 #define BB_INPUT_BUFFER_ATTRIBUTE DMA_RAM
88 #elif defined(STM32G4)
89 #define BB_OUTPUT_BUFFER_ATTRIBUTE FAST_DATA_ZERO_INIT
90 #define BB_INPUT_BUFFER_ATTRIBUTE FAST_DATA_ZERO_INIT
92 #endif // USE_DSHOT_CACHE_MGMT
94 BB_OUTPUT_BUFFER_ATTRIBUTE
uint32_t bbOutputBuffer
[MOTOR_DSHOT_BUF_CACHE_ALIGN_LENGTH
* MAX_SUPPORTED_MOTOR_PORTS
];
95 BB_INPUT_BUFFER_ATTRIBUTE
uint16_t bbInputBuffer
[DSHOT_BB_PORT_IP_BUF_CACHE_ALIGN_LENGTH
* MAX_SUPPORTED_MOTOR_PORTS
];
98 FAST_DATA_ZERO_INIT timeUs_t dshotFrameUs
;
101 const timerHardware_t bbTimerHardware
[] = {
102 #if defined(STM32F4) || defined(STM32F7)
103 #if !defined(STM32F411xE)
104 DEF_TIM(TIM8
, CH1
, NONE
, 0, 1),
105 DEF_TIM(TIM8
, CH2
, NONE
, 0, 1),
106 DEF_TIM(TIM8
, CH3
, NONE
, 0, 1),
107 DEF_TIM(TIM8
, CH4
, NONE
, 0, 0),
109 DEF_TIM(TIM1
, CH1
, NONE
, 0, 1),
110 DEF_TIM(TIM1
, CH1
, NONE
, 0, 2),
111 DEF_TIM(TIM1
, CH2
, NONE
, 0, 1),
112 DEF_TIM(TIM1
, CH3
, NONE
, 0, 1),
113 DEF_TIM(TIM1
, CH4
, NONE
, 0, 0),
115 #elif defined(STM32G4) || defined(STM32H7)
116 // XXX TODO: STM32G4 and STM32H7 can use any timer for pacing
118 // DMA request numbers are duplicated for TIM1 and TIM8:
119 // - Any pacer can serve a GPIO port.
120 // - For quads (or less), 4 pacers can cover the worst case scenario of
121 // 4 motors scattered across 4 different GPIO ports.
122 // - For hexas (and larger), more channels may become necessary,
123 // in which case the DMA request numbers should be modified.
124 DEF_TIM(TIM8
, CH1
, NONE
, 0, 0, 0),
125 DEF_TIM(TIM8
, CH2
, NONE
, 0, 1, 0),
126 DEF_TIM(TIM8
, CH3
, NONE
, 0, 2, 0),
127 DEF_TIM(TIM8
, CH4
, NONE
, 0, 3, 0),
128 DEF_TIM(TIM1
, CH1
, NONE
, 0, 0, 0),
129 DEF_TIM(TIM1
, CH2
, NONE
, 0, 1, 0),
130 DEF_TIM(TIM1
, CH3
, NONE
, 0, 2, 0),
131 DEF_TIM(TIM1
, CH4
, NONE
, 0, 3, 0),
134 #error MCU dependent code required
138 static FAST_DATA_ZERO_INIT motorDevice_t bbDevice
;
139 static FAST_DATA_ZERO_INIT timeUs_t lastSendUs
;
141 static motorPwmProtocolTypes_e motorPwmProtocol
;
143 // DMA GPIO output buffer formatting
145 static void bbOutputDataInit(uint32_t *buffer
, uint16_t portMask
, bool inverted
)
151 resetMask
= portMask
;
152 setMask
= (portMask
<< 16);
154 resetMask
= (portMask
<< 16);
160 for (symbol_index
= 0; symbol_index
< MOTOR_DSHOT_FRAME_BITS
; symbol_index
++) {
161 buffer
[symbol_index
* MOTOR_DSHOT_STATE_PER_SYMBOL
+ 0] |= setMask
; // Always set all ports
162 buffer
[symbol_index
* MOTOR_DSHOT_STATE_PER_SYMBOL
+ 1] = 0; // Reset bits are port dependent
163 buffer
[symbol_index
* MOTOR_DSHOT_STATE_PER_SYMBOL
+ 2] |= resetMask
; // Always reset all ports
167 // output one more 'bit' that keeps the line level at idle to allow the ESC to sample the last bit
169 // Avoid CRC errors in the case of bi-directional d-shot. CRC errors can occur if the output is
170 // transitioned to an input before the signal has been sampled by the ESC as the sampled voltage
171 // may be somewhere between logic-high and logic-low depending on how the motor output line is
172 // driven or floating. On some MCUs it's observed that the voltage momentarily drops low on transition
175 int hold_bit_index
= MOTOR_DSHOT_FRAME_BITS
* MOTOR_DSHOT_STATE_PER_SYMBOL
;
176 buffer
[hold_bit_index
+ 0] |= resetMask
; // Always reset all ports
177 buffer
[hold_bit_index
+ 1] = 0; // Never any change
178 buffer
[hold_bit_index
+ 2] = 0; // Never any change
181 static void bbOutputDataSet(uint32_t *buffer
, int pinNumber
, uint16_t value
, bool inverted
)
186 middleBit
= (1 << (pinNumber
+ 0));
188 middleBit
= (1 << (pinNumber
+ 16));
191 for (int pos
= 0; pos
< 16; pos
++) {
192 if (!(value
& 0x8000)) {
193 buffer
[pos
* 3 + 1] |= middleBit
;
199 static void bbOutputDataClear(uint32_t *buffer
)
201 // Middle position to no change
202 for (int bitpos
= 0; bitpos
< 16; bitpos
++) {
203 buffer
[bitpos
* 3 + 1] = 0;
207 // bbPacer management
209 static bbPacer_t
*bbFindMotorPacer(TIM_TypeDef
*tim
)
211 for (int i
= 0; i
< MAX_MOTOR_PACERS
; i
++) {
213 bbPacer_t
*bbPacer
= &bbPacers
[i
];
215 if (bbPacer
->tim
== NULL
) {
221 if (bbPacer
->tim
== tim
) {
231 static bbPort_t
*bbFindMotorPort(int portIndex
)
233 for (int i
= 0; i
< usedMotorPorts
; i
++) {
234 if (bbPorts
[i
].portIndex
== portIndex
) {
241 static bbPort_t
*bbAllocateMotorPort(int portIndex
)
243 if (usedMotorPorts
>= MAX_SUPPORTED_MOTOR_PORTS
) {
244 bbStatus
= DSHOT_BITBANG_STATUS_TOO_MANY_PORTS
;
248 bbPort_t
*bbPort
= &bbPorts
[usedMotorPorts
];
250 if (!bbPort
->timhw
) {
251 // No more pacer channel available
252 bbStatus
= DSHOT_BITBANG_STATUS_NO_PACER
;
256 bbPort
->portIndex
= portIndex
;
257 bbPort
->owner
.owner
= OWNER_DSHOT_BITBANG
;
258 bbPort
->owner
.resourceIndex
= RESOURCE_INDEX(portIndex
);
265 const timerHardware_t
*dshotBitbangTimerGetAllocatedByNumberAndChannel(int8_t timerNumber
, uint16_t timerChannel
)
267 for (int index
= 0; index
< usedMotorPorts
; index
++) {
268 const timerHardware_t
*bitbangTimer
= bbPorts
[index
].timhw
;
269 if (bitbangTimer
&& timerGetTIMNumber(bitbangTimer
->tim
) == timerNumber
&& bitbangTimer
->channel
== timerChannel
&& bbPorts
[index
].owner
.owner
) {
277 const resourceOwner_t
*dshotBitbangTimerGetOwner(const timerHardware_t
*timer
)
279 for (int index
= 0; index
< usedMotorPorts
; index
++) {
280 const timerHardware_t
*bitbangTimer
= bbPorts
[index
].timhw
;
281 if (bitbangTimer
&& bitbangTimer
== timer
) {
282 return &bbPorts
[index
].owner
;
289 // Return frequency of smallest change [state/sec]
291 static uint32_t getDshotBaseFrequency(motorPwmProtocolTypes_e pwmProtocolType
)
293 switch (pwmProtocolType
) {
294 case(PWM_TYPE_DSHOT600
):
295 return MOTOR_DSHOT600_SYMBOL_RATE
* MOTOR_DSHOT_STATE_PER_SYMBOL
;
296 case(PWM_TYPE_DSHOT300
):
297 return MOTOR_DSHOT300_SYMBOL_RATE
* MOTOR_DSHOT_STATE_PER_SYMBOL
;
299 case(PWM_TYPE_DSHOT150
):
300 return MOTOR_DSHOT150_SYMBOL_RATE
* MOTOR_DSHOT_STATE_PER_SYMBOL
;
304 static void bbSetupDma(bbPort_t
*bbPort
)
306 const dmaIdentifier_e dmaIdentifier
= dmaGetIdentifier(bbPort
->dmaResource
);
307 dmaEnable(dmaIdentifier
);
308 bbPort
->dmaSource
= timerDmaSource(bbPort
->timhw
->channel
);
310 bbPacer_t
*bbPacer
= bbFindMotorPacer(bbPort
->timhw
->tim
);
311 bbPacer
->dmaSources
|= bbPort
->dmaSource
;
313 dmaSetHandler(dmaIdentifier
, bbDMAIrqHandler
, NVIC_BUILD_PRIORITY(2, 1), (uint32_t)bbPort
);
315 bbDMA_ITConfig(bbPort
);
318 FAST_IRQ_HANDLER
void bbDMAIrqHandler(dmaChannelDescriptor_t
*descriptor
)
322 bbPort_t
*bbPort
= (bbPort_t
*)descriptor
->userParam
;
324 bbDMA_Cmd(bbPort
, DISABLE
);
326 bbTIM_DMACmd(bbPort
->timhw
->tim
, bbPort
->dmaSource
, DISABLE
);
328 if (DMA_GET_FLAG_STATUS(descriptor
, DMA_IT_TEIF
)) {
332 DMA_CLEAR_FLAG(descriptor
, DMA_IT_TCIF
);
334 #ifdef USE_DSHOT_TELEMETRY
335 if (useDshotTelemetry
) {
336 if (bbPort
->direction
== DSHOT_BITBANG_DIRECTION_INPUT
) {
337 bbPort
->telemetryPending
= false;
338 #ifdef DEBUG_COUNT_INTERRUPT
341 // Disable DMA as telemetry reception is complete
342 bbDMA_Cmd(bbPort
, DISABLE
);
344 #ifdef DEBUG_COUNT_INTERRUPT
350 bbSwitchToInput(bbPort
);
351 bbPort
->telemetryPending
= true;
353 bbTIM_DMACmd(bbPort
->timhw
->tim
, bbPort
->dmaSource
, ENABLE
);
360 // Setup bbPorts array elements so that they each have a TIM1 or TIM8 channel
361 // in timerHardware array for BB-DShot.
363 static void bbFindPacerTimer(void)
365 for (int bbPortIndex
= 0; bbPortIndex
< MAX_SUPPORTED_MOTOR_PORTS
; bbPortIndex
++) {
366 for (unsigned timerIndex
= 0; timerIndex
< ARRAYLEN(bbTimerHardware
); timerIndex
++) {
367 const timerHardware_t
*timer
= &bbTimerHardware
[timerIndex
];
368 int timNumber
= timerGetTIMNumber(timer
->tim
);
369 if ((motorConfig()->dev
.useDshotBitbangedTimer
== DSHOT_BITBANGED_TIMER_TIM1
&& timNumber
!= 1)
370 || (motorConfig()->dev
.useDshotBitbangedTimer
== DSHOT_BITBANGED_TIMER_TIM8
&& timNumber
!= 8)) {
373 bool timerConflict
= false;
374 for (int channel
= 0; channel
< CC_CHANNELS_PER_TIMER
; channel
++) {
375 const timerHardware_t
*timer
= timerGetAllocatedByNumberAndChannel(timNumber
, CC_CHANNEL_FROM_INDEX(channel
));
376 const resourceOwner_e timerOwner
= timerGetOwner(timer
)->owner
;
377 if (timerOwner
!= OWNER_FREE
&& timerOwner
!= OWNER_DSHOT_BITBANG
) {
378 timerConflict
= true;
383 for (int index
= 0; index
< bbPortIndex
; index
++) {
384 const timerHardware_t
* t
= bbPorts
[index
].timhw
;
385 if (timerGetTIMNumber(t
->tim
) == timNumber
&& timer
->channel
== t
->channel
) {
386 timerConflict
= true;
396 dmaoptValue_t dmaopt
= dmaGetOptionByTimer(timer
);
397 const dmaChannelSpec_t
*dmaChannelSpec
= dmaGetChannelSpecByTimerValue(timer
->tim
, timer
->channel
, dmaopt
);
398 dmaResource_t
*dma
= dmaChannelSpec
->ref
;
400 dmaResource_t
*dma
= timer
->dmaRef
;
402 dmaIdentifier_e dmaIdentifier
= dmaGetIdentifier(dma
);
403 if (dmaGetOwner(dmaIdentifier
)->owner
== OWNER_FREE
) {
404 bbPorts
[bbPortIndex
].timhw
= timer
;
412 static void bbTimebaseSetup(bbPort_t
*bbPort
, motorPwmProtocolTypes_e dshotProtocolType
)
414 uint32_t timerclock
= timerClock(bbPort
->timhw
->tim
);
416 uint32_t outputFreq
= getDshotBaseFrequency(dshotProtocolType
);
417 dshotFrameUs
= 1000000 * 17 * 3 / outputFreq
;
418 bbPort
->outputARR
= timerclock
/ outputFreq
- 1;
420 // XXX Explain this formula
421 uint32_t inputFreq
= outputFreq
* 5 * 2 * DSHOT_BITBANG_TELEMETRY_OVER_SAMPLE
/ 24;
422 bbPort
->inputARR
= timerclock
/ inputFreq
- 1;
426 // bb only use pin info associated with timerHardware entry designated as TIM_USE_MOTOR;
427 // it does not use the timer channel associated with the pin.
430 static bool bbMotorConfig(IO_t io
, uint8_t motorIndex
, motorPwmProtocolTypes_e pwmProtocolType
, uint8_t output
)
432 // Return if no GPIO is specified
437 int pinIndex
= IO_GPIOPinIdx(io
);
438 int portIndex
= IO_GPIOPortIdx(io
);
440 bbPort_t
*bbPort
= bbFindMotorPort(portIndex
);
446 bbPort
= bbAllocateMotorPort(portIndex
);
449 const timerHardware_t
*timhw
= bbPort
->timhw
;
452 const dmaChannelSpec_t
*dmaChannelSpec
= dmaGetChannelSpecByTimerValue(timhw
->tim
, timhw
->channel
, dmaGetOptionByTimer(timhw
));
453 bbPort
->dmaResource
= dmaChannelSpec
->ref
;
454 bbPort
->dmaChannel
= dmaChannelSpec
->channel
;
456 bbPort
->dmaResource
= timhw
->dmaRef
;
457 bbPort
->dmaChannel
= timhw
->dmaChannel
;
461 if (!bbPort
|| !dmaAllocate(dmaGetIdentifier(bbPort
->dmaResource
), bbPort
->owner
.owner
, bbPort
->owner
.resourceIndex
)) {
462 bbDevice
.vTable
.write
= motorWriteNull
;
463 bbDevice
.vTable
.decodeTelemetry
= motorDecodeTelemetryNull
;
464 bbDevice
.vTable
.updateComplete
= motorUpdateCompleteNull
;
469 bbPort
->gpio
= IO_GPIO(io
);
471 bbPort
->portOutputCount
= MOTOR_DSHOT_BUF_LENGTH
;
472 bbPort
->portOutputBuffer
= &bbOutputBuffer
[(bbPort
- bbPorts
) * MOTOR_DSHOT_BUF_CACHE_ALIGN_LENGTH
];
474 bbPort
->portInputCount
= DSHOT_BB_PORT_IP_BUF_LENGTH
;
475 bbPort
->portInputBuffer
= &bbInputBuffer
[(bbPort
- bbPorts
) * DSHOT_BB_PORT_IP_BUF_CACHE_ALIGN_LENGTH
];
477 bbTimebaseSetup(bbPort
, pwmProtocolType
);
478 bbTIM_TimeBaseInit(bbPort
, bbPort
->outputARR
);
479 bbTimerChannelInit(bbPort
);
482 bbDMAPreconfigure(bbPort
, DSHOT_BITBANG_DIRECTION_OUTPUT
);
483 bbDMAPreconfigure(bbPort
, DSHOT_BITBANG_DIRECTION_INPUT
);
485 bbDMA_ITConfig(bbPort
);
488 bbMotors
[motorIndex
].pinIndex
= pinIndex
;
489 bbMotors
[motorIndex
].io
= io
;
490 bbMotors
[motorIndex
].output
= output
;
491 bbMotors
[motorIndex
].bbPort
= bbPort
;
493 IOInit(io
, OWNER_MOTOR
, RESOURCE_INDEX(motorIndex
));
495 // Setup GPIO_MODER and GPIO_ODR register manipulation values
497 bbGpioSetup(&bbMotors
[motorIndex
]);
499 #ifdef USE_DSHOT_TELEMETRY
500 if (useDshotTelemetry
) {
501 bbOutputDataInit(bbPort
->portOutputBuffer
, (1 << pinIndex
), DSHOT_BITBANG_INVERTED
);
505 bbOutputDataInit(bbPort
->portOutputBuffer
, (1 << pinIndex
), DSHOT_BITBANG_NONINVERTED
);
508 bbSwitchToOutput(bbPort
);
510 bbMotors
[motorIndex
].configured
= true;
515 static bool bbTelemetryWait(void)
517 // Wait for telemetry reception to complete
518 bool telemetryPending
;
519 bool telemetryWait
= false;
520 const timeUs_t startTimeUs
= micros();
523 telemetryPending
= false;
524 for (int i
= 0; i
< usedMotorPorts
; i
++) {
525 telemetryPending
|= bbPorts
[i
].telemetryPending
;
528 telemetryWait
|= telemetryPending
;
530 if (cmpTimeUs(micros(), startTimeUs
) > DSHOT_TELEMETRY_TIMEOUT
) {
533 } while (telemetryPending
);
536 DEBUG_SET(DEBUG_DSHOT_TELEMETRY_COUNTS
, 2, debug
[2] + 1);
539 return telemetryWait
;
542 static void bbUpdateInit(void)
544 for (int i
= 0; i
< usedMotorPorts
; i
++) {
545 bbOutputDataClear(bbPorts
[i
].portOutputBuffer
);
549 static bool bbDecodeTelemetry(void)
551 #ifdef USE_DSHOT_TELEMETRY
552 if (useDshotTelemetry
) {
553 #ifdef USE_DSHOT_TELEMETRY_STATS
554 const timeMs_t currentTimeMs
= millis();
557 #ifdef USE_DSHOT_CACHE_MGMT
558 for (int i
= 0; i
< usedMotorPorts
; i
++) {
559 bbPort_t
*bbPort
= &bbPorts
[i
];
560 SCB_InvalidateDCache_by_Addr((uint32_t *)bbPort
->portInputBuffer
, DSHOT_BB_PORT_IP_BUF_CACHE_ALIGN_BYTES
);
563 for (int motorIndex
= 0; motorIndex
< MAX_SUPPORTED_MOTORS
&& motorIndex
< motorCount
; motorIndex
++) {
565 uint32_t rawValue
= decode_bb_bitband(
566 bbMotors
[motorIndex
].bbPort
->portInputBuffer
,
567 bbMotors
[motorIndex
].bbPort
->portInputCount
,
568 bbMotors
[motorIndex
].pinIndex
);
570 uint32_t rawValue
= decode_bb(
571 bbMotors
[motorIndex
].bbPort
->portInputBuffer
,
572 bbMotors
[motorIndex
].bbPort
->portInputCount
,
573 bbMotors
[motorIndex
].pinIndex
);
575 if (rawValue
== DSHOT_TELEMETRY_NOEDGE
) {
576 DEBUG_SET(DEBUG_DSHOT_TELEMETRY_COUNTS
, 1, debug
[1] + 1);
579 DEBUG_SET(DEBUG_DSHOT_TELEMETRY_COUNTS
, 0, debug
[0] + 1);
580 dshotTelemetryState
.readCount
++;
582 if (rawValue
!= DSHOT_TELEMETRY_INVALID
) {
583 // Check EDT enable or store raw value
584 if ((rawValue
== 0x0E00) && (dshotCommandGetCurrent(motorIndex
) == DSHOT_CMD_EXTENDED_TELEMETRY_ENABLE
)) {
585 dshotTelemetryState
.motorState
[motorIndex
].telemetryTypes
= 1 << DSHOT_TELEMETRY_TYPE_STATE_EVENTS
;
587 dshotTelemetryState
.motorState
[motorIndex
].rawValue
= rawValue
;
590 dshotTelemetryState
.invalidPacketCount
++;
592 #ifdef USE_DSHOT_TELEMETRY_STATS
593 updateDshotTelemetryQuality(&dshotTelemetryQuality
[motorIndex
], rawValue
!= DSHOT_TELEMETRY_INVALID
, currentTimeMs
);
597 dshotTelemetryState
.rawValueState
= DSHOT_RAW_VALUE_STATE_NOT_PROCESSED
;
604 static void bbWriteInt(uint8_t motorIndex
, uint16_t value
)
606 bbMotor_t
*const bbmotor
= &bbMotors
[motorIndex
];
608 if (!bbmotor
->configured
) {
612 // fetch requestTelemetry from motors. Needs to be refactored.
613 motorDmaOutput_t
* const motor
= getMotorDmaOutput(motorIndex
);
614 bbmotor
->protocolControl
.requestTelemetry
= motor
->protocolControl
.requestTelemetry
;
615 motor
->protocolControl
.requestTelemetry
= false;
617 // If there is a command ready to go overwrite the value and send that instead
618 if (dshotCommandIsProcessing()) {
619 value
= dshotCommandGetCurrent(motorIndex
);
621 bbmotor
->protocolControl
.requestTelemetry
= true;
625 bbmotor
->protocolControl
.value
= value
;
627 uint16_t packet
= prepareDshotPacket(&bbmotor
->protocolControl
);
629 bbPort_t
*bbPort
= bbmotor
->bbPort
;
631 #ifdef USE_DSHOT_TELEMETRY
632 if (useDshotTelemetry
) {
633 bbOutputDataSet(bbPort
->portOutputBuffer
, bbmotor
->pinIndex
, packet
, DSHOT_BITBANG_INVERTED
);
637 bbOutputDataSet(bbPort
->portOutputBuffer
, bbmotor
->pinIndex
, packet
, DSHOT_BITBANG_NONINVERTED
);
641 static void bbWrite(uint8_t motorIndex
, float value
)
643 bbWriteInt(motorIndex
, lrintf(value
));
646 static void bbUpdateComplete(void)
648 // If there is a dshot command loaded up, time it correctly with motor update
650 if (!dshotCommandQueueEmpty()) {
651 if (!dshotCommandOutputIsEnabled(bbDevice
.count
)) {
656 for (int i
= 0; i
< usedMotorPorts
; i
++) {
657 bbPort_t
*bbPort
= &bbPorts
[i
];
658 #ifdef USE_DSHOT_CACHE_MGMT
659 SCB_CleanDCache_by_Addr(bbPort
->portOutputBuffer
, MOTOR_DSHOT_BUF_CACHE_ALIGN_BYTES
);
662 #ifdef USE_DSHOT_TELEMETRY
663 if (useDshotTelemetry
) {
664 if (bbPort
->direction
== DSHOT_BITBANG_DIRECTION_INPUT
) {
665 bbPort
->inputActive
= false;
666 bbSwitchToOutput(bbPort
);
672 // Using circular mode resets the counter one short, so explicitly reload
673 bbSwitchToOutput(bbPort
);
677 bbDMA_Cmd(bbPort
, ENABLE
);
680 lastSendUs
= micros();
681 for (int i
= 0; i
< usedMotorPacers
; i
++) {
682 bbPacer_t
*bbPacer
= &bbPacers
[i
];
683 bbTIM_DMACmd(bbPacer
->tim
, bbPacer
->dmaSources
, ENABLE
);
687 static bool bbEnableMotors(void)
689 for (int i
= 0; i
< motorCount
; i
++) {
690 if (bbMotors
[i
].configured
) {
691 IOConfigGPIO(bbMotors
[i
].io
, bbMotors
[i
].iocfg
);
697 static void bbDisableMotors(void)
702 static void bbShutdown(void)
707 static bool bbIsMotorEnabled(uint8_t index
)
709 return bbMotors
[index
].enabled
;
712 static void bbPostInit(void)
716 for (int motorIndex
= 0; motorIndex
< MAX_SUPPORTED_MOTORS
&& motorIndex
< motorCount
; motorIndex
++) {
718 if (!bbMotorConfig(bbMotors
[motorIndex
].io
, motorIndex
, motorPwmProtocol
, bbMotors
[motorIndex
].output
)) {
723 bbMotors
[motorIndex
].enabled
= true;
725 // Fill in motors structure for 4way access (XXX Should be refactored)
727 motors
[motorIndex
].enabled
= true;
731 static motorVTable_t bbVTable
= {
732 .postInit
= bbPostInit
,
733 .enable
= bbEnableMotors
,
734 .disable
= bbDisableMotors
,
735 .isMotorEnabled
= bbIsMotorEnabled
,
736 .telemetryWait
= bbTelemetryWait
,
737 .decodeTelemetry
= bbDecodeTelemetry
,
738 .updateInit
= bbUpdateInit
,
740 .writeInt
= bbWriteInt
,
741 .updateComplete
= bbUpdateComplete
,
742 .convertExternalToMotor
= dshotConvertFromExternal
,
743 .convertMotorToExternal
= dshotConvertToExternal
,
744 .shutdown
= bbShutdown
,
747 dshotBitbangStatus_e
dshotBitbangGetStatus(void)
752 motorDevice_t
*dshotBitbangDevInit(const motorDevConfig_t
*motorConfig
, uint8_t count
)
757 motorPwmProtocol
= motorConfig
->motorPwmProtocol
;
758 bbDevice
.vTable
= bbVTable
;
760 bbStatus
= DSHOT_BITBANG_STATUS_OK
;
762 #ifdef USE_DSHOT_TELEMETRY
763 useDshotTelemetry
= motorConfig
->useDshotTelemetry
;
766 memset(bbOutputBuffer
, 0, sizeof(bbOutputBuffer
));
768 for (int motorIndex
= 0; motorIndex
< MAX_SUPPORTED_MOTORS
&& motorIndex
< motorCount
; motorIndex
++) {
769 const unsigned reorderedMotorIndex
= motorConfig
->motorOutputReordering
[motorIndex
];
770 const timerHardware_t
*timerHardware
= timerGetConfiguredByTag(motorConfig
->ioTags
[reorderedMotorIndex
]);
771 const IO_t io
= IOGetByTag(motorConfig
->ioTags
[reorderedMotorIndex
]);
773 uint8_t output
= motorConfig
->motorPwmInversion
? timerHardware
->output
^ TIMER_OUTPUT_INVERTED
: timerHardware
->output
;
774 bbPuPdMode
= (output
& TIMER_OUTPUT_INVERTED
) ? BB_GPIO_PULLDOWN
: BB_GPIO_PULLUP
;
776 #ifdef USE_DSHOT_TELEMETRY
777 if (useDshotTelemetry
) {
778 output
^= TIMER_OUTPUT_INVERTED
;
782 if (!IOIsFreeOrPreinit(io
)) {
783 /* not enough motors initialised for the mixer or a break in the motors */
784 bbDevice
.vTable
.write
= motorWriteNull
;
785 bbDevice
.vTable
.decodeTelemetry
= motorDecodeTelemetryNull
;
786 bbDevice
.vTable
.updateComplete
= motorUpdateCompleteNull
;
787 bbStatus
= DSHOT_BITBANG_STATUS_MOTOR_PIN_CONFLICT
;
791 int pinIndex
= IO_GPIOPinIdx(io
);
793 bbMotors
[motorIndex
].pinIndex
= pinIndex
;
794 bbMotors
[motorIndex
].io
= io
;
795 bbMotors
[motorIndex
].output
= output
;
797 bbMotors
[motorIndex
].iocfg
= IO_CONFIG(GPIO_Mode_OUT
, GPIO_Speed_50MHz
, GPIO_OType_PP
, bbPuPdMode
);
798 #elif defined(STM32F7) || defined(STM32G4) || defined(STM32H7)
799 bbMotors
[motorIndex
].iocfg
= IO_CONFIG(GPIO_MODE_OUTPUT_PP
, GPIO_SPEED_FREQ_LOW
, bbPuPdMode
);
802 IOInit(io
, OWNER_MOTOR
, RESOURCE_INDEX(motorIndex
));
803 IOConfigGPIO(io
, bbMotors
[motorIndex
].iocfg
);
804 if (output
& TIMER_OUTPUT_INVERTED
) {
810 // Fill in motors structure for 4way access (XXX Should be refactored)
811 motors
[motorIndex
].io
= bbMotors
[motorIndex
].io
;
817 #endif // USE_DSHOT_BB