37 lines
234 B
C
37 lines
234 B
C
|
#ifndef MOTOR_CONTROL_TASK_H__
|
||
|
#define MOTOR_CONTROL_TASK_H__
|
||
|
|
||
|
#include <appConfig.h>
|
||
|
#include <softTimerTask.h>
|
||
|
#include <systick_device.h>
|
||
|
#include <taskManager.h>
|
||
|
|
||
|
|
||
|
|
||
|
void MotorCtrl_TaskHandler(void);
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
#endif
|