mirror of https://github.com/tinygo-org/tinygo.git
wasmstm32webassemblymicrocontrollerarmavrspiwasiadafruitarduinocircuitplayground-expressgpioi2cllvmmicrobitnrf51nrf52nrf52840samd21tinygo
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
365 B
16 lines
365 B
5 years ago
|
{
|
||
|
"inherits": ["xtensa"],
|
||
|
"cpu": "esp8266",
|
||
|
"build-tags": ["esp8266", "esp"],
|
||
|
"linker": "xtensa-esp32-elf-ld",
|
||
|
"cflags": [
|
||
|
"-mcpu=esp8266"
|
||
|
],
|
||
|
"linkerscript": "targets/esp8266.ld",
|
||
|
"extra-files": [
|
||
|
"src/device/esp/esp8266.S"
|
||
|
],
|
||
|
"binary-format": "esp8266",
|
||
|
"flash-command": "esptool.py --chip=esp8266 --port {port} write_flash 0x00000 {bin} -fm qio"
|
||
|
}
|