修复bsp/renesas/libraries/drv_spi.c中event定义错误 (#6712)
* fix usage of rt_event for drv_spi.c in renesas's libraries.
This commit is contained in:
parent
9d8da76543
commit
2380c32a71
|
@ -25,8 +25,8 @@
|
|||
#include <rtdbg.h>
|
||||
|
||||
#if defined(BSP_USING_SPI0) || defined(BSP_USING_SPI1)
|
||||
#define RA_SPI0_EVENT 0x00
|
||||
#define RA_SPI1_EVENT 0x01
|
||||
#define RA_SPI0_EVENT 0x01
|
||||
#define RA_SPI1_EVENT 0x02
|
||||
static struct rt_event complete_event = {0};
|
||||
|
||||
static struct ra_spi_handle spi_handle[] =
|
||||
|
|
Loading…
Reference in New Issue