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

Bug fixes 535 69x #54

Merged
merged 2 commits into from
Jun 28, 2024
Merged
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
5 changes: 4 additions & 1 deletion ezFlashCLI/ezFlash/smartbond/smartbondDevices.py
Original file line number Diff line number Diff line change
Expand Up @@ -1271,6 +1271,9 @@ def flash_program_data(self, my_data_array, address=0x80000000):
class da1469x(da1468x_da1469x_da1470x):
"""Derived class for the da1469x devices."""

FLASH_READ_ARRAY_BASE = 0x16000000
FLASH_ARRAY_BASE = 0x16000000

OTPC_BASE = 0x30070000
QPSPIC_BASE = 0x38000000
PRODUCT_HEADER_SIZE = 0x1000
Expand Down Expand Up @@ -1306,7 +1309,7 @@ class da1469x(da1468x_da1469x_da1470x):
DEFAULT_IMAGE_ADDRESS = 0x2000
DEFAULT_IMAGE_OFFSET = 0x400

def __init__(self, name=b"DA1469x"):
def __init__(self, name=b"DA14695"):
"""Initalizate the da14xxxx parent devices class."""
da1468x_da1469x_da1470x.__init__(self, name)

Expand Down
4 changes: 0 additions & 4 deletions ezFlashCLI/third-party/segger/JLinkDevices.xml
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,6 @@
<ChipInfo Vendor="Dialog Semiconductor" Name="DA14592" WorkRAMAddr="0x810000" WorkRAMSize="0x10000" Core="JLINK_CORE_CORTEX_M33" />
<FlashBankInfo Name="EFLASH" BaseAddr="0x31000000" MaxSize="0x40800" Loader="segger_flash_loader_59x_eflash.elf" LoaderType="FLASH_ALGO_TYPE_OPEN" />
</Device>
<Device>
<ChipInfo Vendor="Dialog Semiconductor" Name="DA1469x" WorkRAMAddr="0x810000" WorkRAMSize="0x10000" Core="JLINK_CORE_CORTEX_M33" />
<FlashBankInfo Name="win. Flash" BaseAddr="0x36000000" MaxSize="0x2000000" Loader="segger_flash_loader_69x.elf" LoaderType="FLASH_ALGO_TYPE_OPEN" />
</Device>
<Device>
<ChipInfo Vendor="Dialog Semiconductor" Name="DA1470x" WorkRAMAddr="0x10010000" WorkRAMSize="0x00040000" Core="JLINK_CORE_CORTEX_M33" />
<FlashBankInfo Name="OQSPIC Flash" BaseAddr="0x38000000" MaxSize="0x200000" Loader="segger_flash_loader_70x_oflash.elf" LoaderType="FLASH_ALGO_TYPE_OPEN" />
Expand Down
Binary file modified ezFlashCLI/third-party/segger/libjlinkarm.dylib
Binary file not shown.
Binary file not shown.
Loading