- 12 Jun, 2019 1 commit
-
-
Anne Jan Brouwer authored
Merge branch 'wip-bootstrap' of git.card10.badge.events.ccc.de:card10/micropython into wip-bootstrap
-
- 06 Jun, 2019 7 commits
-
-
Rahix authored
-
Rahix authored
-
ch3 authored
-
Rahix authored
-
Anne Jan Brouwer authored
-
Anne Jan Brouwer authored
-
Rahix authored
Signed-off-by:
Rahix <rahix@rahix.de>
-
- 05 Jun, 2019 8 commits
- 04 Jun, 2019 3 commits
-
-
Rahix authored
Signed-off-by:
Rahix <rahix@rahix.de>
-
Rahix authored
Signed-off-by:
Rahix <rahix@rahix.de>
-
Damien George authored
Fixes errors in the tool when 1) linking qstrs in native ARM-M code; 2) freezing multiple files some of which use native code and some which don't. Fixes issue #4829.
-
- 03 Jun, 2019 13 commits
-
-
Damien George authored
It doesn't work to tie the polling of an underlying NIC driver (eg to check the NIC for pending Ethernet frames) with its associated lwIP netif. This is because most NICs are implemented with IRQs and don't need polling, because there can be multiple lwIP netif's per NIC driver, and because it restricts the use of the netif->state variable. Instead the NIC should have its own specific way of processing incoming Ethernet frame. This patch removes this generic NIC polling feature, and for the only driver that uses it (Wiznet5k) replaces it with an explicit call to the poll function (which could eventually be improved by using a proper external interrupt).
-
Damien George authored
-
Damien George authored
Enable it by setting MICROPY_PY_NETWORK_CYW43=1 at the Makefile level.
-
Damien George authored
-
Damien George authored
-
Damien George authored
-
Damien George authored
To be used for peripherals (like radio) that must be location aware.
-
Damien George authored
-
Damien George authored
-
Damien George authored
-
Damien George authored
-
Damien George authored
Building mpy-cross automatically leads to some issues with the build process and slows it down. Instead, require it to be built manually.
-
Damien George authored
From https://github.com/ARM-software/CMSIS_5.git, tag 5.5.1
-
- 02 Jun, 2019 2 commits
-
-
Nicko van Someren authored
-
Nicko van Someren authored
This adds support for SD cards using the ESP32's built-in hardware SD/MMC host controller, over either the SDIO bus or SPI. The class is available as machine.SDCard and using it can be as simple as: uos.mount(machine.SDCard(), '/sd')
-
- 31 May, 2019 6 commits
-
-
Damien George authored
-
Damien George authored
These are core configurations providing PYBv1.x-level features.
-
Damien George authored
-
Damien George authored
If the board-pin name is left empty then only the cpu-pin name is used, eg ",PA0". If the board-pin name starts with a hyphen then it's available as a C definition but not in the firmware, eg "-X1,PA0".
-
Damien George authored
Because py/mpconfig.h has header include guards.
-
Martin Dybdal authored
The patch solves the problem where multiple Timer objects (e.g. multiple Timer(0) instances) could initialise multiple handles to the same internal timer. The list of timers is now maintained not for "active" timers (where init is called), but for all timers created. The timers are only removed from the list of timers on soft-reset (machine_timer_deinit_all). Fixes #4078.
-