Boen_Shi 8be2866433 feat(base): 初始化 MSPM0 开发环境
- 添加头文件和配置文件支持
- 更新.gitignore忽略编译和IDE相关文件
- 添加基础的bsp代码
2026-07-16 14:45:26 +08:00

12 lines
201 B
C++

#ifndef SERVO_H
#define SERVO_H
#include "ti_msp_dl_config.h"
class Servo
{
public:
static void SetUpAngle(const float angle);
static void SetDownAngle(const float angle);
};
#endif //SERVO_H