- Jun 06, 2019
-
-
rahix authored
Signed-off-by:
Rahix <rahix@rahix.de>
- Jun 05, 2019
-
-
rahix authored
-
rahix authored
-
rahix authored
Signed-off-by:
Rahix <rahix@rahix.de>
- Jun 04, 2019
-
-
rahix authored
Signed-off-by:
Rahix <rahix@rahix.de>
-
- Jun 03, 2019
-
-
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.
-
- Jun 02, 2019
-
-
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')
-
- May 31, 2019
-
-
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.
-
Damien George authored
To enable define MICROPY_HW_USB_CDC_NUM to 3.
-
- May 30, 2019
-
-
Damien George authored
The board config option MICROPY_HW_USB_ENABLE_CDC2 is now changed to MICROPY_HW_USB_CDC_NUM, and the latter should be defined to the maximum number of CDC interfaces to support (defaults to 1).
-
- May 29, 2019
-
-
Damien George authored
-
Andrew Leech authored
Otherwise flushing and disabling the D-cache will give a hard-fault when SDRAM is used. Fixes #4818.
-
- May 28, 2019
-
-
Damien George authored
EAGAIN should be for pure non-blocking mode and ETIMEDOUT for when there is a finite (but non-zero) timeout enabled.
-
Damien George authored
-
Tom Manning authored
-
- May 24, 2019
-
-
Andrew Leech authored
Set the active MPU region to the actual size of SDRAM configured and invalidate the rest of the memory-mapped region, to prevent errors due to CPU speculation. Also update the attributes of the SDRAM region as per ST recommendations, and change region numbers to avoid conflicts elsewhere in the codebase (see eth usage).
-
Damien George authored
Fixes issue #4795.
-
Paul Sokolovsky authored
I2C can't be enabled in prj_base.conf because it's a board-specific feature. For example, if a board doesn't have I2C but CONFIG_I2C=y then the build will fail (on Zephyr build system side). The patch here gets the qemu_cortex_m3 build working again.
-
Paul Sokolovsky authored
So it fits better with existing narrative.
-
- May 23, 2019
-
-
stijn authored
This enables going back to previous wrapped lines using backspace or left arrow: instead of just sticking to the beginning of a line, the cursor will move a line up.
-
Andrew Leech authored
-
- May 22, 2019
-
-
Damien George authored
-
Damien George authored
-