| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2021-03-09 | fix trailing whitespace | DavePutz | |
| 2021-03-09 | Moved pin wait to an initial exec | DavePutz | |
| 2021-03-09 | Update to agree with modified StateMachine.h | DavePutz | |
| 2021-03-08 | Merge branch 'main' into issue_4111 | DavePutz | |
| 2021-03-08 | Added check for maxlen | root | |
| 2021-03-08 | Merge branch 'issue_4111' of https://github.com/DavePutz/circuitpython into ↵ | root | |
| issue_4111 | |||
| 2021-03-08 | Added check for maxlen | root | |
| 2021-03-08 | Removed leftover debug code | DavePutz | |
| 2021-03-05 | raspberrypi: move landmine Makefile comments | Jeff Epler | |
| 2021-03-05 | WIPrp2040: Implement IncrementalEncoder | Jeff Epler | |
| Any two consecutive pins can be used for an IncrementalEncoder Testing performed: Put a synthesized (few hundred counts per second) quadrature signal into GP2/3 and read the encoder out. Performed filesystem operations at the same time to stress test it. The reasons for not using common_hal_rp2pio_statemachine_readinto are commented on. | |||
| 2021-03-04 | Merge branch 'main' into issue_4111 | DavePutz | |
| 2021-03-04 | Update PulseOut.c | DavePutz | |
| 2021-03-04 | Update PulseOut.h | DavePutz | |
| 2021-03-04 | Changed interrupt to per-word basis; cleaned up other small items | DavePutz | |
| 2021-03-04 | StateMachine.h: Add header for declaration of mcu_pin_obj_t typedef | Jeff Epler | |
| 2021-03-04 | PDMIn: Add missing deinit call | Jeff Epler | |
| 2021-03-04 | rp2pio: Add pins_are_sequential | Jeff Epler | |
| This can be used where the standard API calls for a list of pins, to check that they satisfy the requirements of the rp2pio state machine, e.g., ```python def __init__(self, pin_a, pin_b): if not rp2pio.pins_are_sequential([pin_a, pin_b]): raise ValueError("Pins must be sequential") ``` | |||
| 2021-03-04 | StateMachine: Add pull up/down for inputs | Jeff Epler | |
| 2021-03-04 | StateMachine: Add in_available property | Jeff Epler | |
| I named the property `in_available` because it is similar to pyserial. However, it indicates the number of words in the fifo, not the number of bytes. | |||
| 2021-03-04 | rp2040 use normal usb_irq_handler() | hathach | |
| 2021-03-03 | Merge pull request #4319 from jepler/feather-default-uart | Dan Halbert | |
| feather rp2040: enable default board.UART | |||
| 2021-03-03 | feather rp2040: enable default board.UART | Jeff Epler | |
| 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-03 | Update mpconfigport.mk | DavePutz | |
| 2021-03-03 | Update call to rp2pio_statemachine_construct | DavePutz | |
| 2021-03-03 | Merge pull request #4254 from gamblor21/rp2040_countio | Scott Shawcroft | |
| Rp2040 countio | |||
| 2021-03-03 | Merge pull request #4265 from DavePutz/pio_soft_reset | Scott Shawcroft | |
| Clear out PIOs and State Machines on RP2040 soft reset | |||
| 2021-03-03 | add 1sec timeouts for I2C read and write | Dan Halbert | |
| 2021-03-02 | Fixed merge | gamblor21 | |
| 2021-03-02 | works on nearly all sensors | Dan Halbert | |
| 2021-03-02 | Merge pull request #4312 from jepler/feather-rp2040-led | Dan Halbert | |
| feather rp2040: add board.LED | |||
| 2021-03-02 | Update mpconfigport.mk | DavePutz | |
| 2021-03-02 | Update mpconfigport.mk | DavePutz | |
| 2021-03-02 | Update mpconfigport.mk to get builds working | DavePutz | |
| 2021-03-02 | Update PulseIn.c | DavePutz | |
| 2021-03-02 | Merge branch 'main' into rp2040_countio | Mark | |
| 2021-03-02 | Counter and PWMOut slice conflict check | gamblor21 | |
| 2021-03-02 | move LED to the right spot in the file | Jeff Epler | |
| 2021-03-02 | Merge pull request #4186 from jepler/update-protomatter-rp2 | Jeff Epler | |
| Enable protomatter on RP2040 builds | |||
| 2021-03-02 | Merge pull request #4276 from bergdahl/patch-1 | Dan Halbert | |
| Update StateMachine.c | |||
| 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 | feather rp2040: add board.LED | Jeff Epler | |
| 2021-03-02 | Merge pull request #4177 from microDev1/nvm-rp | Scott Shawcroft | |
| RP2040: Support for NVM | |||
| 2021-03-02 | Apply suggestions from code review | Dan Halbert | |
| copyediting | |||
| 2021-03-02 | Merge pull request #4309 from jepler/rp2040-interrupt-pio | Scott Shawcroft | |
| rp2pio: allow keyboard interrupt while waiting for tx fifo to empty (& stall) | |||
| 2021-03-02 | raspberry: switch pico back to the boot2 for W25Q16 | Jeff Epler | |
| Presumably, switching it to generic hurt performance a bit. I verified that the build-raspberry_pi_pico/boot2_padded_checksummed.S built file has the same checksum as the old bs2_default_padded_checksummed.S | |||
| 2021-03-02 | minor structural modification | microDev | |
| 2021-03-01 | raspberrypi: allow directly specifying the original boot .S file | Jeff Epler | |
| .. all the necessary steps to transform it into a padded, checksummed file are now done by the build system. Since it is assigned by "?=", it _should_ be the case that individual builds can override it. I did not "test" this per se, but it gives the same content and checksum (except for the identifying comment with a path) as #4302. | |||
| 2021-03-01 | rp2pio: allow keyboard interrupt while waiting for tx fifo to empty (& stall) | Jeff Epler | |
