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

72 lines
2.1 KiB

3 weeks ago
/******************************************************************************
(C), 2018-2099, Radkil
******************************************************************************
: controller.c
: 稿
: radkil
: 2026414
:
:
:
1. : 2026414
: radkil
:
******************************************************************************/
#ifdef BUILD_CONTROLLER
3 weeks ago
#include "robot.h"
/*----------------------------------------------*
* *
*----------------------------------------------*/
/*----------------------------------------------*
* *
*----------------------------------------------*/
/*----------------------------------------------*
* *
*----------------------------------------------*/
/*----------------------------------------------*
* *
*----------------------------------------------*/
/*----------------------------------------------*
* *
*----------------------------------------------*/
/*----------------------------------------------*
* *
*----------------------------------------------*/
/*----------------------------------------------*
* *
*----------------------------------------------*/
void ControllerStrong(void)
{
// 用于强符号覆盖的锚点
}
int ControllerInit(void)
{
printf("This is controller.\n");
return RB_SUCCESS;
}
ERobotCmd ControllerInputStateMachine(void)
{
printf("This is controller. controller state!\n");
return RB_STOP;
}
void ControllerDisplayPressure(int _iValue)
{
printf("This is controller. display pressure[%d]!\n", _iValue);
}
#endif