Skip to content

Commit

Permalink
Merge pull request #920 from bohdan-tymkiv/psoc64-1m-fixes
Browse files Browse the repository at this point in the history
PSoC64: Fix SMIF flash algorithm type for cy8c64xx_cmX_full_flash targets
  • Loading branch information
flit authored Jul 31, 2020
2 parents 4b48826 + 2015c26 commit 8ed4d65
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pyocd/target/builtin/cypress/target_CY8C64xx.py
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ def __init__(self, link):
class cy8c64xx_cm4_full_flash(cy8c64xx_cm4):
from .flash_algos.flash_algo_CY8C64xx import flash_algo as flash_algo_main
from .flash_algos.flash_algo_CY8C6xxx_WFLASH import flash_algo as flash_algo_work
from .flash_algos.flash_algo_CY8C6xxx_SMIF_S25FL128S import flash_algo as flash_algo_smif
from .flash_algos.flash_algo_CY8C6xxx_SMIF_S25Hx512T import flash_algo as flash_algo_smif

memoryMap = MemoryMap(
PSoC6FlashParams.defaultRomRegion,
Expand Down Expand Up @@ -213,7 +213,7 @@ class cy8c64xx_cm4_full_flash(cy8c64xx_cm4):
class cy8c64xx_cm0_full_flash(cy8c64xx_cm0):
from .flash_algos.flash_algo_CY8C64xx import flash_algo as flash_algo_main
from .flash_algos.flash_algo_CY8C6xxx_WFLASH import flash_algo as flash_algo_work
from .flash_algos.flash_algo_CY8C6xxx_SMIF_S25FL128S import flash_algo as flash_algo_smif
from .flash_algos.flash_algo_CY8C6xxx_SMIF_S25Hx512T import flash_algo as flash_algo_smif

memoryMap = MemoryMap(
PSoC6FlashParams.defaultRomRegion,
Expand Down

0 comments on commit 8ed4d65

Please sign in to comment.