cancel
Showing results for 
Search instead for 
Did you mean: 

I want to write and read data from SST25VF032B (SPI FLASH) by using STM32F427ZITx processor, please help me?

Pawan Kumar sharma
Associate II
Posted on April 11, 2018 at 13:39

I have less knowledge of SPI HAL library. 

#spi #stm32 #spi-flash
1 REPLY 1
Posted on April 11, 2018 at 14:01

There are some example SPI routines in STM32Cube_FW_F4_V1.19.0\Drivers\BSP\STM32F4xx-Nucleo\stm32f4xx_nucleo.c

static void       SPIx_Init(void);

static void       SPIx_Write(uint8_t Value);

static void       SPIx_WriteReadData(const uint8_t *DataIn, uint8_t *DataOut, uint16_t DataLegnth);

static void       SPIx_Error(void);

static void       SPIx_MspInit(SPI_HandleTypeDef *hspi);
Tips, buy me a coffee, or three.. PayPal Venmo Up vote any posts that you find helpful, it shows what's working..