summaryrefslogtreecommitdiff
path: root/ports
AgeCommit message (Collapse)Author
2021-01-13ports/unix: Fix parallel build problemJeff Epler
This is the same as I added to mpy-cross at e666e86035d5, see #3074
2020-12-23FrequencyIn: do not raise in interrupt handlerDan Halbert
2020-12-21BLE fixesDan Halbert
2020-11-02Rev C Feather M4 CAN pin changesDan Halbert
2020-11-01 restore analogio to feather_m0_rfm9x/rfm69 buildsJerry Needell
2020-10-28matrixportal ESP TX and RX pins were swappedDan Halbert
2020-10-21 fix CPB SPI pin definitionsJerry Needell
2020-10-19Correct pins to not reset.Scott Shawcroft
They must have the PORT_ prefix otherwise they mask the wrong pins. Fixes #3552
2020-10-16Merge pull request #3564 from BHDynamics/dynossat_eduScott Shawcroft
Add DynOSSAT-EDU boards
2020-10-16Merge pull request #3560 from dhalbert/pervasive-bleio-hciScott Shawcroft
enable CIRCUITPY_BLEIO_HCI on non-nRF boards where it will fit
2020-10-16Add USB VID&PIDEnrique Casado
2020-10-15disable on winterbloom_sol and thunderpackDan Halbert
2020-10-15Merge pull request #3555 from UnexpectedCircuitPython/mainScott Shawcroft
Added default LWIP hostnames to FeatherS2 boards
2020-10-15Merge pull request #3530 from askpatrickw/hostname-exampleScott Shawcroft
Set default hostname
2020-10-15no _bleio for litex; ESP32S2 defines BIT() alreadyDan Halbert
2020-10-16Added default LWIP hostnames to FeatherS2 boardsSeon Rozenblum
2020-10-15cxd56 needed more precise include for __packed; needed SRC_C += on some portsDan Halbert
2020-10-15Merge pull request #3547 from microDev1/wifiHostScott Shawcroft
Add method to set custom hostname
2020-10-15enable CIRCUITPY_BLEIO_HCI on non-nRF boards where it will fitDan Halbert
2020-10-15Add DynOSSAT-EDU boardsEnrique Casado
2020-10-14Merge pull request #3554 from gamblor21/move_ordereddictDan Halbert
Moved ORDEREDDICT define to central location
2020-10-14Removed ordered dict for all SAMD21gamblor21
2020-10-14Removed MICROPY_PY_COLLECTIONS_NAMEDTUPLE__ASDICT from unix coveragegamblor21
2020-10-14Merge pull request #3549 from tannewt/stm_alarm_tweakScott Shawcroft
Fix stm sleep too long
2020-10-14boards/bdmicro_vina_d51/pins.c: Fix illegal QSTR name (hyphen).Brian Dean
2020-10-14Update wifi hostname methodmicroDev
2020-10-13Merge pull request #3550 from bd34n/bdmicro_vina_d51Limor "Ladyada" Fried
Add new board to atmel-samd port: bdmicro_vina_d51
2020-10-13Moved ORDEREDDICT define to central locationgamblor21
2020-10-13Fix stm sleep too longScott Shawcroft
2020-10-13Add new board to atmel-samd port: bdmicro_vina_d51Brian Dean
2020-10-13Merge pull request #3546 from tannewt/rtc_irqScott Shawcroft
Finer grained, per port tick locking
2020-10-13Remove readreq when changing continuousScott Shawcroft
2020-10-13Merge pull request #3545 from tannewt/stm_rtcScott Shawcroft
Fix STM RTC read so it's atomic.
2020-10-13Add method to set custom hostnamemicroDev
2020-10-12Finer grained, per port tick lockingScott Shawcroft
Fixes #3504 hopefully.
2020-10-12Fix STM RTC read so it's atomic.Scott Shawcroft
Fixes #3376
2020-10-12Merge pull request #3538 from jepler/parallel-qstrlastScott Shawcroft
build: parallelize the qstr build steps
2020-10-12Merge pull request #3540 from WarriorOfWire/async_syntaxScott Shawcroft
__await__ magic method and async/await
2020-10-12Merge pull request #3514 from hierophect/esp32-analogoutScott Shawcroft
ESP32-S2: AnalogOut
2020-10-12esp32s2: fix build after qstr rule changesJeff Epler
2020-10-11leftover newlinesKenny
2020-10-11remove unnecessary board configuration and address feedbackKenny
2020-10-11Turn off async for circuitplayground expressKenny
Firmware too large
2020-10-10disable async/await on a several small ucontrollerswarriorofwire
2020-10-10fix for https://github.com/adafruit/circuitpython/issues/3534lady ada
2020-10-09Merge pull request #3532 from tannewt/samd21_autoreloadScott Shawcroft
Fix autoreload on SAMD21
2020-10-09Merge remote-tracking branch 'upstream/main' into esp32-analogoutLucian Copeland
2020-10-09Merge pull request #3501 from hierophect/esp32-analoginScott Shawcroft
ESP32S2: Add AnalogIn
2020-10-09Merge pull request #3522 from tannewt/imx_metroScott Shawcroft
Unify iMX RT flash config and add Metro M7 1011
2020-10-09Fix autoreload on SAMD21Scott Shawcroft
The issue was that a time.sleep() would set the RTC wake up further into the future even if we wanted to tick every ms. Ticking every ms is used to time the autoreload delay and without it, autoreload doesn't work. Fixes #3528