aboutsummaryrefslogtreecommitdiffhomepage
path: root/targets/clue-alpha.json
AgeCommit message (Collapse)Author
2023-04-17targets: make msd-volume-name an arrayKenneth Bell
2022-10-16targets: remove "acm:"` prefix for USB vid/pid pairAyke van Laethem
This prefix isn't actually used and only adds noise, so remove it. It may have been useful on Linux that makes a distinction between /dev/ttyACM* and /dev/ttyUSB* but it isn't now. Also, it's unlikely that the same vid/pid pair will be shared between an acm and usb driver anyway.
2022-09-17targets: remove usbpid of bootloadersago35
For more information, see https://github.com/tinygo-org/tinygo/pull/3168
2022-08-07nrf52: cleanup s140v6 uf2 targetsYurii Soldak
2021-06-29targets: add serial and serial-port key to JSON files for adafruit boardssago35
2021-06-25all: add a flag to the command line to select the serial implementationAyke van Laethem
This can be very useful for some purposes: * It makes it possible to disable the UART in cases where it is not needed or needs to be disabled to conserve power. * It makes it possible to disable the serial output to reduce code size, which may be important for some chips. Sometimes, a few kB can be saved this way. * It makes it possible to override the default, for example you might want to use an actual UART to debug the USB-CDC implementation. It also lowers the dependency on having machine.Serial defined, which is often not defined when targeting a chip. Eventually, we might want to make it possible to write `-target=nrf52` or `-target=atmega328p` for example to target the chip itself with no board specific assumptions. The defaults don't change. I checked this by running `make smoketest` before and after and comparing the results.
2020-12-29machine/clue: correct volume name and add alias for release version of ↵deadprogram
Adafruit Clue board Signed-off-by: deadprogram <[email protected]>
2020-10-28all: replace underscores with dashes in target namesAyke van Laethem
This is the convention, so use it everywhere.