仓库提交练习
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.

74 lines
2.1 KiB

3 weeks ago
/******************************************************************************
(C), 2018-2099, Radkil
******************************************************************************
: wheel_if.c
: 稿
: radkil
: 2026414
:
:
:
1. : 2026414
: radkil
:
******************************************************************************/
#include "robot.h"
/*----------------------------------------------*
* *
*----------------------------------------------*/
/*----------------------------------------------*
* *
*----------------------------------------------*/
/*----------------------------------------------*
* *
*----------------------------------------------*/
/*----------------------------------------------*
* *
*----------------------------------------------*/
/*----------------------------------------------*
* *
*----------------------------------------------*/
/*----------------------------------------------*
* *
*----------------------------------------------*/
/*----------------------------------------------*
* *
*----------------------------------------------*/
WEAK int WheelMotorInit(void)
{
printf("Error! This is necessary.\n");
return RB_FAILURE;
}
WEAK void WheelMotorDirForward(void)
{
printf("Not support forward!\n");
}
WEAK void WheelMotorDirBackward(void)
{
printf("Not support backward!\n");
}
WEAK void WheelMotorStop(void)
{
printf("Not support stop!\n");
}
WEAK void WheelMotorSetSpeed(int _iValue)
{
printf("Not support set speed[%d]!\n", _iValue);
}