summaryrefslogtreecommitdiff
path: root/docs/shared_bindings_matrix.py
AgeCommit message (Collapse)Author
2020-05-26shared_bindings_matrix: sommersoft's suggestionsJeff Epler
2020-05-25shared_bindings_matrix: Use a trivial targetJeff Epler
Sommersoft noticed that without submodules (as RTD currently does), the "make -qp" failed due to trying to find files within submodules. The "print-VAR" target doesn't have any dependencies, so it sidesteps the problem. If we move ulab's pyi files into the submodule, though, we'll need to fetch submodules anyway during doc building.
2020-05-25Remove board_chip logicJeff Epler
Not sure why I moved it, the computed value is never required
2020-05-25Add esp32s2, litex to SUPPORTED_PORTS, sort itJeff Epler
2020-05-25shared_bindings_matrix: Work from parsed 'make' outputJeff Epler
Revisiting this because I noticed the support matrix said that pyruler had several modules it obviously didn't, such as the recently added vectorio. It is less error-prone because we can use the final values instead of re-coding the Makefile logic in python. The only things we need to do are invoke make in "print-database" mode, then chase any indirect references like CIRCUITPY_VECTORIO = $(CIRCUITPY_DISPLAYIO) It does take longer, about 45s on my laptop.
2020-04-30fix support_matrix.py to handle ?=Dan Halbert
2020-04-23implement requested changesLucian Copeland
2020-04-22Remove old build flags, add fixes for shared_matrixLucian Copeland
2020-02-06add stm32f4 to docsLucian Copeland
2020-01-21Merge pull request #2543 from pewpew-game/support-matrixsommersoft
Fix entry overrides in support matrix generation
2020-01-21Fix entry overrides in support matrix generationRadomir Dopieralski
Fix #2539 The entries in the board's mpconfigboard.mk override any other entries. Also, fixed a warning for bad use of backslash in a string.
2020-01-06Add initial MIMXRT10XX portarturo182
2019-10-02use 'any()' vs 'len == 1 & == False'sommersoft
2019-09-27add parsing for 'MINIMAL/DEFAULT'; process inclusion when determined by ↵sommersoft
another module
2019-07-27fix board_exclusion lookupsommersoft
2019-07-27use MICROPY_HW_BOARD_NAME vice board's folder namesommersoft
2019-07-27add port-wide config parsing; add modules-by-board functionsommersoft
2019-07-23don't use files to pass data; call and return directly in conf.pysommersoft
2019-07-07more python3.5 compatibility fixessommersoft
2019-07-05handle module exclusion when the default is to not include a modulesommersoft
2019-07-05update regex module use to be python3.5 compatiblesommersoft
2019-07-04fix late-night directory snafusommersoft
2019-07-04add script to gather module support matrix info; add initial json filesommersoft