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.
12 lines
278 B
12 lines
278 B
|
6 days ago
|
#ifndef ROBOT_CV_CONFIG_H
|
||
|
|
#define ROBOT_CV_CONFIG_H
|
||
|
|
|
||
|
|
#include "BHBF_ROBOT.h"
|
||
|
|
|
||
|
|
#define MAX_ROBOT_COUNT 100 // 支持的最大机器人数
|
||
|
|
|
||
|
|
// 获取指定机器人的CV参数(供主程序在保存时调用)
|
||
|
|
const CV_struct_define* Robot_GetCvConfig(uint8_t robotId);
|
||
|
|
|
||
|
|
#endif
|