#frame #protocols #speed #command #esc #dshot #d-shot

no-std dshot-frame

Generates frames for the DShot ESC protocol

4 releases

0.1.3 May 25, 2024
0.1.2 May 25, 2024
0.1.1 May 24, 2024
0.1.0 May 24, 2024

#237 in Science

Download history 302/week @ 2024-05-24 12/week @ 2024-05-31 4/week @ 2024-06-07

103 downloads per month

MIT license

10KB
153 lines

DShot Frame

This crate provides support for the DShot ESC protocol.

DShot has two-byte frames, where the first 11 bits are the throttle speed, bit 12 is a telemetry request flag, and the last four bits are a checksum.

Throttle values below 48 are reserved for special commands.

It is transmitted over the wire at a fixed speed, with ones and zeroes both being pulses, but ones being twice as long as zeroes.

Usage

This example is adapted from an embassy-stm32 codebase:

async fn dshot(/* ... */) {
    let mut pwm = SimplePwm::new(
        timer,
        Some(PwmPin::new_ch1(pin, OutputType::PushPull)),
        None,
        None,
        None,
        Hertz(150_000),
        CountingMode::EdgeAlignedUp,
    );
    let max_duty_cycle = pwm.get_max_duty() as u16;

    let frame = Frame::new(1000, false).unwrap();
    pwm.waveform_up(&mut dma, Ch1, &frame.duty_cycles()).await;
    // Pull the line low after sending a frame.
    pwm.set_duty(channel, 0);
    pwm.enable(channel);
}

No runtime deps