Files
tronone-h7-scaffold/User_Code/user_task/dev_tasks/dev_cmd.h
2026-03-09 02:35:08 +08:00

23 lines
498 B
C
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
//
// Created by ASUS on 2025/12/15.
//
#ifndef TRONONEH7_SCAFFOLD_DEV_CMD_H
#define TRONONEH7_SCAFFOLD_DEV_CMD_H
// 如果用到了 FreeRTOS 的 API可以在这里包含或者在需要用到的源文件里包含
// #include "cmsis_os2.h"
/**
* @brief 机器人指令控制及外设初始化
*/
void RobotCMDInit(void);
/**
* @brief 指令下发主任务 (FreeRTOS 线程)
* @param argument 线程传入参数
*/
void CmdTask(void *argument);
#endif // TRONONEH7_SCAFFOLD_DEV_CMD_H