| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2021-03-31 | Merge pull request #4522 from tannewt/ble_fixup7.0.0-alpha.06.2.0-rc.0 | Dan Halbert | |
| Fix central pairing and crash on clear | |||
| 2021-03-31 | Fix central pairing and crash on clear | Scott Shawcroft | |
| The list_clear would crash if we tried to clear a NULL list. (It can happen if we haven't tried to discover any services.) | |||
| 2021-03-31 | Merge pull request #4521 from dhalbert/add-en_GB | Dan Halbert | |
| add en_GB translation to builds | |||
| 2021-03-31 | Merge pull request #4518 from jepler/fix-bogus-assertion | Dan Halbert | |
| mimxrt10xx: Fix bogus assertion. | |||
| 2021-03-31 | add en_GB translation to builds | Dan Halbert | |
| 2021-03-31 | Merge pull request #4517 from dhalbert/no-remote-wakeup | Scott Shawcroft | |
| Turn off remote wakeup in USB configuration descriptor | |||
| 2021-03-31 | Merge pull request #4519 from jepler/rasberrypi-minconfig | Scott Shawcroft | |
| raspberypi: Allow mpconfigboard to override additional items | |||
| 2021-03-31 | raspberypi: Allow mpconfigboard to override additional items | Jeff Epler | |
| This allows more options to be overridden to 0 in an mpconfigboard.mk. Improved: * FRAMEBUFFERIO, FULL_BUILD, BITOPS, PWMIO, RGBMATRIX, OTARYIO, PULSEIO, WATCHDOG Still problematic (pull requests welcome): * RP2PIO & NEOPIXEL_WRITE, possibly only if a status neopixel is defined * BITBANGIO, possibly only if BUSIO is enabled * RTC Incidentally, with RP2PIO & NEOPIXEL_WRITE, BITBANGIO, and RTC re-enabled I get ``` 323956 bytes used, 720524 bytes free in flash firmware space out of 1044480 bytes (1020.0kB). 12072 bytes used, 250072 bytes free in ram for stack and heap out of 262144 bytes (256.0kB). ``` Closes #4515 | |||
| 2021-03-31 | mimxrt10xx: Fix bogus assertion. | Jeff Epler | |
| .. as noted by @d-c-d | |||
| 2021-03-31 | Turn off remote wakeup in USB configuration descriptor | Dan Halbert | |
| 2021-03-30 | Merge pull request #4509 from lesamouraipourpre/time-error-param | Scott Shawcroft | |
| Add a missing parameter to an error message (Fixes #4505) | |||
| 2021-03-30 | Merge pull request #4513 from jepler/mimxrt10xx-uart-fault | Scott Shawcroft | |
| mimxrt1011: UART: Add additional error checking | |||
| 2021-03-30 | mimxrt1011: UART: Add additional error checking | Jeff Epler | |
| .. and make the 'invalid pin' messages standard. Closes #4502 | |||
| 2021-03-30 | Merge pull request #4511 from jepler/refine-bug-template | Jeff Epler | |
| Remove sentence about a link that fixes a problem | |||
| 2021-03-29 | Remove sentence about a link that fixes a problem | Jeff Epler | |
| Multiple times it has occurred that people left this line in a PR by mistake. it makes it look like they failed to include some useful information, but really is just a misunderstanding. Delete the text to reduce the chance of misunderstanding. | |||
| 2021-03-29 | Merge pull request #4507 from Neradoc/fix-alias-boards-modules | Jeff Epler | |
| fix list of modules for alias boards | |||
| 2021-03-29 | Merge pull request #4508 from dhalbert/rp2040-calc-sda-hold-time | Scott Shawcroft | |
| Calculate RP2040 SDA hold time | |||
| 2021-03-29 | Add a missing parameter to an error message (Fixes #4505) | James Carr | |
| 2021-03-29 | Merge pull request #4495 from tyomitch/patch-1 | Dan Halbert | |
| [ure] to save space, disable debug dumps by default | |||
| 2021-03-29 | Merge pull request #4501 from jepler/rgbmatrix-memoryview | Dan Halbert | |
| RGBMatrix: fix memoryview(matrix) | |||
| 2021-03-29 | Calculate RP2040 SDA hold time | Dan Halbert | |
| 2021-03-29 | no default value for support_matrix[board_id] | Neradoc | |
| will raise an error during build if things as not as expected as suggested by @jepler | |||
| 2021-03-29 | Merge pull request #4490 from weblate/weblate-circuitpython-main | Jeff Epler | |
| Translations update from Weblate | |||
| 2021-03-29 | fix list of modules for alias boards | Neradoc | |
| 2021-03-29 | Translated using Weblate (Chinese (Pinyin)) | hexthat | |
| Currently translated at 100.0% (970 of 970 strings) Translation: CircuitPython/main Translate-URL: https://hosted.weblate.org/projects/circuitpython/main/zh_Latn/ | |||
| 2021-03-27 | Merge remote-tracking branch 'origin/main' into main | Hosted Weblate | |
| 2021-03-27 | Merge pull request #4468 from jepler/metro-m7-dup-pins | Jeff Epler | |
| remove duplicate RX/TX pin lines | |||
| 2021-03-27 | RGBMatrix: fix memoryview(matrix) | Jeff Epler | |
| Typical test: ```python import displayio import rgbmatrix import board displayio.release_displays() matrix = rgbmatrix.RGBMatrix( width=128, bit_depth=4, rgb_pins=[board.GP0, board.GP1, board.GP2, board.GP3, board.GP4, board.GP5], addr_pins=[board.GP6, board.GP7, board.GP8, board.GP9], clock_pin=board.GP10, latch_pin=board.GP11, output_enable_pin=board.GP12) mem = memoryview(matrix) mem[0] = 65535 # OK mem[0] = 65536 # errors (out of range) ``` | |||
| 2021-03-27 | Merge remote-tracking branch 'origin/main' into main | Hosted Weblate | |
| 2021-03-26 | Merge pull request #4486 from kmatch98/displayio_area_expand | Dan Halbert | |
| `displayio` and `vectorio`: move to displayio_area_union and away from _expand | |||
| 2021-03-27 | Merge remote-tracking branch 'origin/main' into main | Hosted Weblate | |
| 2021-03-26 | Merge pull request #4499 from dhalbert/rp2040-lengthen-sda-tx-hold-time | Limor "Ladyada" Fried | |
| Length RP2040 I2C SDA hold time | |||
| 2021-03-27 | Merge remote-tracking branch 'origin/main' into main | Hosted Weblate | |
| 2021-03-26 | Merge pull request #4497 from jepler/spi-enhancements | Limor "Ladyada" Fried | |
| Spi enhancements | |||
| 2021-03-26 | Incorporate https://github.com/adafruit/pico-sdk/pull/2 | Dan Halbert | |
| 2021-03-26 | run uncrustify | Jeff Epler | |
| 2021-03-26 | Merge remote-tracking branch 'origin/main' into main | Hosted Weblate | |
| 2021-03-26 | Merge pull request #4487 from jepler/fix-spi-gaps | Jeff Epler | |
| Fix spi gaps | |||
| 2021-03-26 | adafruit_bus_device: SPIDevice: Fix so it works with bitbangio.SPI | Jeff Epler | |
| .. by calling methods, same as we did for I2C | |||
| 2021-03-26 | [ure] to save space, disable debug dumps by default | Artyom Skrobov | |
| Has to stay enabled in unix port for the sake of tests/extmod/ure_debug.py | |||
| 2021-03-26 | bitbangio.SPI.read: Support write_value, fix some other nits | Jeff Epler | |
| 2021-03-26 | Parenthesize double-division for clarity | Jeff Epler | |
| 2021-03-26 | mimxrt10xx: Use the proper "betweenTransferDelay" (et al) values | Jeff Epler | |
| Set the betweenTransferDelay to the SCK low-time, to avoid long pauses between bytes (transfers) while preventing the last SCK cycle in a byte from being a runt pulse. Compared to an earlier revision of this change, which just set the delays all to zero, this doesn't break using an AirLift, which was sensitive to the runt pulses (the simple loopback-wire test didn't detect the problem) | |||
| 2021-03-26 | mimxrt10xx: Factor out "transfer_common" | Jeff Epler | |
| .. and set the "MasterPcsContinuous" flag, which removes some of the gap between bytes of a single SPI transaction | |||
| 2021-03-26 | Freeze ESP32SPI into mimxrt1011_evk | Jeff Epler | |
| .. so that it is more conveniently like the metro m7 for my testing | |||
| 2021-03-26 | mimxrt10xx: busio: cap SPI baudrate at 30MHz per datasheet | Jeff Epler | |
| 2021-03-26 | Merge remote-tracking branch 'origin/main' into main | Hosted Weblate | |
| 2021-03-25 | Merge pull request #4378 from Gadgetoid/patch-remove-rp2040-i2c-bitbang | Dan Halbert | |
| RP2040: Remove short-write bitbang from I2C | |||
| 2021-03-26 | Translated using Weblate (English (United Kingdom)) | Gareth Coleman | |
| Currently translated at 99.5% (966 of 970 strings) Translation: CircuitPython/main Translate-URL: https://hosted.weblate.org/projects/circuitpython/main/en_GB/ | |||
| 2021-03-25 | Merge pull request #4481 from tannewt/external_devices | Scott Shawcroft | |
| Switch devices.h to nvm.toml data | |||
