Difference between revisions of "STM32 W25Qxx"

From Stm32World Wiki
Jump to navigation Jump to search
Line 1: Line 1:
 
[[Category:C]][[Category:STM32 Development]][[Category:STM32 HAL]][[Category:STM32CubeMX]][[Category:STM32CubeIde]][[Category:Embedded]][[Category:STM32]]{{metadesc|Using W25Qxx Serial Flash on STM32}}
 
[[Category:C]][[Category:STM32 Development]][[Category:STM32 HAL]][[Category:STM32CubeMX]][[Category:STM32CubeIde]][[Category:Embedded]][[Category:STM32]]{{metadesc|Using W25Qxx Serial Flash on STM32}}
 
This page describes how to use [[W25Qxx|W25Qxx Serial Flash/EEPROM]] chips with the [[STM32]].  The examples and code on this page has been developed on and for the [[Black Pill]] development board.
 
This page describes how to use [[W25Qxx|W25Qxx Serial Flash/EEPROM]] chips with the [[STM32]].  The examples and code on this page has been developed on and for the [[Black Pill]] development board.
 +
 +
The resulting library can be found here: [https://github.com/lbthomsen/stm32-w25qxx https://github.com/lbthomsen/stm32-w25qxx]
 +
An example using this library can be found here: [https://github.com/lbthomsen/blackpill/tree/master/eeprom https://github.com/lbthomsen/blackpill/tree/master/eeprom]
  
 
== Black Pill EEPROM ==  
 
== Black Pill EEPROM ==  

Revision as of 03:36, 1 March 2022

This page describes how to use W25Qxx Serial Flash/EEPROM chips with the STM32. The examples and code on this page has been developed on and for the Black Pill development board.

The resulting library can be found here: https://github.com/lbthomsen/stm32-w25qxx An example using this library can be found here: https://github.com/lbthomsen/blackpill/tree/master/eeprom

Black Pill EEPROM

EEPROM Footprint.png

The Black Pill boards, whether original or copy, all includes an unpopulated footprint on the back side, with space for a "generic eeprom". This footprint can be populated with a wide range of compatible EEPROM chips.

The examples on this page are all using a Black Pill with a Winbond W25Q128.

W25Q128 mounted on black pill.png

The original Black Pill board have been going through a few changes which can be a bit confusing. In all cases, the footprint is wired up to SPI1, but it is important to notice that on some boards the DO (MISO) pin of the W25Qxx is wired to PA6, and on some it is wired to PB4. Be certain to check which one is actually used.

In our case, the Black Pill board is clearly not an original, and PA6 is being used throughout:

EEPROM Correct Config.png

Miscellaneous Links