This commit is contained in:
2025-11-25 21:25:41 +08:00
parent 09c8ef7be8
commit e2e275b6e4
117 changed files with 12755 additions and 0 deletions

View File

@@ -0,0 +1,27 @@
/*
* 配置相关
*/
#pragma once
#ifdef __cplusplus
extern "C" {
#endif
#include <stdint.h>
typedef struct {
} Config_RobotParam_t;
/* Exported functions prototypes -------------------------------------------- */
/**
* @brief 获取机器人配置参数
* @return 机器人配置参数指针
*/
Config_RobotParam_t* Config_GetRobotParam(void);
#ifdef __cplusplus
}
#endif