Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions docs/Blackbox.md
Original file line number Diff line number Diff line change
Expand Up @@ -120,6 +120,7 @@ These chips are also supported:
* Winbond W25Q64 - 64 Mbit / 8 MByte
* Micron N25Q0128 - 128 Mbit / 16 MByte
* Winbond W25Q128 - 128 Mbit / 16 MByte
* AllPower AP25Q128HD - 128 Mbit / 16 MByte
* Puya PY25Q128HA - 128 Mbit / 16 MByte
* Winbond W25N01 - 1 Gbit / 128 MByte
* Winbond W25N02 - 2 Gbit / 256 MByte
Expand Down
3 changes: 3 additions & 0 deletions src/main/drivers/flash_m25p16.c
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,8 @@ struct {
// Winbond W25Q128_DTR
// Datasheet: https://www.winbond.com/resource-files/w25q128jv%20dtr%20revb%2011042016.pdf
{0xEF7018, 256, 256},
// ALLPOWER_AP25Q128
{0x852018, 256, 256},
// Puya PY25Q128HA
// Datasheet: https://www.puyasemi.com/cpzx3/info_271_itemid_87.html
{0x856018, 256, 256},
Expand All @@ -120,6 +122,7 @@ struct {
{0x014015, 32, 256 },
// End of list
{0x000000, 0, 0}};


// The timeout we expect between being able to issue page program instructions
#define DEFAULT_TIMEOUT_MILLIS 6
Expand Down
Loading