summaryrefslogtreecommitdiff
path: root/py/circuitpy_defns.mk
AgeCommit message (Collapse)Author
2021-02-23Add bitmaptools moduleKevin Matocha
2021-02-19merge from upstream; re-alphabetizeDan Halbert
2021-02-18remove debug print during buildJeff Epler
2021-02-18bitops: rename from _bit_transpose, describe the algorithmJeff Epler
2021-02-18core: add bit_transpose functionJeff Epler
.. this version can only handle exactly 8 bits "across". The restriction may be relaxed in a future revision.
2021-02-12wipDan Halbert
2021-02-03Merge branch 'main' into webusb (trying to get CI back online)Kevin Banks
2021-01-25Most of the code we need has been pulled in from the tinyusb webusb_serial ↵Kevin Banks
demo. Still LOTS to do regarding descriptors.
2021-01-25Separate Socket and SSLSocket, add LWIP connectLucian Copeland
2021-01-20Add initial RP2040 supportScott Shawcroft
The RP2040 is new microcontroller from Raspberry Pi that features two Cortex M0s and eight PIO state machines that are good for crunching lots of data. It has 264k RAM and a built in UF2 bootloader too. Datasheet: https://pico.raspberrypi.org/files/rp2040_datasheet.pdf
2021-01-11Merge pull request #3957 from dhalbert/gcc10-debug-buildsScott Shawcroft
new CIRCUITPY_DEBUG flag passes DEBUG into C preprocessor
2021-01-08avoid inline compile errorsDan Halbert
2021-01-05Merge branch 'main' into msgpackiot49
2020-12-30Merge branch 'main' into touch-s2microDev
2020-12-18implement touch alarmmicroDev
2020-12-18Merge branch 'main' into ota-s2microDev
2020-12-18rename ota to dualbankmicroDev
2020-12-11Merge branch 'main' into msgpackScott Shawcroft
2020-12-10Initial SleepMemory codeDan Halbert
2020-12-08implement ota modulemicroDev
2020-12-07remove a ~ from doc that causes an error; add ExtType.c to circuitpy_defns.mkBernhard Boser
2020-12-02Merge pull request #3612 from gamblor21/bus_deviceScott Shawcroft
Moving Adafruit_CircuitPython_BusDevice to core
2020-12-02Merge remote-tracking branch 'adafruit/main' into msgpackScott Shawcroft
2020-12-01moved logic to shared-module and added documentationBernhard Boser
2020-12-01add module msgpackBernhard Boser
2020-11-25merge from upstream + wipDan Halbert
2020-11-25changed alarm.time APIDan Halbert
2020-11-23working, but need to avoid deep sleeping too fast before USB readyDan Halbert
2020-11-21wip: ResetReason to microcontroller.cpuDan Halbert
2020-11-20compilesDan Halbert
2020-11-19wipDan Halbert
2020-11-19WIP: redo API; not compiled yetDan Halbert
2020-11-16wip: initial code changes, starting from @tannewt's sleepio branchDan Halbert
2020-11-03Renamed to adafruit_bus_devicegamblor21
2020-10-31Initial SPI commitgamblor21
2020-10-27Add check for invalid io, function to disable all alarmsmicroDev
2020-10-27Add alarm_touch modulemicroDev
2020-10-27Fix build errormicroDev
2020-10-27restructure alarm modulesmicroDev
2020-10-27Renamed alarm modulesmicroDev
2020-10-27Get io wake workingmicroDev
2020-10-27Initial Sleep SupportmicroDev
2020-10-24Initial commitgamblor21
2020-10-12Merge pull request #3537 from jepler/update-protomatter-2Scott Shawcroft
rgbmatrix: update protomatter to 1.0.5 tag
2020-10-11remove warning that seems unneeded nowJeff Epler
2020-10-10rgbmatrix: update protomatter to 1.0.5 tagJeff Epler
this is compile-tested on stm32f405 feather matrixportal nrf52840 feather but not actually tested-tested.
2020-09-28canio: RemoteTransmissionRequest: Split implementation, keep one structureJeff Epler
This already begins obscuring things, because now there are two sets of shared-module functions for manipulating the same structure, e.g., common_hal_canio_remote_transmission_request_get_id and common_hal_canio_message_get_id
2020-09-21canio: rename from _canioJeff Epler
This reflects our belief that the API is stable enough to avoid incompatible changes during 6.x.
2020-09-21_canio: Minimal implementation for SAM E5x MCUsJeff Epler
Tested & working: * Send standard packets * Receive standard packets (1 FIFO, no filter) Interoperation between SAM E54 Xplained running this tree and MicroPython running on STM32F405 Feather with an external transceiver was also tested. Many other aspects of a full implementation are not yet present, such as error detection and recovery.
2020-09-14camera: Change APIKamil Tomaszewski