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

93 lines
2.9 KiB

3 weeks ago
/******************************************************************************
(C), 2018-2099, Radkil
******************************************************************************
: controller_if.c
: 稿
: radkil
: 2026414
:
:
:
1. : 2026414
: radkil
:
******************************************************************************/
#include "robot.h"
/*----------------------------------------------*
* *
*----------------------------------------------*/
/*----------------------------------------------*
* *
*----------------------------------------------*/
/*----------------------------------------------*
* *
*----------------------------------------------*/
/*----------------------------------------------*
* *
*----------------------------------------------*/
/*----------------------------------------------*
* *
*----------------------------------------------*/
/*----------------------------------------------*
* *
*----------------------------------------------*/
/*----------------------------------------------*
* *
*----------------------------------------------*/
WEAK int ControllerInit(void)
{
printf("Error! This is necessary.\n");
return RB_FAILURE;
}
/*****************************************************************************
: ControllerInputStateMachine
:
: void
:
: ERobotCmd
:
:
:
1. : 2026414
: radkil
:
*****************************************************************************/
WEAK ERobotCmd ControllerInputStateMachine(void)
{
printf("Not support controller state!\n");
return RB_STOP;
}
/*****************************************************************************
: ControllerDisplayPressure
:
: int _iValue
:
: void
:
:
:
1. : 2026414
: radkil
:
*****************************************************************************/
WEAK void ControllerDisplayPressure(int _iValue)
{
printf("Not support display pressure[%d]!\n", _iValue);
}