Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added W25Q512JV support for spi mem manger app. #148

Draft
wants to merge 2 commits into
base: dev
Choose a base branch
from
Draft
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
2 changes: 2 additions & 0 deletions spi_mem_manager/.catalog/changelog.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
## 1.4
W25Q512JV flash chip support added
## 1.3
XM25QH64C and XM25QH128A flash chip support added
## 1.2
Expand Down
2 changes: 1 addition & 1 deletion spi_mem_manager/application.fam
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ App(
requires=["gui"],
stack_size=1 * 2048,
fap_description="Application for reading and writing 25-series SPI memory chips",
fap_version="1.3",
fap_version="1.4",
fap_icon="images/Dip8_10px.png",
fap_category="GPIO",
fap_icon_assets="images",
Expand Down
1 change: 1 addition & 0 deletions spi_mem_manager/lib/spi/spi_mem_chip_arr.c
Original file line number Diff line number Diff line change
Expand Up @@ -1202,6 +1202,7 @@ const SPIMemChip SPIMemChips[] = {
{0xEF, 0x40, 0x19, "W25Q256FV", 33554432, 256, SPIMemChipVendorWINBOND, SPIMemChipWriteModePage},
{0xEF, 0x40, 0x19, "W25Q256JV", 33554432, 256, SPIMemChipVendorWINBOND, SPIMemChipWriteModePage},
{0xEF, 0x70, 0x19, "W25Q256JV", 33554432, 256, SPIMemChipVendorWINBOND, SPIMemChipWriteModePage},
{0xEF, 0x70, 0x20, "W25Q512JV", 67108864, 256, SPIMemChipVendorWINBOND, SPIMemChipWriteModePage},
{0xEF,
0x60,
0x18,
Expand Down
Loading