- Apr 25, 2023
- Apr 24, 2023
- Apr 23, 2023
- Apr 21, 2023
-
-
moon2 authored
-
- Apr 20, 2023
- Mar 31, 2023
-
-
Sebastian Romero authored
-
- Mar 29, 2023
-
-
Damien George authored
Following other vfs_fat tests, so the test works on ports like stm32 that only support 512-byte block size. Signed-off-by:
Damien George <damien@micropython.org>
-
- Mar 28, 2023
-
-
David Lechner authored
Signed-off-by:
David Lechner <david@pybricks.com>
-
- Mar 23, 2023
-
-
Damien George authored
This is a best-effort implementation of write polling. It's difficult to do correctly because if there are multiple output streams (eg UART and USB CDC) then some may not be writeable while others are. A full solution should also have a return value from mp_hal_stdout_tx_strn(), returning the number of bytes written to the stream(s). That's also hard to define. The renesas-ra and stm32 ports already implement a similar best-effort mechanism for write polling. Fixes issue #11026. Signed-off-by:
Damien George <damien@micropython.org>
-
Damien George authored
Signed-off-by:
Damien George <damien@micropython.org>
-
Damien George authored
If a multitest calls `multitest.output_metric(...)` then that output will be collected separately, not considered as part of the test verification output, and instead be printed at the end. This is useful for tests that want to output performance/timing metrics that may change from one run to the next. Signed-off-by:
Damien George <damien@micropython.org>
-
- Mar 22, 2023
-
-
Damien George authored
But leave these disabled. Signed-off-by:
Damien George <damien@micropython.org>
-
Damien George authored
Signed-off-by:
Damien George <damien@micropython.org>
-
Damien George authored
Signed-off-by:
Damien George <damien@micropython.org>
-
robert-hh authored
Prior to this change, setting of UART parameters like parity, stop bits or data bits did not work correctly. As suggested by @iabdalkader, adding __DSB() fixes the problem, making sure that changes to the UART LCR_H register are seen by the peripheral. Note: the FIFO is already enabled in the call to uart_init(), so the call to uart_set_fifo_enabled() is not required, but kept for visibility. Fixes issue #10976.
-
Damien George authored
This was broken by 5327cd10 Signed-off-by:
Damien George <damien@micropython.org>
-
- Mar 21, 2023
-
-
Damien George authored
This is intended to be used by the very outer caller of the VM/runtime. It allows setting a top-level NLR handler that can be jumped to directly, in order to forcefully abort the VM/runtime. Enable using: #define MICROPY_ENABLE_VM_ABORT (1) Set up the handler at the top level using: nlr_buf_t nlr; nlr.ret_val = NULL; if (nlr_push(&nlr) == 0) { nlr_set_abort(&nlr); // call into the VM/runtime ... nlr_pop(); } else { if (nlr.ret_val == NULL) { // handle abort ... } else { // handle other exception that propagated to the top level ... } } nlr_set_abort(NULL); Schedule an abort, eg from an interrupt handler, using: mp_sched_vm_abort(); Signed-off-by:
Damien George <damien@micropython.org>
-
Damien George authored
Signed-off-by:
Damien George <damien@micropython.org>
-
Jeremy Rand authored
When iterating over os.ilistdir(), the special directories '.' and '..' are filtered from the results. But the code inadvertently also filtered any file/directory which happened to match '..*'. This change fixes the filter. Fixes issue #11032. Signed-off-by:
Jeremy Rand <jeremy@rand-family.com>
-
Damien George authored
The following have been tested and are working: - 550MHz CPU frequency - UART REPL via ST-Link - USB REPL and mass storage - 3x LEDs and 1x user button - Ethernet Signed-off-by:
Damien George <damien@micropython.org>
-
Damien George authored
Signed-off-by:
Damien George <damien@micropython.org>
-
Damien George authored
Signed-off-by:
Damien George <damien@micropython.org>
-
Damien George authored
Signed-off-by:
Damien George <damien@micropython.org>
-
Damien George authored
Signed-off-by:
Damien George <damien@micropython.org>
-
- Mar 20, 2023
-
-
robert-hh authored
For builds with DEBUG=1 and MICROPY_HW_ENABLE_UART_REPL=1, calling stdio_init_all() in main() detaches the UART input from REPL. This change suppresses calling stdio_init_all() then.
-
robert-hh authored
Previously, setting MICROPY_HW_ENABLE_USBDEV to 0 caused build errors. The change affects the nrf and samd ports as well, so MICROPY_HW_ENABLE_USBDEV had to be explicitly enabled there. The configuration options MICROPY_HW_ENABLE_USBDEV and MICROPY_HW_ENABLE_UART_REPL are independent, and can be enabled or disabled by a board. Signed-off-by:
Damien George <damien@micropython.org>
-
robert-hh authored
Mostly for compatibility. Effective values are 100000, 250000 and 400000. The supplied values are mapped to these.
-