用于EagleEye3.0 规则集漏报和误报测试的示例项目,项目收集于github和gitee
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.
 
 
 
 
 
 

27 lines
471 B

/*
* Copyright (c) 2021 HPMicro
*
* SPDX-License-Identifier: BSD-3-Clause
*/
#ifndef DRV_SPI_H
#define DRV_SPI_H
#include <rtthread.h>
#include <rtdevice.h>
#include <rthw.h>
#include <stdint.h>
#define SPI_CS_TAKE (0)
#define SPI_CS_RELEASE (1)
typedef void (*cs_ctrl_callback_t)(uint32_t value);
rt_err_t rt_hw_spi_device_attach(const char *bus_name, const char *device_name, cs_ctrl_callback_t callback);
int rt_hw_spi_init(void);
#endif /* DRV_SPI_H */