summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2020-04-08Merge pull request #2752 from jepler/spinx2-cpy515.1.xScott Shawcroft
Don't upgrade to Sphinx 3
2020-04-08Don't upgrade to Sphinx 3Scott Shawcroft
The doc build doesn't complete and is likely broken for the inline RST. We can move to 3 when we move the inline docs to Python stubs.
2020-03-17Merge pull request #2711 from jepler/update-ulab5.1.0-rc.05.1.0Scott Shawcroft
update ulab
2020-03-17Translations: follow stm port rename, run 'make translate'Jeff Epler
2020-03-17Update shared-bindings/ulab/__init__.rstJeff Epler
Co-Authored-By: Scott Shawcroft <scott@tannewt.org>
2020-03-17Merge pull request #2712 from tannewt/fix_dotstar_statusDan Halbert
Fix DotStar status LED init.
2020-03-17Fix DotStar status LED init.Scott Shawcroft
2020-03-17ulab: include new 'extras' source fileJeff Epler
2020-03-17ulab: rename enable macro so it appears in the support matrixJeff Epler
2020-03-17ulab: update documentationJeff Epler
2020-03-17objslice: take mp_obj_slice_indices from micropythonJeff Epler
2020-03-17update ulabJeff Epler
2020-03-16Merge pull request #2705 from NightSkySK/UARTlogger2Scott Shawcroft
add UARTLogger2 board support for CircuitPython
2020-03-13spacing correctionSzymon Klause
2020-03-13add UARTLogger2 board support for CircuitPythonSzymon Klause
2020-03-13Merge pull request #2701 from hierophect/stm32-submodule-swapScott Shawcroft
STM32: Change ST drivers submodule to match TinyUSB
2020-03-13Merge pull request #2695 from TG-Techie/masterScott Shawcroft
Add new TG-Watch02A to the nrf boards directory
2020-03-12fix board sorting (due to T being before a anf t)TG-Techie
2020-03-12add TG-Watch02A to build workflowTG-Techie
2020-03-12Change ST drivers submodule to match TinyUSBLucian Copeland
2020-03-12Merge pull request #2699 from hierophect/stm32-port-namechangehierophect
STM32: port directory name change
2020-03-12Merge remote-tracking branch 'upstream/master' into stm32-port-namechangeLucian Copeland
2020-03-12Merge pull request #2697 from hierophect/stm32-pulseinhierophect
STM32: add PulseIn module
2020-03-12Revise style on interrupt handler functionsLucian Copeland
2020-03-12Comment change for CILucian Copeland
2020-03-12fix requested changesTG-Techie
2020-03-11change CI targetLucian Copeland
2020-03-11Change docs targetLucian Copeland
2020-03-11remove old directoryLucian Copeland
2020-03-11submodule move and syncLucian Copeland
2020-03-11create copyLucian Copeland
2020-03-11Add up to date translationsLucian Copeland
2020-03-11Merge remote-tracking branch 'upstream/master' into stm32-pulseinLucian Copeland
2020-03-11stm32: add PulseIn moduleLucian Copeland
2020-03-10changed TG-Watch02A HW_BOARD_NAMETG-Techie
2020-03-10add TG-Watch02A board defTG-Techie
2020-03-10Merge pull request #2690 from jepler/topic-pep-498-fstringsScott Shawcroft
Implement partial PEP-498 (f-string) support
2020-03-10Merge pull request #2693 from jepler/ulab-enableDan Halbert
ulab: enable on most builds
2020-03-09ulab: don't enable on m0 boardsJeff Epler
2020-03-09Update testsJeff Epler
* string_pep498_fstring.py: Not compatible with python3.5 * cmd_parsetree.py: enumerated constants changed
2020-03-09Merge pull request #2666 from dhalbert/assert_pin-and-mp_const_none-cleanupScott Shawcroft
validate various displayio args; new pin validation routines; don't use mp_const_none if NULL will do
2020-03-09Merge pull request #2692 from jepler/ulab-upstreamScott Shawcroft
ulab: Use https://github.com/v923z/micropython-ulab/
2020-03-09circuitpy_mpconfig.mk: Enable ULAB for "full builds"Jeff Epler
This enables it on the imxrt and cds56 ports where it was disabled before
2020-03-09stm32: enable ulabJeff Epler
This is needed because stm32 defines CIRCUITPY_MINIMAL_BUILD "for early port".
2020-03-09cdx56: prepare to enable ulabJeff Epler
This involves fixing support for SRC_MOD and enabling INTERNAL_LIBM including adding support for SRC_LIBM.
2020-03-09ulab: Use https://github.com/v923z/micropython-ulab/Jeff Epler
The only delta we were carrying was in the README.
2020-03-09f-strings: Make optional, defaulting to !CIRCUITPY_MINIMAL_BUILDJeff Epler
This should reclaim *most* code space added to handle f-strings. However, there may be some small code growth as parse_string_literal takes a new parameter (which will always be 0, so hopefully the optimizer eliminates it)
2020-03-09lexer: catch concatenation of f'' and '' stringsJeff Epler
This turns the "edge case" into a parse-time error.
2020-03-09locale: run 'make translate'Jeff Epler
2020-03-09Address dpgeorge feedback - largely simplificationsJosh Klar