mirror of
https://github.com/betaflight/betaflight.git
synced 2025-07-13 11:29:58 +03:00
new flash added: py25q128ha (#13516)
This commit is contained in:
parent
71776a852b
commit
2821cdab3a
3 changed files with 5 additions and 1 deletions
|
@ -109,6 +109,9 @@ struct {
|
||||||
// Winbond W25Q128
|
// Winbond W25Q128
|
||||||
// Datasheet: https://www.winbond.com/resource-files/w25q128fv%20rev.l%2008242015.pdf
|
// Datasheet: https://www.winbond.com/resource-files/w25q128fv%20rev.l%2008242015.pdf
|
||||||
{ 0xEF4018, 104, 50, 256, 256 },
|
{ 0xEF4018, 104, 50, 256, 256 },
|
||||||
|
// PUYA PY25Q128
|
||||||
|
// Datasheet: https://www.puyasemi.com/download_path/%E6%95%B0%E6%8D%AE%E6%89%8B%E5%86%8C/Flash%20%E8%8A%AF%E7%89%87/PY25F128HA_datasheet_V1.1.pdf
|
||||||
|
{ 0x852018, 133, 80, 256, 256 },
|
||||||
// Zbit ZB25VQ128
|
// Zbit ZB25VQ128
|
||||||
// Datasheet: http://zbitsemi.com/upload/file/20201010/20201010174048_82182.pdf
|
// Datasheet: http://zbitsemi.com/upload/file/20201010/20201010174048_82182.pdf
|
||||||
{ 0x5E4018, 104, 50, 256, 256 },
|
{ 0x5E4018, 104, 50, 256, 256 },
|
||||||
|
|
|
@ -323,7 +323,7 @@
|
||||||
#endif
|
#endif
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if (defined(USE_FLASH_W25M512) || defined(USE_FLASH_W25Q128FV)) && !defined(USE_FLASH_M25P16)
|
#if (defined(USE_FLASH_W25M512) || defined(USE_FLASH_W25Q128FV) || defined(USE_FLASH_PY25Q128HA)) && !defined(USE_FLASH_M25P16)
|
||||||
#if !defined(USE_FLASH_M25P16)
|
#if !defined(USE_FLASH_M25P16)
|
||||||
#define USE_FLASH_M25P16
|
#define USE_FLASH_M25P16
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -142,6 +142,7 @@
|
||||||
#define USE_FLASH_W25M512 // 512Kb (256Kb x 2 stacked) NOR flash support
|
#define USE_FLASH_W25M512 // 512Kb (256Kb x 2 stacked) NOR flash support
|
||||||
#define USE_FLASH_W25M02G // 2Gb (1Gb x 2 stacked) NAND flash support
|
#define USE_FLASH_W25M02G // 2Gb (1Gb x 2 stacked) NAND flash support
|
||||||
#define USE_FLASH_W25Q128FV // 16MB Winbond 25Q128
|
#define USE_FLASH_W25Q128FV // 16MB Winbond 25Q128
|
||||||
|
#define USE_FLASH_PY25Q128HA // 16MB PUYA SEMI 25Q128
|
||||||
#endif // USE_EXST
|
#endif // USE_EXST
|
||||||
|
|
||||||
#endif // USE_FLASH
|
#endif // USE_FLASH
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue