I have "Nucleo F303-RE" and "STEVAL-IPM15B" .( and some custom PCB which are not important in this question)So I have connected 2 board together and test two BLDC motor . And run first bldc and everything works good and get me detail about motor ( Rs...
So we have "Over Current Protection" part in Motor Control Workbench . but it seems it needs an external circuit on board to sense current , and there is 2 question here :1- what circuit should I use and where should the output of that circuit be con...
What is the type of right motor in picture ? both of them are brushless yes ? but what kind of brushless exactly ? pmsm ,blac , ... ?Is the right motor Stepper ? what is that notch at top of it's stator winding for ?
I have an assembly file which contains something like : AREA |.text|, CODE, READONLY, ALIGN=2
THUMB
EXTERN currentPt
EXPORT SysTick_Handler
EXPORT osSchedulerLaunch
.
.
.
;some code here
.
.
ALIGN
ENDwhich compile and work in keil . but ...
Hi .Below code has two part :1- when there is response to CMD8 2- when there is notAnd by this response we can determine if it is V1 or V2 but , when it will go for Initializing V2 after sending first ACMD41 then there is an "if" clause ,which will c...
Thank you guys both . It's a customized PCB which does not have extra op-amp for OCP . So I've used Ia and Ib for protection (As we know it is not best way to do this ).So I know what we should do in next pcb design . I have another problem with Moto...
find out by adding these:.syntax unified
.cpu cortex-m7
.fpu softvfp
.thumband changing function to something like this :.section .text.osSchedulerLaunch
.weak osSchedulerLaunch
.type osSchedulerLaunch, %functionit will compile if I remove "Systick...