| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2021-02-20 | Added new line | ZodiusInfuser | |
| 2021-02-20 | Added new line | ZodiusInfuser | |
| 2021-02-20 | Added new line | ZodiusInfuser | |
| 2021-02-20 | Added other files for PicoSystem | ZodiusInfuser | |
| 2021-02-20 | Added board.c for PicoSystem | ZodiusInfuser | |
| 2021-02-20 | Added other files for Keybow2040 | ZodiusInfuser | |
| 2021-02-20 | Added board.c for Keybow2040 | ZodiusInfuser | |
| 2021-02-20 | Added other files for Tiny2040 | ZodiusInfuser | |
| 2021-02-20 | Added board.c for Tiny2040 | ZodiusInfuser | |
| 2021-02-19 | merge from upstream; re-alphabetize | Dan Halbert | |
| 2021-02-19 | Delete pimoroni_tiny2040 | ZodiusInfuser | |
| 2021-02-19 | Create pimoroni_tiny2040 | ZodiusInfuser | |
| 2021-02-19 | uart implementation for rp2040 | microDev | |
| 2021-02-18 | Merge pull request #4219 from jepler/bit_transpose | Jeff Epler | |
| Add Bit transpose function to support piopixl8 | |||
| 2021-02-18 | bitops: rename from _bit_transpose, describe the algorithm | Jeff Epler | |
| 2021-02-18 | Initial fix, but bitbangio timing may be off | Dan Halbert | |
| 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-18 | fix nvm rewrite | microDev | |
| 2021-02-17 | raspberrypi: implement os.urandom | Jeff Epler | |
| Since the datasheet cast some doubt on the strength of the "rosc_hw->randombit", I use the SHA256 hash function to create a high quality random seed from random values of uncertain entropy, as well as to generate a sequence of random values from that seed using SHA256 as a cryptographically-secure random number generator. In practice, it produces over 100kB/s of random data which does not have any gross problems according to _PractRand_. | |||
| 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-13 | handle 100% duty cycle; improve actual_frequency calc | 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-12 | Merge branch 'main' into nvm-rp | microDev | |
| 2021-02-12 | implement suggested changes | microDev | |
| - update FLASH_FIRMWARE length - use linker script define value | |||
| 2021-02-11 | Merge pull request #4188 from ladyada/main | Dan Halbert | |
| QT Py with RP2040 | |||
| 2021-02-11 | QT Py with RP2040 | lady ada | |
| 2021-02-11 | merge from upstream; complicated webusb merge | Dan Halbert | |
| 2021-02-11 | nvm implementation for rp2040 | microDev | |
| 2021-02-09 | Add PWM based audio playback | Scott Shawcroft | |
| See https://learn.adafruit.com/circuitpython-essentials/circuitpython-audio-out to get started. Fixes #4037 | |||
| 2021-02-09 | Merge pull request #4165 from DavePutz/issue_4143 | Scott Shawcroft | |
| Issue 4143 - Fixed marking a PWM slice incorrectly as variable frequency | |||
| 2021-02-09 | Fix check for variable PWM frequency | root | |
| 2021-02-08 | Merge pull request #4160 from gamblor21/rp2040_neopixel_pin_fix | Dan Halbert | |
| RP2040 Set the neopixel pin as output after PIO use | |||
| 2021-02-08 | Merge pull request #4155 from jepler/rpi-pio-background | Dan Halbert | |
| rp2pio: Transfer up to 32 bytes before checking background tasks | |||
| 2021-02-08 | Set the pin as output after PIO use | gamblor21 | |
| 2021-02-08 | rp2pio: Transfer up to 32 bytes before checking background tasks | Jeff Epler | |
| @Jerryneedell noticed that this problem affected strips short enough to not use the DMA peripheral, thanks for the hot tip! Instead of checking for background tasks after every byte transfer, try up to 32 transfers before attending to background tasks. This fixes the problem I was seeing on my 5-pixel circuit. Closes #4135. | |||
| 2021-02-06 | Fix maximum PIO instructions | Jason Nichols | |
| 2021-02-05 | Update to the very latest SDK w/GP15 restore | Scott Shawcroft | |
| Also adds unique id support Fixes #4039 and hopefully #4107 | |||
| 2021-02-05 | Merge pull request #4137 from ferret-guy/smps-mode-pin-rpi-pico | Scott Shawcroft | |
| Add SMPS mode pin to Raspi Pico pins.c | |||
| 2021-02-05 | Merge pull request #4125 from xorbit/main | Scott Shawcroft | |
| Add A3 pin to Raspberry Pi Pico | |||
| 2021-02-05 | Add SMPS mode pin to Raspi Pico pins.c | Mark Omo | |
| Add SMPS mode pin to Raspi Pico pins.c; see section "4.3. Using the ADC" of the Pico datasheet for discussion. Driving this pin high forces the onboard regulator into a lower noise PWM mode. | |||
| 2021-02-05 | Add alternate name `VOLTAGE_MONITOR` for `A3` | Patrick Van Oosterwijck | |
| 2021-02-04 | usb descriptors all set; rework of enabling for USB devices | Dan Halbert | |
| 2021-02-04 | raspberrypi: implement reset, reset_to_bootloader | Jeff Epler | |
| This makes all the following work: * normal microcontroller.reset() * reset into safe mode or UF2 bootloader via microcontroller.on_next_reset() * reset into UF2 bootloader via the "1200 baud trick" The implementation of reset_cpu is from micropython. | |||
| 2021-02-04 | Add A3 pin to Raspberry Pi Pico | Patrick Van Oosterwijck | |
| We want to be able to use this to measure VSYS. | |||
| 2021-02-03 | Initial commit. Edited error messages in .c files | BiffoBear | |
| 2021-02-01 | Merge pull request #4110 from microDev1/rtc-rp | Scott Shawcroft | |
| RP2040: Support for RTC | |||
| 2021-02-02 | rtc implementation for rp2040 | microDev | |
