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
517 B
21 lines
517 B
{
|
|
"inherits": ["avr"],
|
|
"llvm-target": "avr-atmel-none",
|
|
"cpu": "attiny85",
|
|
"build-tags": ["digispark", "attiny85", "attiny", "avr2", "avr25"],
|
|
"cflags": [
|
|
"-mmcu=attiny85"
|
|
],
|
|
"ldflags": [
|
|
"-mmcu=avr25",
|
|
"-Wl,--defsym=_bootloader_size=2180",
|
|
"-Wl,--defsym=_stack_size=128"
|
|
],
|
|
"linkerscript": "src/device/avr/attiny85.ld",
|
|
"extra-files": [
|
|
"targets/avr.S",
|
|
"src/device/avr/attiny85.s"
|
|
],
|
|
"flash-command": "micronucleus --run {hex}",
|
|
"emulator": ["simavr", "-m", "attiny85", "-f", "16000000"]
|
|
}
|
|
|