| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2020-08-28 | Merge pull request #3338 from jepler/endpoint-count-checking-stm32f4056.0.0-alpha.3 | Dan Halbert | |
| add endpoint count checking on stm32f405 | |||
| 2020-08-28 | Merge pull request #3238 from ElectronicCats/bastwifi | Dan Halbert | |
| Add Bastwifi by Electronic Cats | |||
| 2020-08-27 | stm: Specify max endpoints for stm32f405xx | Jeff Epler | |
| .. which is why we can't have HID or MIDI on the stm32f405 feather | |||
| 2020-08-27 | gen_usb_descriptor: Fix off-by-1 error in endpoint counting | Jeff Epler | |
| 2020-08-27 | Merge pull request #3320 from hierophect/stm32-meowbit-fix | Jeff Epler | |
| STM32: Fix Meowbit startup and associated bugs | |||
| 2020-08-27 | Merge pull request #3337 from hierophect/pulseout-errorstyle | Dan Halbert | |
| Fix problematic whitespace on pulseout parameter errors | |||
| 2020-08-27 | Merge pull request #3324 from hierophect/esp32-random | Dan Halbert | |
| Add random to ESP32-S2, fix it on STM32 | |||
| 2020-08-27 | Merge pull request #3315 from tannewt/add_psram | Dan Halbert | |
| Add PSRAM support to ESP32S2 | |||
| 2020-08-27 | translations | Lucian Copeland | |
| 2020-08-27 | Fix problematic whitespace on pulseout parameter errors | Lucian Copeland | |
| 2020-08-27 | Merge branch 'main' into stm32-meowbit-fix | hierophect | |
| 2020-08-27 | Merge branch 'main' into esp32-random | hierophect | |
| 2020-08-27 | Merge pull request #3333 from hierophect/esp32-enable-ulab | Dan Halbert | |
| Fix all assignments affected by inline makefile comments | |||
| 2020-08-26 | Merge pull request #3335 from jepler/fix-doc-build | sommersoft | |
| conf.py (docs): Reorder the steps of the doc build | |||
| 2020-08-26 | conf.py (docs): Reorder the steps of the doc build | Jeff Epler | |
| Since e121e267adacf6, the shared bindings matrix uses the stubs. Therefore, we must build them! This should fix the failure to build the docs on readthedocs.org. Neither @sommersoft nor I saw this locally since we had previously built the stubs. github CI didn't see it, because it manually builds the stubs in an earlier step of the build process, and does not clean the tree in between. | |||
| 2020-08-26 | Merge remote-tracking branch 'upstream/main' into stm32-meowbit-fix | Lucian Copeland | |
| 2020-08-26 | improve efficiency of stm32 random gen | Lucian Copeland | |
| 2020-08-26 | Disable ulab | Lucian Copeland | |
| 2020-08-26 | rename reader tool | Lucian Copeland | |
| 2020-08-26 | Merge pull request #3332 from jepler/shared-bindings-matrix-ulab | sommersoft | |
| Shared bindings matrix ulab | |||
| 2020-08-26 | Fix trailing whitespace errors across ports and docs | Lucian Copeland | |
| 2020-08-26 | Merge pull request #3330 from jepler/fix-line-endings | Dan Halbert | |
| microdev_micro_s2: Fix DOS line endings, they give my git fits | |||
| 2020-08-26 | shared_bindings_matrix: Use stubs, not shared-bindings | Jeff Epler | |
| This fixes a problem where things that were in extmod/ could not be listed. | |||
| 2020-08-26 | shared_bindings_matrix: Run in parallel | Jeff Epler | |
| .. this makes it take a fraction of the time, at least on systems with a lot of CPU threads. Even on my old laptop with a 2-core CPU it reduces the time from 55s to 27s. | |||
| 2020-08-26 | Fix DOS line endings, they give my git fits | Jeff Epler | |
| 2020-08-26 | Merge pull request #3322 from microDev1/microS2 | Dan Halbert | |
| Added board - microS2 | |||
| 2020-08-26 | Added PSRAM support | microDev | |
| 2020-08-26 | Remove whitespace in sdkconfig | Dan Halbert | |
| 2020-08-26 | Remove trailing whitespace | Dan Halbert | |
| 2020-08-26 | Remove trailing whitespace from sdkconfig | Dan Halbert | |
| 2020-08-26 | Trim trailing whitespace in pins.c | Dan Halbert | |
| 2020-08-26 | Remove trailing whitespace | Dan Halbert | |
| 2020-08-26 | Change microS2 board name | microDev | |
| 2020-08-26 | Change microS2 board name | microDev | |
| 2020-08-26 | Change microS2 board name | microDev | |
| 2020-08-26 | Change microS2 board name | microDev | |
| 2020-08-26 | Change microS2 board name | microDev | |
| 2020-08-26 | Change microS2 board name | microDev | |
| 2020-08-26 | Changed microS2 board name | microDev | |
| 2020-08-25 | Merge pull request #3318 from jepler/interrupt-serial-rx | Jeff Epler | |
| supervisor: check for interrupt during rx_chr | |||
| 2020-08-25 | Merge pull request #3325 from hierophect/esp32-enable-ulab | hierophect | |
| ESP32-S2: Enable ulab | |||
| 2020-08-25 | Enable ulab | Lucian Copeland | |
| 2020-08-25 | Add random to ESP32-S2, fix it on STM32 | Lucian Copeland | |
| 2020-08-25 | mp_obj_print_helper: Handle a ctrl-c that comes in during printing | Jeff Epler | |
| In #2689, hitting ctrl-c during the printing of an object with a lot of sub-objects could cause the screen to stop updating (without showing a KeyboardInterrupt). This makes the printing of such objects acutally interruptable, and also correctly handles the KeyboardInterrupt: ``` >>> l = ["a" * 100] * 200 >>> l ['aaaaaaaaaaaaaaaaaaaaaa...aaaaaaaaaaa', Traceback (most recent call last): File "<stdin>", line 1, in <module> KeyboardInterrupt: >>> ``` | |||
| 2020-08-25 | pyexec: Handle a ctrl-c that comes in "very late" | Jeff Epler | |
| In relatively unusual circumstances, such as entering `l = 17 ** 17777` at the REPL, you could hit ctrl-c, but not get KeyboardInterrupt. This can lead to a condition where the display would stop updating (#2689). | |||
| 2020-08-25 | Merge pull request #3299 from tannewt/add_pwmio | hierophect | |
| Split pulseio.PWMOut into pwmio | |||
| 2020-08-25 | Added microS2 specific config files | microDev | |
| 2020-08-25 | Added microS2 specific config files | microDev | |
| 2020-08-25 | Fix null dereference, invert auto_brightness to reenable screen | Lucian Copeland | |
| 2020-08-24 | Fix RGB LED use | Scott Shawcroft | |
