暂无描述
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

1234567891011121314
  1. [build]
  2. # Instruction set of Cortex-M0+
  3. target = "thumbv6m-none-eabi"
  4. [target.'cfg(all(target_arch = "arm", target_os = "none"))']
  5. rustflags = [
  6. "-C", "link-arg=--nmagic",
  7. "-C", "link-arg=-Tlink.x",
  8. "-C", "inline-threshold=5",
  9. "-C", "no-vectorize-loops",
  10. ]
  11. #runner = "elf2uf2-rs -d"
  12. runner = "arm-none-eabi-gdb -x openocd.gdb"