Page 1 of 1

DShot Implementation

Posted: Sun Jan 13, 2019 12:35 pm
by linuxfpv
First of all, hello forum, it's my first post here.

Maybe some of u will know, what DShot is, some not.
DShot is a digital protocol to communicate with ESC's (electronic speed controller). Sadly there is no official document, but this is the best description i found: https://dmrlawson.co.uk/index.php/2017/ ... -the-dark/.
So this protocol is pretty similar to the one used for WS2812 LED's. The only difference is, that DShot needs to be sent repeatedly, as WS2812 only, when the LED's need to change.

My first implementation is using a UART, where I mimic the timings of 1/4 high and 3/4 low(0) and 3/4 high and 1/4 low. But the problem is, that in this implementation the cpu has to send the bytes to the UART every 250 Microseconds, thus, the ESP crashes with the error: Core 1 panic'ed.

So I'm pretty new to the ESP32 and also never implemented such a protocol before, but my Idea is, that the CPU calculates the Bytes to send, saves it in RAM and then E.g. the message is sent over and over again (without using the CPU), until it is changed by the CPU.
Is this possible, that the DMA-Controller sends the same Bytes repeatedly?

Important to note: I don't want to use bitbanging, as I need to computate other things in parallel.

Best regards,
Linus

Re: DShot Implementation

Posted: Mon Jan 14, 2019 12:50 am
by WiFive

Re: DShot Implementation

Posted: Mon Jan 14, 2019 2:56 am
by ESP_Sprite
Also do take a look at the RMT peripheral, it may do what you need.

Re: DShot Implementation

Posted: Mon Jan 14, 2019 9:44 am
by permal
linuxfpv wrote: ....UART every 250 Microseconds, thus, the ESP crashes with the error: Core 1 panic'ed.
Sending data on UART shouldn't cause a crash, there is something else causing that. And like what ESP_Sprite wrote, the RMT perpherial is good fit for these kinds of tasks.

Re: DShot Implementation

Posted: Mon Jan 14, 2019 9:46 pm
by linuxfpv
Thank u all for u'r suggestions.
Found the problem. I was saving the BaudRate, which needs to be 600k in a uint16_t. Thus, the uart couldn't keep up with the interrupt, causing the crash. I found it by using a oszilloscope and looking on the exact timings. Furthermore, I tested the protocol for the delay between the 2 Bytes and 500Hz Update Rate is more than enough in my case (instead of the 4kHz i found on the internet). If anyone is interested in the code, send me a PN.

Re: DShot Implementation

Posted: Tue Jan 22, 2019 6:48 pm
by HenryHutch
Hi, I am very interested in your code! Unfortunately I can't message you on here because I am a newly subscribed member! Is there any way you could message me first?

Re: DShot Implementation

Posted: Tue May 07, 2019 1:59 am
by Jye___
Another new user here who cannot PM you.

Have you posted your code in a repo? Do you have it working with dshot telemetry?

Ive started to look at it with RMT but am also having difficulties understanding how to receive the dshot telemetry.

http://bbs.esp32.com/viewtopic.php?f=19 ... 6d97af393e

Cheers

Re: DShot Implementation

Posted: Sat Aug 22, 2020 6:32 pm
by clingmanr
linuxfpv wrote:
Mon Jan 14, 2019 9:46 pm
If anyone is interested in the code, send me a PN.
Here is one more new user that would be interested in that code.

Re: DShot Implementation

Posted: Tue Aug 25, 2020 9:23 am
by markxr
I have Dshot working, using the RMT peripheral.

Currently the status is a hacky test-program, but it does the following:

* Initialise a brushless esc settings some parameters
* Send dshot speed commands every few ms
* A UDP socket listener receives UDP packets and changes the motor speed accordingly.

This is a test-program and not indicative of production quality.

https://github.com/MarkR42/robotbits/tr ... /esp32test

Look at motors.c for the Dshot part.