AutoQuad ESC32v2

3689464583?profile=original

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.

3689464531?profile=original

3689464635?profile=original

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:

http://code.google.com/p/esc32/

E-mail me when people leave their comments –

You need to be a member of diydrones to add comments!

Join diydrones

Comments

  • I use such high frequency to have enough PWM pulses and thus samples in a communitation phase. If I use 20kHz I only get 5 PWM pulses in one communitation step which is pretty low. I commutate only on the beginning of a PWM period.

     

    Do you have some paper on this method you used or did you design it your self ?

  • Jeroen: ESC32 uses high sample rate ADC of the three phases simultaneously.  The signals are averaged over a sliding window size based on commutation period.  ZC is detected as the floating phase crosses the average of the three.

    Why run PWM out at such a high rate?  The higher, the more switching losses.  Unless you need to run much over 20K RPM, the only lower limiting factor is that you don't want to hear it. I chose 20KHz as a default.

  • Nice work, looking forward to seeing the code.

    I often work with servo drive control software, so I have a feedback device to work with, cool to see how to do it without one :)

     

     

  • That is quiet alot, I thought it was because of the imperfectness of the commercial motors (I use robbe)

    What kind of BEMF/Communitation technique did you use ?
    I sense the BEMF during the on period (with resistor devider without capacitors) and compare them to the bus voltage. And I count the number of PWM periods it takes to detect a zero crossing, and than wait the same amount of PWM pulses before communitating. So if I count 5 PWM pulses before zero crossing I wait another 5 before communitating.

    My pwm runs at 40kHz

  • Lorentz: I work in Rowley's Crossworks IDE.

  • Jeroen: The asymmetry that you show in the video is likely due to your timing advance or lack of it.  Try commutating 5 or 10 electrical degrees earlier.  I suspect the waveform will shift.  I find that 15 deg is good, but higher RPMs will probably need more.

  • Very very cool!

    Bill, do you think it's actually possible to use a single one of these ESC's to run a large helicopter motor?  ~100A?

    I see that you claim they can theoretically support up to 160A.  My 600 Heli actually only averages about 25-40A I think, but I'm using a 100A rated ESC as is the norm.

    Oh, oops, I see 5S is the limit.  Well, there goes that idea.  I'm running 8S. Any chance the hardware is open source, and this thing could be adapted for a high voltage helicopter application?

    I'm very interested in the bi-directional communications ability of this ESC.  I'd been dabbling with the idea of an Arduino-based throttle speed governor, in order to give the Flight Controller (Arducopter) some feedback about the motor status (rotor speed) for a failsafe mode (autogyration on motor failure).  Also, in order to retune the PID speed control loops to be "softer", and employ feed-forward from the collective pitch to maintain performance.

    Anyway, I think this design would eliminate the need for an extra Arduino board to sit between the FC and ESC.

  •  @Bill

    Looks great, which development environment did you use for the code ?

    Thank you

  • Distributor

    Great Stuff, and nice to hear the code is also open source!

  • Been contemplating unloading vicacopter.com, if you're interested in the genuine domain name.

    九乐棋牌官网
    九乐棋牌唯一指定官方网站▲www.9h123.com▲汇集了全网众多棋牌游戏,为您提供九乐棋牌app下载,九乐棋牌游戏玩法,九乐棋牌游戏攻略,可靠的娱乐环境,倾力打造最专业、最好玩的棋牌游戏平台!
This reply was deleted.