Skip to content

Commit

Permalink
Merge pull request betaflight#11550 from SteveCEvans/w25x32
Browse files Browse the repository at this point in the history
  • Loading branch information
blckmn committed Apr 24, 2022
2 parents a0ed6b0 + ea37eca commit 9d71184
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/main/drivers/flash_m25p16.c
Expand Up @@ -87,6 +87,9 @@ struct {
// Winbond W25Q16
// Datasheet: https://www.winbond.com/resource-files/w25q16dv_revi_nov1714_web.pdf
{ 0xEF4015, 104, 50, 32, 256 },
// Winbond W25X32
// Datasheet: https://www.winbond.com/resource-files/w25x32a_revb_080709.pdf
{ 0xEF3016, 133, 50, 64, 256 },
// Winbond W25Q32
// Datasheet: https://www.winbond.com/resource-files/w25q32jv%20dtr%20revf%2002242017.pdf?__locale=zh_TW
{ 0xEF4016, 133, 50, 64, 256 },
Expand Down Expand Up @@ -165,7 +168,6 @@ static bool m25p16_waitForReady(flashDevice_t *fdevice)
*
* Returns true if we get valid ident, false if something bad happened like there is no M25P16.
*/

bool m25p16_detect(flashDevice_t *fdevice, uint32_t chipID)
{
flashGeometry_t *geometry = &fdevice->geometry;
Expand Down

0 comments on commit 9d71184

Please sign in to comment.