easy-aos
Version:
帮助配置arm-gcc开发环境,简化命令行。
24 lines (22 loc) • 378 B
JavaScript
import { commands } from "./commands"
const stm32 = {
commands: commands,
packages: {
"AliOS-Things": "1.3.3",
"st-link": "",
"openocd": "",
"python": "2.7"
},
serial: {
port: "STLink",
bauding: "115200"
},
openocd: {
run: "openocd",
params: [
"-f interface/stlink.cfg",
"-f target/stm32f1x.cfg"
]
}
}
export default stm32