- 20 Mar, 2023 8 commits
-
-
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.
-
robert-hh authored
Calling MICROPY_EVENT_POLL_HOOK. That allows Ctrl-C to break loops with idle().
-
robert-hh authored
Suggested by @ricksorensen after testing. These match better the hardware of the NRF52xx.
-
robert-hh authored
Changes in this commit: - Add the timeout and timeout_char keyword options. - Make uart.read() non-blocking. - Add uart.any(). - Add ioctl MP_STREAM_POLL handling. - Change uart.write() into non-busy waiting. uart.write() still waits until all data has been sent, but calls MICROPY_EVENT_POLL_HOOK while waiting. uart.write() uses DMA for transfer. One option would be to add a small local buffer, such that transfers up to the size of the buffer could be done without waiting. - As a side effect to the change of uart.write(), uart.txdone() and ioctl flush now report/wait correctly for the end of transmission. - Change machine_hard_uart_buf_t in machine_hard_uart_obj_t to an instance of that struct, rather than a pointer to one.
-
Damien George authored
Signed-off-by: Damien George <damien@micropython.org>
-
iabdalkader authored
-
David Lechner authored
Example code should use mp_obj_malloc() as well since people will likely copy this code. Signed-off-by: David Lechner <david@pybricks.com>
-
- 17 Mar, 2023 1 commit
-
-
David Lechner authored
As the comment in py/obj.h says: > Implementing this as a call rather than inline saves 8 bytes per usage. So in order to get this savings, we need to tell the compiler to never inline the function. Signed-off-by: David Lechner <david@pybricks.com>
-
- 13 Mar, 2023 3 commits
-
-
robert-hh authored
Even if boards do not have a clock crystal. In that case, the clock quality will be very poor. Always having machine.RTC means that the date/time can be set in a way that is consistent with other ports. This commit also removes the special code in modutime.c for devices without the RTC class. Signed-off-by: Damien George <damien@micropython.org>
-
pmendham authored
Update arguments to mp_raw_code_load_mem so that the embed port can build when MICROPY_PERSISTENT_CODE_LOAD is enabled.
-
IhorNehrutsa authored
-
- 10 Mar, 2023 4 commits
-
-
Damien George authored
Moving forward, tags in this repository will always have three components. Signed-off-by: Damien George <damien@micropython.org>
-
Christian Clauss authored
These are basic PEP8 recommendations.
-
Laurens Valk authored
Without this, building the unix port variants gives: ports/unix/main.c:667: undefined reference to `mp_obj_is_package', when MICROPY_ENABLE_EXTERNAL_IMPORT is 0. Signed-off-by: Laurens Valk <laurens@pybricks.com>
-
Damien George authored
The C-level printf is usually used for internal debugging prints, and a port/board may want to redirect this somewhere other than stdout. Signed-off-by: Damien George <damien@micropython.org>
-
- 09 Mar, 2023 18 commits
-
-
Damien George authored
So that callers can redirect the output if needed. Signed-off-by: Damien George <damien@micropython.org>
-
Damien George authored
Signed-off-by: Damien George <damien@micropython.org>
-
robert-hh authored
These have the same frequency, but can have different duty cycle and polarity. pwm.deinit() stops all channels of a module, but does not release the module. pwm.init() without arguments restarts all outputs.
-
robert-hh authored
Using extmod/machine_pwm.c for the Python bindings and the existing softpwm.c driver, by just adding the interface. Properties: - Frequency range 1-3906 Hz. - All PWM outputs run at the same frequency but can have different duty cycles. - Limited to the P0.x pins. Since it uses the existing softpwm.c mechanism, it will be affected by playing music with the music class.
-
robert-hh authored
This is a breaking change, making the hardware PWM on the nrf port compatible with the other ports providing machine.PWM. Frequency range 4Hz - ~5.4 MHz. The base clock range is 125kHz to 16 MHz, and the divider range is 3 - 32767. The hardware supports up to four outputs per PWM device with different duty cycles, but only one output is (and was) supported.
-
robert-hh authored
-
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>
-
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>
-
Damien George authored
When := is used in a comprehension the target variable is bound to the parent scope, so it's either a global or a nonlocal. Prior to this commit that was handled by simply using the parent scope's id_info for the target variable. That's completely wrong because it uses the slot number for the parent's Python stack to store the variable, rather than the slot number for the comprehension. This will in most cases lead to incorrect behaviour or memory faults. This commit fixes the scoping of the target variable by explicitly declaring it a global or nonlocal, depending on whether the parent is the global scope or not. Then the id_info of the comprehension can be used to access the target variable. This fixes a lot of cases of using := in a comprehension. Code size change for this commit: bare-arm: +0 +0.000% minimal x86: +0 +0.000% unix x64: +152 +0.019% standard stm32: +96 +0.024% PYBV10 cc3200: +96 +0.052% esp8266: +196 +0.028% GENERIC esp32: +156 +0.010% GENERIC[incl +8(data)] mimxrt: +96 +0.027% TEENSY40 renesas-ra: +88 +0.014% RA6M2_EK nrf: +88 +0.048% pca10040 rp2: +104 +0.020% PICO samd: +88 +0.033% ADAFRUIT_ITSYBITSY_M4_EXPRESS Fixes issue #10895. Signed-off-by: Damien George <damien@micropython.org>
-
cpottle9 authored
Borrowing an idea from the mimxrt port (also stm32 port): in the loader input file memmap_mp.ld calculate __GcHeapStart and __GcHeapEnd as the unused RAM. Then in main.c use these addresses as arguments to gc_init(). The benefits of this change are: 1) When libraries are added or removed in the future changing BSS usage, main.c's sizing of the GC heap does not need to be changed. 2) Currently these changes make the GC area about 30 KBytes larger, eg on PICO_W the GC heap increases from 166016 to 192448 bytes. Without that change this RAM would never get used. 3) If someone wants to disable one or more SRAM blocks on the RP2040 to reduce power consumption it will be easy: just change the MEMORY section in memmap_mp.ld. For instance to not use SRAM2 and SRAM3 change it to: MEMORY { FLASH(rx) : ORIGIN = 0x10000000, LENGTH = 2048k RAM(rwx) : ORIGIN = 0x21000000, LENGTH = 128k SCRATCH_X(rwx) : ORIGIN = 0x20040000, LENGTH = 4k SCRATCH_Y(rwx) : ORIGIN = 0x20041000, LENGTH = 4k } Then to turn off clocks for SRAM2 and SRAM3 from MicroPython, set the appropriate bits in WAKE_EN0 and SLEEP_EN0. Tested by running the firmware.uf2 file on PICO_W and displaying micropython.mem_info(). Confirmed GC total size approximately matched the size calculated by the loader. Signed-off-by: cpottle9 <cpottle9@outlook.com>
-
David Grayson authored
This function seems to work fine in multi-core applications now. The delay is now in units of microseconds instead of depending on the clock speed, and is adjustable by board configuration headers. Also added documentation.
-
Tomofumi Inoue authored
And any other board that exposes this pin with a button.
-
- 08 Mar, 2023 6 commits
-
-
iabdalkader authored
-
iabdalkader authored
-
Damien George authored
Signed-off-by: Damien George <damien@micropython.org>
-
Andrew Leech authored
Signed-off-by: Andrew Leech <andrew.leech@planetinnovation.com.au>
-
Andrew Leech authored
The device-under-test should use `multitest.expect_reboot()` to indicate that it will reboot. Signed-off-by: Andrew Leech <andrew.leech@planetinnovation.com.au>
-
Damien George authored
Signed-off-by: Andrew Leech <andrew.leech@planetinnovation.com.au> Signed-off-by: Damien George <damien@micropython.org>
-