Advertisement
Guest User

Untitled

a guest
Feb 28th, 2022
43
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.48 KB | None | 0 0
  1. # 284-02 Carrier Board OpenOCD configuration
  2.  
  3. # this configuration requires an ST-LINK V2/V3 programmer attached via SWD
  4. source [find interface/stlink-dap.cfg]
  5. transport select dapdirect_swd
  6.  
  7. # board uses an STM32H757xI - This is a dual core device
  8. set DUAL_CORE 1
  9.  
  10. # enable CTI support for halting both cores
  11. set USE_CTI 1
  12.  
  13. # STM32H757xI has two flash banks
  14. source [find target/stm32h7x_dual_bank.cfg]
  15.  
  16. # using SWD, so only have access to system reset
  17. reset_config srst_only
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement