nrf/modules/machine/pwm: Tag a PWM device as used in the constructor.

When PWM constructor was created without specifying a device or setting
both freq and duty rate, it was not tagged as used, and further calls to
get a PWM object may get the same PWM device assigned.

Fixes #13494.

Signed-off-by: robert-hh <robert@hammelrath.com>
pull/13497/head
robert-hh 2024-01-22 18:04:44 +01:00 zatwierdzone przez Damien George
rodzic 5e926b2222
commit 4dd288ff62
1 zmienionych plików z 5 dodań i 0 usunięć

Wyświetl plik

@ -233,6 +233,11 @@ static mp_obj_t mp_machine_pwm_make_new(const mp_obj_type_t *type, size_t n_args
self->p_config->mode[pwm_channel] = MODE_HIGH_LOW;
self->p_config->defer_start = false;
// Allocate the device if it was not used before.
if (hard_configs[pwm_id].active == FREE) {
hard_configs[pwm_id].active = STOPPED;
}
// start the PWM running for this channel
mp_map_t kw_args;
mp_map_init_fixed_table(&kw_args, n_kw, all_args + n_args);