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.
21 lines
518 B
21 lines
518 B
{
|
|
"inherits": ["xtensa"],
|
|
"cpu": "esp32",
|
|
"build-tags": ["esp32", "esp"],
|
|
"scheduler": "tasks",
|
|
"serial": "uart",
|
|
"linker": "xtensa-esp32-elf-ld",
|
|
"default-stack-size": 2048,
|
|
"cflags": [
|
|
"-mcpu=esp32"
|
|
],
|
|
"rtlib": "compiler-rt",
|
|
"libc": "picolibc",
|
|
"linkerscript": "targets/esp32.ld",
|
|
"extra-files": [
|
|
"src/device/esp/esp32.S",
|
|
"src/internal/task/task_stack_esp32.S"
|
|
],
|
|
"binary-format": "esp32",
|
|
"flash-command": "esptool.py --chip=esp32 --port {port} write_flash 0x1000 {bin} -ff 80m -fm dout"
|
|
}
|
|
|