Skip to content

Commit

Permalink
Merge pull request #54 from ezflash/bug_fixes_535_69x
Browse files Browse the repository at this point in the history
Bug fixes 535 69x
  • Loading branch information
ezflash authored Jun 28, 2024
2 parents 779c824 + 55d57eb commit e409d17
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 5 deletions.
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.

0 comments on commit e409d17

Please sign in to comment.