diff options
| author | garywill <garywill@disroot.org> | 2025-11-15 11:40:39 +0800 |
|---|---|---|
| committer | Damien George <damien@micropython.org> | 2025-11-19 16:56:03 +1100 |
| commit | 3d2eb3b8e907ee74350a69ff92af7a14d7c2f7c7 (patch) | |
| tree | 294e750ffd4d84d4eeae81d6ba7e421e02484121 /ports/esp32/main.c | |
| parent | 4e79698a997465b1043fa8cbc4a72cdac889341f (diff) | |
ports: Guard calls to machine_*_deinit_all() with #if where appropriate.
To allow these features to be properly disabled.
Diffstat (limited to 'ports/esp32/main.c')
| -rw-r--r-- | ports/esp32/main.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/ports/esp32/main.c b/ports/esp32/main.c index 74e31647d..41eea29b0 100644 --- a/ports/esp32/main.c +++ b/ports/esp32/main.c @@ -187,7 +187,9 @@ soft_reset_exit: // Deinit uart before timers, as esp32 uart // depends on a timer instance + #if MICROPY_PY_MACHINE_UART machine_uart_deinit_all(); + #endif machine_timer_deinit_all(); #if MICROPY_PY_ESP32_PCNT @@ -210,7 +212,9 @@ soft_reset_exit: mp_hal_stdout_tx_str("MPY: soft reboot\r\n"); // deinitialise peripherals + #if MICROPY_PY_MACHINE_PWM machine_pwm_deinit_all(); + #endif // TODO: machine_rmt_deinit_all(); machine_pins_deinit(); #if MICROPY_PY_MACHINE_I2C_TARGET |
