aboutsummaryrefslogtreecommitdiffhomepage
path: root/targets/pygamer.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
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.
2021-06-18cortexm: bump default stack size to 2048 bytesAyke van Laethem
Previously it was 1024 bytes, which occasionally ran into a stack overflow. I hope that 2048 bytes will be enough for most purposes. I've also removed some 2048-byte stack size settings in JSON files, which are unnecessary now that the parent (cortex-m.json) sets them.
2021-06-01increase stack size for access to sdcardsago35
2020-11-15sam: remove redundant build tagsAyke van Laethem
Some build tags were duplicated. This commit removes them.
2020-06-19Added Adafruit PyGamer Target (#1173)APDevice
* machine/PyGamer: add board support