
1/ Added Spi that used to read data from AS5045b position sensor 2/ Added Base FOC code to project 3/ Added Standart DSP lib with optimazes sincos cals Need for FOC
18 lines
337 B
C
18 lines
337 B
C
/*
|
||
* ControlFuncs.h
|
||
*
|
||
* Created on: 20 авг. 2023 г.
|
||
* Author: on4ip
|
||
*/
|
||
|
||
#ifndef CONTROLFUNCS_H_
|
||
#define CONTROLFUNCS_H_
|
||
|
||
#include "main.h"
|
||
#include "SystemAPI.h"
|
||
#include "InitDrive.h"
|
||
#include "PositionReg.h"
|
||
|
||
void FAST_loop(SYSTEMobj_st *SYSTEMobj);
|
||
void SLOW_loop(SYSTEMobj_st *SYSTEMobj);
|
||
#endif /* CONTROLFUNCS_H_ */
|