mirror of
https://github.com/goldenfishs/MRobot.git
synced 2026-02-04 18:00:19 +08:00
主要更改: - 将所有BSP外设文件移动到独立子文件夹(can/, fdcan/, uart/等) - 将所有Component文件移动到独立子文件夹(pid/, filter/, cmd/等) - 将所有Device文件移动到独立子文件夹(dr16/, bmi088/等) - 更新代码生成器以支持新的文件夹结构 - 保持向后兼容性,支持从子文件夹或根目录加载模板 - 添加STRUCTURE.md文档说明新的目录结构 优势: ✅ 更好的代码组织和管理 ✅ 便于添加、删除、修改模板 ✅ 清晰的模块划分 ✅ 向后兼容现有结构
71 lines
2.0 KiB
C
71 lines
2.0 KiB
C
#pragma once
|
||
|
||
#ifdef __cplusplus
|
||
extern "C" {
|
||
#endif
|
||
|
||
/* Includes ----------------------------------------------------------------- */
|
||
#include <spi.h>
|
||
#include <stdint.h>
|
||
#include <stdbool.h>
|
||
|
||
#include "bsp/bsp.h"
|
||
|
||
/* USER INCLUDE BEGIN */
|
||
|
||
/* USER INCLUDE END */
|
||
|
||
/* Exported constants ------------------------------------------------------- */
|
||
/* Exported macro ----------------------------------------------------------- */
|
||
/* USER DEFINE BEGIN */
|
||
|
||
/* USER DEFINE END */
|
||
|
||
/* Exported types ----------------------------------------------------------- */
|
||
|
||
/* 要添加使用SPI的新设备,需要先在此添加对应的枚举值 */
|
||
|
||
/* SPI实体枚举,与设备对应 */
|
||
typedef enum {
|
||
/* AUTO GENERATED BSP_SPI_NAME */
|
||
BSP_SPI_NUM,
|
||
BSP_SPI_ERR,
|
||
} BSP_SPI_t;
|
||
|
||
/* SPI支持的中断回调函数类型,具体参考HAL中定义 */
|
||
typedef enum {
|
||
BSP_SPI_TX_CPLT_CB,
|
||
BSP_SPI_RX_CPLT_CB,
|
||
BSP_SPI_TX_RX_CPLT_CB,
|
||
BSP_SPI_TX_HALF_CPLT_CB,
|
||
BSP_SPI_RX_HALF_CPLT_CB,
|
||
BSP_SPI_TX_RX_HALF_CPLT_CB,
|
||
BSP_SPI_ERROR_CB,
|
||
BSP_SPI_ABORT_CPLT_CB,
|
||
BSP_SPI_CB_NUM,
|
||
} BSP_SPI_Callback_t;
|
||
|
||
/* Exported functions prototypes -------------------------------------------- */
|
||
SPI_HandleTypeDef *BSP_SPI_GetHandle(BSP_SPI_t spi);
|
||
int8_t BSP_SPI_RegisterCallback(BSP_SPI_t spi, BSP_SPI_Callback_t type,
|
||
void (*callback)(void));
|
||
|
||
|
||
int8_t BSP_SPI_Transmit(BSP_SPI_t spi, uint8_t *data, uint16_t size, bool dma);
|
||
int8_t BSP_SPI_Receive(BSP_SPI_t spi, uint8_t *data, uint16_t size, bool dma);
|
||
int8_t BSP_SPI_TransmitReceive(BSP_SPI_t spi, uint8_t *txData, uint8_t *rxData,
|
||
uint16_t size, bool dma);
|
||
|
||
uint8_t BSP_SPI_MemReadByte(BSP_SPI_t spi, uint8_t reg);
|
||
int8_t BSP_SPI_MemWriteByte(BSP_SPI_t spi, uint8_t reg, uint8_t data);
|
||
int8_t BSP_SPI_MemRead(BSP_SPI_t spi, uint8_t reg, uint8_t *data, uint16_t size);
|
||
int8_t BSP_SPI_MemWrite(BSP_SPI_t spi, uint8_t reg, uint8_t *data, uint16_t size);
|
||
|
||
/* USER FUNCTION BEGIN */
|
||
|
||
/* USER FUNCTION END */
|
||
|
||
#ifdef __cplusplus
|
||
}
|
||
#endif
|