kendryte.cfg 331 B

123456789101112131415161718192021
  1. # debug adapter
  2. interface jlink
  3. transport select jtag
  4. adapter_khz 3000
  5. # server port
  6. gdb_port 3333
  7. telnet_port 4444
  8. # add cpu target
  9. set _CHIPNAME riscv
  10. jtag newtap $_CHIPNAME cpu -irlen 5 -expected-id 0x04e4796b
  11. set _TARGETNAME $_CHIPNAME.cpu
  12. target create $_TARGETNAME riscv -chain-position $_TARGETNAME
  13. # command
  14. init
  15. halt