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

66 lines
2.0 KiB

3 weeks ago
/******************************************************************************
(C), 2018-2099, Radkil
******************************************************************************
: paint_if.c
: 稿
: radkil
: 2026415
:
:
:
1. : 2026415
: radkil
:
******************************************************************************/
#include "robot.h"
/*----------------------------------------------*
* *
*----------------------------------------------*/
/*----------------------------------------------*
* *
*----------------------------------------------*/
/*----------------------------------------------*
* *
*----------------------------------------------*/
/*----------------------------------------------*
* *
*----------------------------------------------*/
/*----------------------------------------------*
* *
*----------------------------------------------*/
/*----------------------------------------------*
* *
*----------------------------------------------*/
/*----------------------------------------------*
* *
*----------------------------------------------*/
WEAK int PaintInit(void)
{
printf("Not support paint.\n");
return RB_SUCCESS; //这里返回成功是因为可能机器人不是喷漆款型
}
WEAK void PaintWork(void)
{
printf("Not support paint work.\n");
}
WEAK int PaintGetParam(void)
{
printf("Not support paint get param.\n");
return 0;
}