| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2021-03-03 | Merge pull request #4315 from dhalbert/rp2040-i2c-short-writes | Dan Halbert | |
| RP2040: Implement short I2C writes (2 bytes or less) using bitbangio | |||
| 2021-03-02 | Merge pull request #4186 from jepler/update-protomatter-rp2 | Jeff Epler | |
| Enable protomatter on RP2040 builds | |||
| 2021-03-02 | Merge remote-tracking branch 'adafruit/main' into rp2040-i2c-short-writes | Dan Halbert | |
| 2021-03-02 | wip | Dan Halbert | |
| 2021-03-02 | Merge pull request #4233 from pewpew-game/displayio-group-list | Scott Shawcroft | |
| displayio: make Group use a python list internally | |||
| 2021-03-01 | Merge pull request #4256 from kmatch98/bt_cleanup | Scott Shawcroft | |
| Add `bitmaptools` module | |||
| 2021-03-01 | Merge remote-tracking branch 'origin/main' into update-protomatter-rp2 | Jeff Epler | |
| 2021-03-01 | Fix formatting in SPI docs | ajs256 | |
| Close #4293 by changing `..note::` to `.. note::`. | |||
| 2021-02-27 | Separate out mp_obj_list_insert for use in display.Group | Radomir Dopieralski | |
| Note that for some reason this makes the binary 500 bytes larger! | |||
| 2021-02-27 | Remove max_size from displayio.Group | Radomir Dopieralski | |
| Still accept it as an argument. Add deprecation note. | |||
| 2021-02-27 | Add displayio.Group.sort() method | Radomir Dopieralski | |
| 2021-02-26 | Merge remote-tracking branch 'origin/main' into update-protomatter-rp2 | Jeff Epler | |
| 2021-02-25 | Merge remote-tracking branch 'adafruit/main' into busio-uart-rp | Scott Shawcroft | |
| 2021-02-25 | A few minor fixes for corner cases | Scott Shawcroft | |
| * Always clear the peripheral interrupt so we don't hang when full * Store the ringbuf in the object so it gets collected when we're alive * Make UART objects have a finaliser so they are deinit when their memory is freed * Copy bytes into the ringbuf from the FIFO after we read to ensure the interrupt is enabled ASAP * Copy bytes into the ringbuf from the FIFO before measuring our rx available because the interrupt is based on a threshold (not > 0). For example, a single byte won't trigger an interrupt. | |||
| 2021-02-24 | Rearrange input parameters | Kevin Matocha | |
| 2021-02-25 | implement suggested changes | microDev | |
| - add internal buffering - rtc initialization fix | |||
| 2021-02-24 | yet another sphinx try | Kevin Matocha | |
| 2021-02-24 | Another sphinx try | Kevin Matocha | |
| 2021-02-24 | More sphinx attempts | Kevin Matocha | |
| 2021-02-24 | More sphinx fixes | Kevin Matocha | |
| 2021-02-24 | Sphinx docstring updates | Kevin Matocha | |
| 2021-02-23 | Add bitmaptools module | Kevin Matocha | |
| 2021-02-19 | merge from upstream; re-alphabetize | Dan Halbert | |
| 2021-02-19 | handle reads/writes larger than buffers; add .write_timeout | Dan Halbert | |
| 2021-02-19 | uart implementation for rp2040 | microDev | |
| 2021-02-18 | requested changes | Jeff Epler | |
| 2021-02-18 | bitops: fix argument parsing | Jeff Epler | |
| 2021-02-18 | bitops: doc correction | Jeff Epler | |
| 2021-02-18 | bitops: rename from _bit_transpose, describe the algorithm | Jeff Epler | |
| 2021-02-18 | _bit_transpose: fix docs | Jeff Epler | |
| 2021-02-18 | bit_transpose: Support from 2 to 7 strands, not just 8 | Jeff Epler | |
| 2021-02-18 | core: add bit_transpose function | Jeff Epler | |
| .. this version can only handle exactly 8 bits "across". The restriction may be relaxed in a future revision. | |||
| 2021-02-17 | add timeout; finish up for PR | Dan Halbert | |
| 2021-02-16 | works! no timeouts | Dan Halbert | |
| 2021-02-15 | wip: usb_cdc.serials | Dan Halbert | |
| 2021-02-15 | Merge remote-tracking branch 'adafruit/main' into secondary-cdc | Dan Halbert | |
| 2021-02-12 | wip | Dan Halbert | |
| 2021-02-12 | fix off-by-one PWM top issue | Dan Halbert | |
| 2021-02-12 | Enable protomatter on RP2040 builds | Jeff Epler | |
| Also found a race condition between timer_disable and redraw, which would happen if I debugger-paused inside common_hal_rgbmatrix_timer_disable or put a delay or print inside it. That's what pausing inside reconstruct fixes. So that the "right timer" can be chosen, `timer_allocate` now gets the `self` pointer. It's guaranteed at this point that the pin information is accurate, so you can e.g., find a PWM unit related to the pins themselves. This required touching each port to add the parameter even though it's unused everywhere but raspberrypi. | |||
| 2021-02-11 | merge from upstream; complicated webusb merge | Dan Halbert | |
| 2021-02-11 | Remove adafruit_bus_device.SPIDevice.spi | Dan Halbert | |
| 2021-02-09 | sdcardio: add a note about sharing the SPI bus with SD cards and other devices | Jeff Epler | |
| Similar to https://github.com/adafruit/Adafruit_CircuitPython_SD/pull/44 | |||
| 2021-02-08 | Merge pull request #3536 from pewpew-game/pew-get-ticks | Dan Halbert | |
| Fix #3504: Don't use time module in pew.tick() | |||
| 2021-02-08 | Merge pull request #4136 from hierophect/socket-portmax | Dan Halbert | |
| Socket: fix inconsistencies in argument types | |||
| 2021-02-08 | Merge pull request #4146 from gamblor21/busdevice_write_read_fix | Dan Halbert | |
| Fix write_then_readinto in adafruit_bus_device I2CDevice | |||
| 2021-02-08 | wip | Dan Halbert | |
| 2021-02-06 | Fix write_then_readinto | gamblor21 | |
| 2021-02-05 | Make timeout core types consistent | Lucian Copeland | |
| 2021-02-02 | Merge pull request #4049 from hierophect/sslsocket | Scott Shawcroft | |
| Separate SSLSocket from Socket | |||
| 2021-02-02 | Merge pull request #4114 from tannewt/spidevice_spi | Scott Shawcroft | |
| Add .spi accessor to SPIDevice | |||
