From 6d506dc5b6ba67f87b0a0a9c5728933e9a39e935 Mon Sep 17 00:00:00 2001 From: guozhanxin Date: Tue, 26 Sep 2023 14:37:32 +0800 Subject: [PATCH] [bsp/rt-spark] fix spi_flash_init.c --- bsp/stm32/stm32f407-rt-spark/board/ports/spi_flash_init.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bsp/stm32/stm32f407-rt-spark/board/ports/spi_flash_init.c b/bsp/stm32/stm32f407-rt-spark/board/ports/spi_flash_init.c index a8c1b41e28..06d107c1ff 100644 --- a/bsp/stm32/stm32f407-rt-spark/board/ports/spi_flash_init.c +++ b/bsp/stm32/stm32f407-rt-spark/board/ports/spi_flash_init.c @@ -18,7 +18,7 @@ static int rt_hw_spi_flash_init(void) { __HAL_RCC_GPIOB_CLK_ENABLE(); - rt_hw_spi_device_attach("spi2", "spi20", GPIOB, GPIO_PIN_12); + rt_hw_spi_device_attach("spi2", "spi20", GET_PIN(B, 12)); if (RT_NULL == rt_sfud_flash_probe("W25Q64", "spi20")) {