2020-07-17 17:28:23 -04:00
|
|
|
/*
|
|
|
|
* This file is part of the MicroPython project, http://micropython.org/
|
|
|
|
*
|
|
|
|
* The MIT License (MIT)
|
|
|
|
*
|
2020-07-31 14:50:18 -04:00
|
|
|
* Copyright (c) 2020 Lucian Copeland for Adafruit Industries
|
2020-07-17 17:28:23 -04:00
|
|
|
*
|
|
|
|
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
|
|
* of this software and associated documentation files (the "Software"), to deal
|
|
|
|
* in the Software without restriction, including without limitation the rights
|
|
|
|
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
|
|
* copies of the Software, and to permit persons to whom the Software is
|
|
|
|
* furnished to do so, subject to the following conditions:
|
|
|
|
*
|
|
|
|
* The above copyright notice and this permission notice shall be included in
|
|
|
|
* all copies or substantial portions of the Software.
|
|
|
|
*
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
|
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
|
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
|
|
* THE SOFTWARE.
|
|
|
|
*/
|
2020-07-21 20:43:28 -04:00
|
|
|
#include <math.h>
|
2020-07-17 17:28:23 -04:00
|
|
|
|
2020-08-18 16:08:33 -04:00
|
|
|
#include "common-hal/pwmio/PWMOut.h"
|
|
|
|
#include "shared-bindings/pwmio/PWMOut.h"
|
2020-07-17 17:28:23 -04:00
|
|
|
#include "py/runtime.h"
|
|
|
|
#include "driver/ledc.h"
|
|
|
|
|
2020-07-21 20:43:28 -04:00
|
|
|
#define INDEX_EMPTY 0xFF
|
2020-07-17 17:28:23 -04:00
|
|
|
|
2020-08-05 14:05:53 -04:00
|
|
|
STATIC bool not_first_reset = false;
|
2020-07-21 20:43:28 -04:00
|
|
|
STATIC uint32_t reserved_timer_freq[LEDC_TIMER_MAX];
|
2020-07-23 11:21:19 -04:00
|
|
|
STATIC uint8_t reserved_channels[LEDC_CHANNEL_MAX];
|
2020-07-21 20:43:28 -04:00
|
|
|
STATIC bool never_reset_tim[LEDC_TIMER_MAX];
|
|
|
|
STATIC bool never_reset_chan[LEDC_CHANNEL_MAX];
|
2020-07-17 17:28:23 -04:00
|
|
|
|
|
|
|
void pwmout_reset(void) {
|
2020-07-21 20:43:28 -04:00
|
|
|
for (size_t i = 0; i < LEDC_CHANNEL_MAX; i++ ) {
|
2020-08-05 14:05:53 -04:00
|
|
|
if (reserved_channels[i] != INDEX_EMPTY && not_first_reset) {
|
2020-08-04 18:40:24 -04:00
|
|
|
ledc_stop(LEDC_LOW_SPEED_MODE, i, 0);
|
|
|
|
}
|
2020-07-21 20:43:28 -04:00
|
|
|
if (!never_reset_chan[i]) {
|
|
|
|
reserved_channels[i] = INDEX_EMPTY;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
for (size_t i = 0; i < LEDC_TIMER_MAX; i++ ) {
|
2020-08-04 18:40:24 -04:00
|
|
|
if (reserved_timer_freq[i]) {
|
|
|
|
ledc_timer_rst(LEDC_LOW_SPEED_MODE, i);
|
|
|
|
}
|
2020-07-21 20:43:28 -04:00
|
|
|
if (!never_reset_tim[i]) {
|
|
|
|
reserved_timer_freq[i] = 0;
|
|
|
|
}
|
|
|
|
}
|
2020-08-05 14:05:53 -04:00
|
|
|
not_first_reset = true;
|
2020-07-17 17:28:23 -04:00
|
|
|
}
|
|
|
|
|
2020-08-18 16:08:33 -04:00
|
|
|
pwmout_result_t common_hal_pwmio_pwmout_construct(pwmio_pwmout_obj_t* self,
|
2020-07-17 17:28:23 -04:00
|
|
|
const mcu_pin_obj_t* pin,
|
|
|
|
uint16_t duty,
|
|
|
|
uint32_t frequency,
|
|
|
|
bool variable_frequency) {
|
2020-07-21 20:43:28 -04:00
|
|
|
// Calculate duty cycle
|
|
|
|
uint32_t duty_bits = 0;
|
|
|
|
uint32_t interval = LEDC_APB_CLK_HZ/frequency;
|
|
|
|
for (size_t i = 0; i < 32; i++) {
|
|
|
|
if(!(interval >> i)) {
|
|
|
|
duty_bits = i - 1;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (duty_bits < 1) {
|
|
|
|
mp_raise_ValueError(translate("Invalid frequency"));
|
|
|
|
} else if (duty_bits >= LEDC_TIMER_14_BIT) {
|
|
|
|
duty_bits = LEDC_TIMER_13_BIT;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Find a viable timer
|
|
|
|
size_t timer_index = INDEX_EMPTY;
|
|
|
|
size_t channel_index = INDEX_EMPTY;
|
|
|
|
for (size_t i = 0; i < LEDC_TIMER_MAX; i++) {
|
|
|
|
if ((reserved_timer_freq[i] == frequency) && !variable_frequency) {
|
|
|
|
//prioritize matched frequencies so we don't needlessly take slots
|
|
|
|
timer_index = i;
|
|
|
|
break;
|
|
|
|
} else if (reserved_timer_freq[i] == 0) {
|
|
|
|
timer_index = i;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (timer_index == INDEX_EMPTY) {
|
|
|
|
// Running out of timers isn't pin related on ESP32S2 so we can't re-use error messages
|
|
|
|
mp_raise_ValueError(translate("No more timers available"));
|
|
|
|
}
|
|
|
|
|
|
|
|
// Find a viable channel
|
|
|
|
for (size_t i = 0; i < LEDC_CHANNEL_MAX; i++) {
|
|
|
|
if (reserved_channels[i] == INDEX_EMPTY) {
|
|
|
|
channel_index = i;
|
|
|
|
break;
|
|
|
|
}
|
2020-07-17 17:28:23 -04:00
|
|
|
}
|
2020-07-21 20:43:28 -04:00
|
|
|
if (channel_index == INDEX_EMPTY) {
|
|
|
|
mp_raise_ValueError(translate("No more channels available"));
|
|
|
|
}
|
|
|
|
|
|
|
|
// Run configuration
|
|
|
|
self->tim_handle.timer_num = timer_index;
|
|
|
|
self->tim_handle.duty_resolution = duty_bits;
|
|
|
|
self->tim_handle.freq_hz = frequency;
|
|
|
|
self->tim_handle.speed_mode = LEDC_LOW_SPEED_MODE;
|
|
|
|
self->tim_handle.clk_cfg = LEDC_AUTO_CLK;
|
|
|
|
|
|
|
|
if (ledc_timer_config(&(self->tim_handle)) != ESP_OK) {
|
|
|
|
mp_raise_ValueError(translate("Could not initialize timer"));
|
|
|
|
}
|
|
|
|
|
|
|
|
self->chan_handle.channel = channel_index;
|
|
|
|
self->chan_handle.duty = duty >> (16 - duty_bits);
|
|
|
|
self->chan_handle.gpio_num = pin->number;
|
|
|
|
self->chan_handle.speed_mode = LEDC_LOW_SPEED_MODE; // Only LS is allowed on ESP32-S2
|
|
|
|
self->chan_handle.hpoint = 0;
|
|
|
|
self->chan_handle.timer_sel = timer_index;
|
2020-07-17 17:28:23 -04:00
|
|
|
|
2020-07-21 20:43:28 -04:00
|
|
|
if (ledc_channel_config(&(self->chan_handle))) {
|
|
|
|
mp_raise_ValueError(translate("Could not initialize channel"));
|
2020-07-17 17:28:23 -04:00
|
|
|
}
|
|
|
|
|
2020-07-21 20:43:28 -04:00
|
|
|
// Make reservations
|
|
|
|
reserved_timer_freq[timer_index] = frequency;
|
|
|
|
reserved_channels[channel_index] = timer_index;
|
|
|
|
|
|
|
|
self->variable_frequency = variable_frequency;
|
|
|
|
self->pin_number = pin->number;
|
|
|
|
self->deinited = false;
|
|
|
|
self->duty_resolution = duty_bits;
|
|
|
|
claim_pin(pin);
|
|
|
|
|
|
|
|
// Set initial duty
|
2020-08-18 16:08:33 -04:00
|
|
|
common_hal_pwmio_pwmout_set_duty_cycle(self, duty);
|
2020-07-21 20:43:28 -04:00
|
|
|
|
2020-07-17 17:28:23 -04:00
|
|
|
return PWMOUT_OK;
|
|
|
|
}
|
|
|
|
|
2020-08-18 16:08:33 -04:00
|
|
|
void common_hal_pwmio_pwmout_never_reset(pwmio_pwmout_obj_t *self) {
|
2020-07-21 20:43:28 -04:00
|
|
|
never_reset_tim[self->tim_handle.timer_num] = true;
|
|
|
|
never_reset_chan[self->chan_handle.channel] = true;
|
2020-07-17 17:28:23 -04:00
|
|
|
}
|
|
|
|
|
2020-08-18 16:08:33 -04:00
|
|
|
void common_hal_pwmio_pwmout_reset_ok(pwmio_pwmout_obj_t *self) {
|
2020-07-21 20:43:28 -04:00
|
|
|
never_reset_tim[self->tim_handle.timer_num] = false;
|
|
|
|
never_reset_chan[self->chan_handle.channel] = false;
|
2020-07-17 17:28:23 -04:00
|
|
|
}
|
|
|
|
|
2020-08-18 16:08:33 -04:00
|
|
|
bool common_hal_pwmio_pwmout_deinited(pwmio_pwmout_obj_t* self) {
|
2020-07-21 20:43:28 -04:00
|
|
|
return self->deinited == true;
|
2020-07-17 17:28:23 -04:00
|
|
|
}
|
|
|
|
|
2020-08-18 16:08:33 -04:00
|
|
|
void common_hal_pwmio_pwmout_deinit(pwmio_pwmout_obj_t* self) {
|
|
|
|
if (common_hal_pwmio_pwmout_deinited(self)) {
|
2020-07-21 20:43:28 -04:00
|
|
|
return;
|
|
|
|
}
|
2020-08-04 18:40:24 -04:00
|
|
|
|
|
|
|
if (reserved_channels[self->chan_handle.channel] != INDEX_EMPTY) {
|
|
|
|
ledc_stop(LEDC_LOW_SPEED_MODE, self->chan_handle.channel, 0);
|
|
|
|
}
|
2020-07-21 20:43:28 -04:00
|
|
|
// Search if any other channel is using the timer
|
|
|
|
bool taken = false;
|
|
|
|
for (size_t i =0; i < LEDC_CHANNEL_MAX; i++) {
|
|
|
|
if (reserved_channels[i] == self->tim_handle.timer_num) {
|
|
|
|
taken = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// Variable frequency means there's only one channel on the timer
|
|
|
|
if (!taken || self->variable_frequency) {
|
2020-08-04 18:40:24 -04:00
|
|
|
if (reserved_timer_freq[self->tim_handle.timer_num] != 0) {
|
|
|
|
ledc_timer_rst(LEDC_LOW_SPEED_MODE, self->tim_handle.timer_num);
|
|
|
|
}
|
2020-07-21 20:43:28 -04:00
|
|
|
reserved_timer_freq[self->tim_handle.timer_num] = 0;
|
|
|
|
}
|
|
|
|
reset_pin_number(self->pin_number);
|
|
|
|
reserved_channels[self->chan_handle.channel] = INDEX_EMPTY;
|
|
|
|
self->deinited = true;
|
2020-07-17 17:28:23 -04:00
|
|
|
}
|
|
|
|
|
2020-08-18 16:08:33 -04:00
|
|
|
void common_hal_pwmio_pwmout_set_duty_cycle(pwmio_pwmout_obj_t* self, uint16_t duty) {
|
2020-07-23 11:21:19 -04:00
|
|
|
ledc_set_duty(LEDC_LOW_SPEED_MODE, self->chan_handle.channel, duty >> (16 - self->duty_resolution));
|
2020-07-21 20:43:28 -04:00
|
|
|
ledc_update_duty(LEDC_LOW_SPEED_MODE, self->chan_handle.channel);
|
2020-07-17 17:28:23 -04:00
|
|
|
}
|
|
|
|
|
2020-08-18 16:08:33 -04:00
|
|
|
uint16_t common_hal_pwmio_pwmout_get_duty_cycle(pwmio_pwmout_obj_t* self) {
|
2020-07-21 20:43:28 -04:00
|
|
|
return ledc_get_duty(LEDC_LOW_SPEED_MODE, self->chan_handle.channel) << (16 - self->duty_resolution);
|
2020-07-17 17:28:23 -04:00
|
|
|
}
|
|
|
|
|
2020-08-18 16:08:33 -04:00
|
|
|
void common_hal_pwmio_pwmout_set_frequency(pwmio_pwmout_obj_t* self, uint32_t frequency) {
|
2020-07-21 20:43:28 -04:00
|
|
|
ledc_set_freq(LEDC_LOW_SPEED_MODE, self->tim_handle.timer_num, frequency);
|
2020-07-17 17:28:23 -04:00
|
|
|
}
|
|
|
|
|
2020-08-18 16:08:33 -04:00
|
|
|
uint32_t common_hal_pwmio_pwmout_get_frequency(pwmio_pwmout_obj_t* self) {
|
2020-07-21 20:43:28 -04:00
|
|
|
return ledc_get_freq(LEDC_LOW_SPEED_MODE, self->tim_handle.timer_num);
|
2020-07-17 17:28:23 -04:00
|
|
|
}
|
|
|
|
|
2020-08-18 16:08:33 -04:00
|
|
|
bool common_hal_pwmio_pwmout_get_variable_frequency(pwmio_pwmout_obj_t* self) {
|
2020-07-21 20:43:28 -04:00
|
|
|
return self->variable_frequency;
|
2020-07-17 17:28:23 -04:00
|
|
|
}
|