| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2020-04-22 | tools: upload .bin and .uf2 for Itaca uChip boards | Mike Weiblen | |
| uChip boards are shipped with an Arduino bootloader. The .bin files can be installed without first installing a .uf2 bootloader. See https://github.com/adafruit/circuitpython/issues/2798 | |||
| 2020-04-14 | Add Protomatter and FramebufferDisplay | Jeff Epler | |
| 2020-04-11 | Fix maximum keycode in keyboard HID descriptor | Lars Kellogg-Stedman | |
| The HID descriptor reported by circuitpython erroneously limited the maximum keycode to 101, which prevented circuitpython from sending a number of otherwise valid keycodes. Closes #274 | |||
| 2020-03-31 | tools: add dfu extension and mark litex as dfu | Sean Cross | |
| Signed-off-by: Sean Cross <sean@xobs.io> | |||
| 2020-03-31 | tools: rename dfu-suffix.py to dfu.py | Sean Cross | |
| dfu.py is unused in circuitpython, so rename dfu-suffix.py to replace it. Signed-off-by: Sean Cross <sean@xobs.io> | |||
| 2020-03-31 | tools: add dfu-suffix.py | Sean Cross | |
| This reproduces `dfu-suffix` from the `dfu-tools` package. Signed-off-by: Sean Cross <sean@xobs.io> | |||
| 2020-03-31 | workflow: add litex_fomu to ci | Sean Cross | |
| This adds fomu and litex and fomu to build on ci. It requires downloading a riscv toolchain. Signed-off-by: Sean Cross <sean@xobs.io> | |||
| 2020-03-11 | change CI target | Lucian Copeland | |
| 2020-02-28 | upload bin and uf2 for arduino boards; remove unneeded build steps | Dan Halbert | |
| 2020-02-28 | change download prefix to https://downloads.circuitpython.org | Dan Halbert | |
| 2020-02-28 | Download links now point to S3 via CloudFront | Dan Halbert | |
| 2020-02-11 | Update gc tracking instructions and gdb commands. | Scott Shawcroft | |
| 2020-01-29 | Merge pull request #2556 from jepler/update-tools-uf2 | Scott Shawcroft | |
| tools/uf2: take new upstream commits | |||
| 2020-01-28 | tools/uf2: take new upstream commits | Jeff Epler | |
| 2020-01-17 | Refine iMX RT memory layout and add three boards | Scott Shawcroft | |
| Introduces a way to place CircuitPython code and data into tightly coupled memory (TCM) which is accessible by the CPU in a single cycle. It also frees up room in the corresponding cache for intermittent data. Loading from external flash is slow! The data cache is also now enabled. Adds support for the iMX RT 1021 chip. Adds three new boards: * iMX RT 1020 EVK * iMX RT 1060 EVK * Teensy 4.0 Related to #2492, #2472 and #2477. Fixes #2475. | |||
| 2020-01-06 | Add MIMXRT10XX port to release build | arturo182 | |
| 2020-01-06 | Add initial MIMXRT10XX port | arturo182 | |
| 2019-12-19 | gen_display_resources: speed it up | Jeff Epler | |
| It was intended that the `f.load_glyphs` line was fast and did most of the work. However, it actually didn't, because it's necessary to pass in a code point by number, not by string. Additionally, a little light layer violation is needed to make the check for missing characters fast. This used to be less important, as no fonts had missing characters. However, it would take an appreciable length of time on the Korean translation when failing to find hundreds of different code points. Testing performed: built build-circuitplayground_express_displayio/autogen_display_resources.c with ko translation before and after change. verified the file content was identical. Time went from about 7s on my machine to way under 1 second. | |||
| 2019-12-17 | Merge pull request #2393 from dhalbert/increase-cpx-stack | Scott Shawcroft | |
| Increase CPX stack size slightly | |||
| 2019-12-17 | preprocess_frozen_modules: exclude subdirs of examples, docs, tests | Jeff Epler | |
| .. this reclaims several kB on CPX, where we really need it. | |||
| 2019-12-16 | Increase CPX stack size slightly | Dan Halbert | |
| 2019-12-11 | Merge remote-tracking branch 'adafruit/master' into ld-cleanup | Dan Halbert | |
| 2019-12-11 | Added PyPortal Pynt alias | Melissa LeBlanc-Williams | |
| 2019-12-10 | fix build failures | Dan Halbert | |
| 2019-12-10 | working on all ports | Dan Halbert | |
| 2019-12-06 | atmel-samd working | Dan Halbert | |
| 2019-12-05 | wip | Dan Halbert | |
| 2019-11-19 | Added Edgebadge alias for Pybadge | Melissa LeBlanc-Williams | |
| 2019-11-12 | Allow boards to change the "CircuitPython" text in their USB interface ↵ | Thea Flowers | |
| description. In cases where more than one board is connected to a single computer it can become pretty hard to figure out which board you're actually talking to. For example, if you have several MIDI-compatible boards they all show up as "CircuitPython MIDI". This change allows boards to replace the "CircuitPython" part of their USB descriptors with more specific text, for example, "CircuitPython Feather" or just "Feather". This will let folks more easily tell boards apart. The new option is named `USB_INTERFACE_NAME` and is available in `mkconfigboard.mk`. For example: ``` USB_INTERFACE_NAME = "Feather" ``` | |||
| 2019-10-20 | Parameterize linker script | Dan Halbert | |
| 2019-10-11 | Add cxd56 to build_board_info | Kamil Tomaszewski | |
| 2019-10-08 | Fix invalid syntax error | Kamil Tomaszewski | |
| 2019-10-08 | Merge branch 'master' into circuitpython-number-endpoint | kamtom480 | |
| 2019-10-08 | Add the specific endpoint names | Kamil Tomaszewski | |
| 2019-10-08 | Use boolean type for renumber_endpoints | Kamil Tomaszewski | |
| 2019-10-07 | Update usb_descriptor submodule | Kamil Tomaszewski | |
| 2019-10-07 | Add HID OUT | Kamil Tomaszewski | |
| 2019-10-07 | Add validation | Kamil Tomaszewski | |
| 2019-10-07 | Add an alternative way to number the USB endpoints | Kamil Tomaszewski | |
| Two options available: - relative numbering (USB_RELATIVE_EP_NUM = 1) - default - absolute numbering (USB_RELATIVE_EP_NUM = 0) - new! | |||
| 2019-10-04 | Add a way to change max packet size for MSC | Kamil Tomaszewski | |
| 2019-10-01 | Update tinyusb to fix gamepad;add HID OUT interface descriptor | Dan Halbert | |
| 2019-09-30 | Merge pull request #2181 from tannewt/update_frozen | Scott Shawcroft | |
| Update frozen modules. | |||
| 2019-09-30 | Improve frozen prep to skip example subdirectories | Scott Shawcroft | |
| 2019-09-30 | Fail when boards are missing too | Scott Shawcroft | |
| 2019-09-14 | When uploading release assets, ignore those already uploaded. | Scott Shawcroft | |
| 2019-09-09 | Renumber only chosen USB interfaces; fix HID report ids | Dan Halbert | |
| 2019-09-05 | Merge pull request #2121 from tannewt/markdown_autolink | Scott Shawcroft | |
| Add support for converting autolinks to BBCode | |||
| 2019-09-05 | Merge remote-tracking branch 'upstream/master' into stm32-ci-workflow | Hierophect | |
| 2019-09-04 | Merge remote-tracking branch 'adafruit/master' into choose-usb-devices-xac | Dan Halbert | |
| 2019-09-04 | use only one endpoint pair for MSC except on SAMD21 | Dan Halbert | |
