|
|
|
|
|
|
||||
|
Joined Dec 2010
136 Posts
|
Quote:
im not good with assembly .. but i also build a ESC atm. ..the startup works smooth with about 25% PWM (depending on input voltage) i dont did anything special. so here is generally how i do it:Code:
rotorState = 0
startup(){
if(rotorState == 0){
commutateStep_0;
setADCsForBackEMF_1;
rotorState = 1;
}else if(rotorState == 1){
commutateStep1;
setADCsForBackEMF_2;
rotorState = 2;
} .. so on
}
so: Code:
compInterrupt(){ // backEMF interrupt
if(startup){
if(edge != exepted edge) return;
delay 5us;
if(edge != exepted edge) return;
delay 5us;
if(edge != exepted edge) return;
}
...
}
here is a video .. active freewheel works also .. as you can see on the voltage display :P (the power supply dont likes it)
regards felix |
|||
|
|
|
|
|
Does anybody use any BLDC development kit?
I'm thinking about using this TI kit: https://estore.ti.com/DK-LM4F-DRV831...MCU-P3033.aspx Thoughts? |
|
|
|
| Thread Tools | |
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Brushless speed control problem | TomL | Sport Planes | 8 | Jun 08, 2003 01:23 AM |
| TMM-18-3ph Brushless Speed Control | nelsonjo1 | Power Systems | 5 | Apr 04, 2003 12:33 AM |
| FS: Model Motors 40 amp Brushless Speed Control. | Jim McPherson | Aircraft - Electric - Airplanes (FS/W) | 3 | Dec 10, 2002 05:02 PM |
| Dragon 35 brushless speed control | Steve H. | Aircraft - Electric - Airplanes (FS/W) | 0 | Aug 17, 2002 12:29 AM |
| Hooking up a Jeti Brushless Speed Control to a Jeti Pashor 15/4 motor. HELP!!! | Rob R | Power Systems | 3 | Jan 10, 2002 06:37 PM |