| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2020-12-30 | Merge pull request #3850 from microDev1/touch-s26.1.0-beta.3 | Jeff Epler | |
| Support for Touch Alarm | |||
| 2020-12-30 | Merge pull request #3905 from dhalbert/update-frozen-6.1.0-beta.3 | Jeff Epler | |
| update frozen libs for 6.1.0-beta.3 | |||
| 2020-12-31 | update wake-alarm implementation | microDev | |
| 2020-12-31 | enable light-sleep functionality | microDev | |
| 2020-12-30 | update frozen libs for 6.1.0-beta.3 | Dan Halbert | |
| 2020-12-30 | Merge pull request #3900 from jepler/restore-frozen-busdevice | Dan Halbert | |
| Restore frozen adafruit_bus_device module | |||
| 2020-12-30 | Merge pull request #3896 from hugodahl/fix-esp32-s2-readme-typo | Limor "Ladyada" Fried | |
| Fix minor typo in ESP32-S2 README | |||
| 2020-12-30 | Merge branch 'main' into touch-s2 | microDev | |
| 2020-12-30 | Revert "Removing frozen libs" | Jeff Epler | |
| This reverts commit 23ed3ef971f8f38497337874da39273e5ae090d7. | |||
| 2020-12-30 | add pretend-to-sleep functionality | microDev | |
| 2020-12-29 | Fix minor typo in ESP32S2 readme | Hugo Dahl | |
| 2020-12-29 | Merge pull request #3893 from weblate/weblate-circuitpython-main | Jeff Epler | |
| Translations update from Weblate | |||
| 2020-12-29 | Translated using Weblate (French) | Hugo Dahl | |
| Currently translated at 100.0% (889 of 889 strings) Translation: CircuitPython/main Translate-URL: https://hosted.weblate.org/projects/circuitpython/main/fr/ | |||
| 2020-12-29 | Translated using Weblate (French) | Hugo Dahl | |
| Currently translated at 100.0% (889 of 889 strings) Translation: CircuitPython/main Translate-URL: https://hosted.weblate.org/projects/circuitpython/main/fr/ | |||
| 2020-12-29 | Merge pull request #3860 from weblate/weblate-circuitpython-main | Jeff Epler | |
| Translations update from Weblate | |||
| 2020-12-29 | Merge branch 'origin/main' into Weblate. | Hosted Weblate | |
| 2020-12-29 | Translated using Weblate (Portuguese (Brazil)) | Wellington Terumi Uemura | |
| Currently translated at 100.0% (889 of 889 strings) Translation: CircuitPython/main Translate-URL: https://hosted.weblate.org/projects/circuitpython/main/pt_BR/ | |||
| 2020-12-29 | Merge pull request #3888 from microDev1/fix-reset-pin | Jeff Epler | |
| FIX : common_hal_reset_pin() | |||
| 2020-12-28 | Merge branch 'origin/main' into Weblate. | Hosted Weblate | |
| 2020-12-28 | Merge pull request #3878 from xobs/fomu-fixes-6.0.0 | Scott Shawcroft | |
| Fomu fixes for 6.0.0 | |||
| 2020-12-28 | Merge branch 'origin/main' into Weblate. | Hosted Weblate | |
| 2020-12-28 | Merge pull request #3868 from BennyE/wifi-enhancement-countrycode | Scott Shawcroft | |
| esp32-s2: wifi enhancement to include countrycode | |||
| 2020-12-28 | Update translation files | Hosted Weblate | |
| Updated by "Update PO files to match POT (msgmerge)" hook in Weblate. Translation: CircuitPython/main Translate-URL: https://hosted.weblate.org/projects/circuitpython/main/ | |||
| 2020-12-28 | Merge branch 'origin/main' into Weblate. | Hosted Weblate | |
| 2020-12-28 | Translated using Weblate (Swedish) | Jonny Bergdahl | |
| Currently translated at 100.0% (884 of 884 strings) Translation: CircuitPython/main Translate-URL: https://hosted.weblate.org/projects/circuitpython/main/sv/ | |||
| 2020-12-28 | Merge pull request #3830 from tannewt/pin_alarm | Dan Halbert | |
| Add pin alarming | |||
| 2020-12-28 | update common_hal_reset_pin() | microDev | |
| 2020-12-27 | Downgrade OTA API for IDF 4.2 | Scott Shawcroft | |
| 2020-12-26 | Add include to tick.c for mp_hal_is_interrupted() | Dan Halbert | |
| 2020-12-26 | Merge branch 'origin/main' into Weblate. | Hosted Weblate | |
| 2020-12-26 | Merge pull request #3881 from microDev1/update-ci | Dan Halbert | |
| Re-Arrange CI Actions | |||
| 2020-12-26 | re-arrange ci actions | microDev | |
| 2020-12-25 | Merge branch 'origin/main' into Weblate. | Hosted Weblate | |
| 2020-12-25 | Merge pull request #3880 from digixx/patch-1 | Jeff Epler | |
| SAMD51: change of DAC power setting | |||
| 2020-12-25 | SAMD51: change of DAC power setting | Uwe Gartmann | |
| Fixes wrong DAC output levels at high data rate closes adafruit#3796 | |||
| 2020-12-24 | Updating comment to reflect feedback of espressif from IDFGH-4486 -> works ↵ | BennyE | |
| correct as per the protocol | |||
| 2020-12-24 | litex: move more critical code to RAM | Sean Cross | |
| The XIP SPI flash on Fomu is slow, which results in certain operations taking a long time. This becomes a problem for time-critical operations such as USB. Move various calls into RAM to improve performance. This includes the call to __modsi3 and __udivsi3 which are used by the supervisor handler to determine if periodic callbacks need to be run. This finishes fixing #3841 Signed-off-by: Sean Cross <sean@xobs.io> | |||
| 2020-12-24 | litex: ensure we don't re-enable interrups during ISR | Sean Cross | |
| During an interrupt handler, interrupts are implicitly disabled. They will be re-enabled when the interrupt handler returns. Due to some changes that were made, varous calls will re-enable interrupts after they're finished. Examples of this include calling `CALLBACK_CRITICAL_END` and getting the number of ticks with `port_get_raw_ticks()`. This patch prevents this from happening by doing two things: 1. Use standard calls in `port_get_raw_ticks()` to disable and re-enable interrupts, preventing nesting issues, and 2. Increase the nesting count inside `isr()`, reflecting the implicit call that is made by hardware when an interrupt is handled This helps to address #3841. Signed-off-by: Sean Cross <sean@xobs.io> | |||
| 2020-12-23 | make translate yet again; forgot to fetch submodules to fresh clone | Dan Halbert | |
| 2020-12-23 | make translate again | Dan Halbert | |
| 2020-12-23 | Merge branch 'main' into pin_alarm | Dan Halbert | |
| 2020-12-24 | Update translation files | Hosted Weblate | |
| Updated by "Update PO files to match POT (msgmerge)" hook in Weblate. Translation: CircuitPython/main Translate-URL: https://hosted.weblate.org/projects/circuitpython/main/ | |||
| 2020-12-24 | Merge branch 'origin/main' into Weblate. | Hosted Weblate | |
| 2020-12-23 | Merge pull request #3874 from dhalbert/ble-fixes-6.0.x-to-main | Dan Halbert | |
| Merge ble-fixes from 6.0.x to main | |||
| 2020-12-24 | implementing suggested changes | BennyE | |
| 2020-12-23 | Make translate | Scott Shawcroft | |
| 2020-12-23 | Merge branch 'origin/main' into Weblate. | Hosted Weblate | |
| 2020-12-23 | Merge pull request #3869 from jepler/disable-busdevice-in-core | Dan Halbert | |
| circuitpy_mpconfig.mk: Unconditionally disable CIRCUITPY_BUSDEVICE | |||
| 2020-12-23 | make translate for main | Dan Halbert | |
| 2020-12-23 | BLE fixes | Dan Halbert | |
