Skip to main content
Pawan Kumar sharma
Associate II
April 11, 2018
Question

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

  • April 11, 2018
  • 1 reply
  • 649 views
Posted on April 11, 2018 at 13:39

I have less knowledge of SPI HAL library. 

#spi #stm32 #spi-flash
This topic has been closed for replies.

1 reply

Tesla DeLorean
Guru
April 11, 2018
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 (See Profile) Up vote any posts that you find helpful, it shows what's working..