仓库提交练习
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

79 lines
2.1 KiB

3 weeks ago
/******************************************************************************
(C), 2018-2099, Radkil
******************************************************************************
: motor.c
: 稿
: radkil
: 2026414
:
:
:
1. : 2026414
: radkil
:
******************************************************************************/
#include "robot.h"
/*----------------------------------------------*
* *
*----------------------------------------------*/
/*----------------------------------------------*
* *
*----------------------------------------------*/
/*----------------------------------------------*
* *
*----------------------------------------------*/
/*----------------------------------------------*
* *
*----------------------------------------------*/
/*----------------------------------------------*
* *
*----------------------------------------------*/
/*----------------------------------------------*
* *
*----------------------------------------------*/
/*----------------------------------------------*
* *
*----------------------------------------------*/
void WheelMotorStrong(void)
{
// 用于强符号覆盖的锚点
}
int WheelMotorInit(void)
{
printf("This is motorTT.\n");
return RB_SUCCESS;
}
void WheelMotorDirForward(void)
{
printf("This is motorTT. forward!\n");
}
void WheelMotorDirBackward(void)
{
printf("This is motorTT. backward!\n");
}
void WheelMotorStop(void)
{
printf("This is motorTT. stop!\n");
}
void WheelMotorSetSpeed(int _iValue)
{
printf("This is motorTT. set speed[%d]!\n", _iValue);
}