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.
25 lines
300 B
25 lines
300 B
//
|
|
// Created by iflyt on 2025/3/19.
|
|
//
|
|
|
|
#ifndef UART_CMD_H
|
|
#define UART_CMD_H
|
|
#include <main.h>
|
|
|
|
#define CMD_UART huart2
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
extern UART_HandleTypeDef huart2;
|
|
|
|
void CMD_UART_Init(void);
|
|
|
|
void CMD_DMA_Init(void);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif //UART_CMD_H
|