
This avoids a ton of duplication and makes it easier to change a generic target (for example, the "cortex-m" target) for all boards that use it. Also, by making it possible to inherit properties from a parent target specification, it is easier to support out-of-tree boards that don't have to be updated so often. A target specification for a special-purpose board can simply inherit the specification of a supported chip and override the properites it needs to override (like the programming interface).
7 строки
330 Б
JSON
7 строки
330 Б
JSON
{
|
|
"inherits": ["nrf52"],
|
|
"build-tags": ["pca10040"],
|
|
"flash": "nrfjprog -f nrf52 --sectorerase --program {hex} --reset",
|
|
"ocd-daemon": ["openocd", "-f", "interface/jlink.cfg", "-c", "transport select swd", "-f", "target/nrf51.cfg"],
|
|
"gdb-initial-cmds": ["target remote :3333", "monitor halt", "load", "monitor reset", "c"]
|
|
}
|