summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2020-08-28Merge pull request #3338 from jepler/endpoint-count-checking-stm32f4056.0.0-alpha.3Dan Halbert
add endpoint count checking on stm32f405
2020-08-28Merge pull request #3238 from ElectronicCats/bastwifiDan Halbert
Add Bastwifi by Electronic Cats
2020-08-27stm: Specify max endpoints for stm32f405xxJeff Epler
.. which is why we can't have HID or MIDI on the stm32f405 feather
2020-08-27gen_usb_descriptor: Fix off-by-1 error in endpoint countingJeff Epler
2020-08-27Merge pull request #3320 from hierophect/stm32-meowbit-fixJeff Epler
STM32: Fix Meowbit startup and associated bugs
2020-08-27Merge pull request #3337 from hierophect/pulseout-errorstyleDan Halbert
Fix problematic whitespace on pulseout parameter errors
2020-08-27Merge pull request #3324 from hierophect/esp32-randomDan Halbert
Add random to ESP32-S2, fix it on STM32
2020-08-27Merge pull request #3315 from tannewt/add_psramDan Halbert
Add PSRAM support to ESP32S2
2020-08-27translationsLucian Copeland
2020-08-27Fix problematic whitespace on pulseout parameter errorsLucian Copeland
2020-08-27Merge branch 'main' into stm32-meowbit-fixhierophect
2020-08-27Merge branch 'main' into esp32-randomhierophect
2020-08-27Merge pull request #3333 from hierophect/esp32-enable-ulabDan Halbert
Fix all assignments affected by inline makefile comments
2020-08-26Merge pull request #3335 from jepler/fix-doc-buildsommersoft
conf.py (docs): Reorder the steps of the doc build
2020-08-26conf.py (docs): Reorder the steps of the doc buildJeff 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-26Merge remote-tracking branch 'upstream/main' into stm32-meowbit-fixLucian Copeland
2020-08-26improve efficiency of stm32 random genLucian Copeland
2020-08-26Disable ulabLucian Copeland
2020-08-26rename reader toolLucian Copeland
2020-08-26Merge pull request #3332 from jepler/shared-bindings-matrix-ulabsommersoft
Shared bindings matrix ulab
2020-08-26Fix trailing whitespace errors across ports and docsLucian Copeland
2020-08-26Merge pull request #3330 from jepler/fix-line-endingsDan Halbert
microdev_micro_s2: Fix DOS line endings, they give my git fits
2020-08-26shared_bindings_matrix: Use stubs, not shared-bindingsJeff Epler
This fixes a problem where things that were in extmod/ could not be listed.
2020-08-26shared_bindings_matrix: Run in parallelJeff 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-26Fix DOS line endings, they give my git fitsJeff Epler
2020-08-26Merge pull request #3322 from microDev1/microS2Dan Halbert
Added board - microS2
2020-08-26Added PSRAM supportmicroDev
2020-08-26Remove whitespace in sdkconfigDan Halbert
2020-08-26Remove trailing whitespaceDan Halbert
2020-08-26Remove trailing whitespace from sdkconfigDan Halbert
2020-08-26Trim trailing whitespace in pins.cDan Halbert
2020-08-26Remove trailing whitespaceDan Halbert
2020-08-26Change microS2 board namemicroDev
2020-08-26Change microS2 board namemicroDev
2020-08-26Change microS2 board namemicroDev
2020-08-26Change microS2 board namemicroDev
2020-08-26Change microS2 board namemicroDev
2020-08-26Change microS2 board namemicroDev
2020-08-26Changed microS2 board namemicroDev
2020-08-25Merge pull request #3318 from jepler/interrupt-serial-rxJeff Epler
supervisor: check for interrupt during rx_chr
2020-08-25Merge pull request #3325 from hierophect/esp32-enable-ulabhierophect
ESP32-S2: Enable ulab
2020-08-25Enable ulabLucian Copeland
2020-08-25Add random to ESP32-S2, fix it on STM32Lucian Copeland
2020-08-25mp_obj_print_helper: Handle a ctrl-c that comes in during printingJeff 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-25pyexec: 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-25Merge pull request #3299 from tannewt/add_pwmiohierophect
Split pulseio.PWMOut into pwmio
2020-08-25Added microS2 specific config filesmicroDev
2020-08-25Added microS2 specific config filesmicroDev
2020-08-25Fix null dereference, invert auto_brightness to reenable screenLucian Copeland
2020-08-24Fix RGB LED useScott Shawcroft