I wanted to bring everyone up to date on where the ESC32 development is at this point. After a lot of testing of the version 1 design, we found that operating under high current situations, current spikes caused by commutation were introducing a lot of noise on the digital side of things. In the worse cases, this could lead to clocking issues causing the MCU to reset or worse, lock up. Of course if that happens you will likely cook a motor.
So, back to the drawing board (CAD actually). After a lot of trial and error, I came up with the version 2 design. It manages to keep the high current paths much shorter and thicker as well as keeping the analog and digital ground planes completely separate. This new approach is now working quite well with as much current as the FETs will handle. I took this re-design opportunity to add CAN Bus support with an optional CAN transceiver chip onboard. Additionally an external shunt resistor was added to improve the accuracy of current measurements over the original internal PCB trace shunt. All of this without loosing any prior interfaces or functionality.
During the same time a lot of work went into improving the firmware's operation and adding new features.
The CLI has been expanded and gives you access to all tunable parameters via the UART port. There is also a binary protocol for high speed machine to machine communications up to 921600 baud. And now Dallas Semiconductor's 1-wire protocol is supported over the PWM IN port. This means that the flight controller can bi-directionally communicate with the ESC over the existing PWM IN lines. This can be useful for setting run modes and parameters pre-flight or downloading operational data post-flight. Anytime the ESC is not in the run state, communications can take place. There is a future opportunity to allow firmware updates over the 1-wire protocol as well.
Closed loop RPM mode has been implemented. The idea is that the throttle maps to RPM directly in a linear fashion and the ESC works to achieve and maintain the requested RPM with a closed loop controller onboard running at 1KHz. The ESC utilizes a feed forward augmented PI controller to get you to the requested set point as quickly as possible but still remaining within the set current limit. There is also an experimental regenerative braking feature which takes excess motor speed and turns it into current flowing back into the battery. Closed loop mode can be very useful when implementing advanced predictive attitude controllers on the FC which will require consistent, predictable performance from the motors.
Another interesting feature is what I call the virtual current limiter. The problem with a lot of hobby ESCs is that they have to be careful of how much current they allow the motor to draw during acceleration events. Most of them use some sort of throttle filtering or smoothing to limit the throttle increases allowed at each time step. The amount of current drawn by the motor depends on the motor's size, RPM and prop load which is not known by the ESC and most do not have a current sensor. Since there is no way to know how much is too much, they have to settle on a conservative approach to avoid frying motors or FETs. This will ultimately limit the throttle response to something less than optimal and for multi-rotors, this is undesirable.
My solution to this problem was to give the user a way to profile the motor and prop being used on the bench. This data can also be looked up from a database that is being compiled of known motor/prop configurations. With this information, the onboard current limiter can pre-calculate how much current a given throttle (voltage) request will take at the current RPM, and if it would result in an over current situation, the implemented throttle request is trimmed to fit under the limit. As the motor speeds up, the current demand drops even if the requested throttle has not changed so the limit is re-evaluated at 1KHz trying to give the maximum amount of acceleration possible with the given restrictions. The results are the fastest throttle response possible while staying under the set current limit. Finally, if the profiling parameters have not yet been set, a regular PI controller is used to limit current. It is still better than throttle filtering methods, but not as good as the virtual current limiter as it is a reactionary strategy.
There are now also a lot of tunable parameters which allow the ESC to be used for non-standard applications. For instance, if you are using PWM IN for control, you can design custom parameters for the pulse width and waveform period. Current limits, start voltages, PWM output frequency many other settings can be made from the CLI, binary or 1-wire interfaces and stored in flash memory for future power ups.
I'm sure the first question will be how much current can they handle. The truth is I don't really know. According to their data sheet, the FETs are capable of 160A continuous. As a practical matter, there is no way you could come close to dissipating the amount of heat that would be generated at those levels. With large heat sinks you could probably run them over 50A continuous, but without any heat sinks the limit will be significantly less. In the end, the limiting factor is simply cooling. If you can get them into some prop wash or rig some sort of small heat sink your results will improve. I've been flying them for for more than 6 months with no heat sink at all, but my machines typically weigh less than 3Kg. As we get more test data in we will be better able to characterize the actual limits.
I'd like to thank all of the people who have helped test and even blown up motors to make this ESC possible.
ESC32 v2 specifications and features:
- STM32F103 72MHz 32bit ARM
- All N-FET design with gate drivers
- 2S through 5S battery voltage
- Option to power logic side via UART or PWM IN +5v
- CAN transceiver hardware support onboard
- Firmware written completely in C
- ARM Cortex SWD connector pads for real-time debugging
- Communications ports: PWM IN / UART / I2C / CAN Bus
- Communications protocols: PWM IN / CLI / binary / 1-wire / I2C** / CAN**
- 4KHz to 64KHz PWM out
- Current sensing / limiting with real shunt resistor
- Closed loop control modes
- Virtual current limiter
- Regenerative braking (experimental)
- Lot of available RAM / FLASH for experimentation and development
* rendering by Max Levine
** I2C and CAN drivers have not yet been written
Finally I have decided to release the source code under an open source license. Hopefully talented individuals will be able to help design new features and functions that everyone can use:
Comment by Bill Nesbitt on July 1, 2012 at 11:10am Michael: I've sketched up a heat sink design which would hold the ESC by the FETs and gate drivers allowing it to be attached to an arm. A friend with a CNC machine is manufacturing some prototypes now. We'll see how well it works.
Comment by Bill Nesbitt on July 1, 2012 at 11:12am Jeroen: Scanning through the app note, yes it looks like it is quite similar to my technique. I did not need to use a fancy IIR filter, only a variable sized moving average. The algorithm is able to spin a motor down to around 100 RPM before the BEMF signal is lost in noise.
Comment by Jeroen van de Mortel on July 1, 2012 at 11:20am Bill,
I oke I thought so, I now only sense on the PWM on time (in the futher maybe also during off time) this leads to a minimum duty cycle and also a minimum RPM of 1500. I saw in a video of the autoquad team indeed 100 RPM that is nice. although I question if needed in a quad :P.
I trying to see if I can program the same algorithm and to see which one is the best. For me it is just a hobby and learning experiance (no commercial plans).
Did you also used gate resistors ? The problem with switching so fast that it introduces quiet alot of EMI, and you probaly don't need to switch that fast because the switching losses for 20kHz are negligible to the conductions losses. I use gate drivers with P and N-fets.
Comment by Bill Nesbitt on July 1, 2012 at 11:24am V1 did not use gate resistor, but I added them to v2 (only on the high side) in an effort to quash the noise as much as possible. I don't think the are absolutely necessary, but...
Comment by Jeroen van de Mortel on July 1, 2012 at 12:07pm At the company I work we also made a BLDC driver for a customer, at first we didn't had any gate resistors.
Because of that the board failed on EMC. After adding them, the EMC test passed and got better stability controlling the motor.
Comment by Nick Arsov on July 1, 2012 at 12:13pm I use to use SMD ferrite beads....appr. 10-20R DC resistance....nice pulses, low EMI.
Comment by Jeroen van de Mortel on July 1, 2012 at 12:28pm I don't think it is smart to use bead instead of resistors, because you are adding inductance to gate capacitance which could cause ringing.
But 10 to 20 ohms gate resistance is quiet large. Normally it is in the order of 2.2E and 10E.
And sometimes a diode is used for the switching off. But that is more for high voltage fets.
Comment by Jeroen van de Mortel on July 1, 2012 at 12:33pm Did you use 2 or 4 layer PCB with v1/v2 ?
Comment by Bill Nesbitt on July 1, 2012 at 12:48pm I could find absolutely no way to fit it into two layers. Had to go 4.
Comment by Ilya R. on July 3, 2012 at 12:37am Any thoughts about putting four ESCs onto one board? There could be efficiencies to be gained by doing this, such as needing only one 5V power source, using a single MCU, and simplifying power and data routing.
Season Two of the Trust Time Trial (T3) Contest has now begun. The fourth round is an accuracy round for multicopters, which requires contestants to fly a cube. The deadline is April 14th.88 members
24 members
58 members
1355 members
207 members
© 2013 Created by Chris Anderson.
Powered by

You need to be a member of DIY Drones to add comments!
Join DIY Drones