2021-02-24 17:58:29 -05:00
|
|
|
/*
|
|
|
|
* This file is part of the MicroPython project, http://micropython.org/
|
|
|
|
*
|
|
|
|
* The MIT License (MIT)
|
|
|
|
*
|
2021-03-04 14:53:19 -05:00
|
|
|
* Copyright (c) 2021 Dave Putz for Adafruit Industries
|
2021-02-24 17:58:29 -05: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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "common-hal/pulseio/PulseOut.h"
|
|
|
|
|
|
|
|
#include <stdint.h>
|
|
|
|
#include "mpconfigport.h"
|
|
|
|
#include "py/runtime.h"
|
|
|
|
#include "shared-bindings/pulseio/PulseOut.h"
|
2021-05-17 17:24:45 -04:00
|
|
|
#include "shared-bindings/pwmio/PWMOut.h"
|
2021-06-23 22:09:27 -04:00
|
|
|
#include "shared-bindings/microcontroller/__init__.h"
|
2021-05-17 17:24:45 -04:00
|
|
|
#include "common-hal/pwmio/PWMOut.h"
|
2022-05-27 15:59:54 -04:00
|
|
|
#include "supervisor/shared/translate/translate.h"
|
2021-07-19 12:46:09 -04:00
|
|
|
#include "src/rp2040/hardware_structs/include/hardware/structs/pwm.h"
|
2021-07-27 15:38:18 -04:00
|
|
|
#include "src/rp2_common/hardware_gpio/include/hardware/gpio.h"
|
2021-05-17 17:24:45 -04:00
|
|
|
#include "src/rp2_common/hardware_pwm/include/hardware/pwm.h"
|
|
|
|
#include "src/common/pico_time/include/pico/time.h"
|
2021-02-24 17:58:29 -05:00
|
|
|
|
2021-07-21 11:05:09 -04:00
|
|
|
volatile alarm_id_t cur_alarm = 0;
|
2021-02-24 17:58:29 -05:00
|
|
|
|
2021-11-10 09:42:21 -05:00
|
|
|
static void pulse_finish(pulseio_pulseout_obj_t *self) {
|
2021-07-21 10:52:17 -04:00
|
|
|
self->pulse_index++;
|
2021-07-27 15:38:18 -04:00
|
|
|
// Turn pwm pin off by switching the GPIO mux to SIO (the cpu manual
|
|
|
|
// control).
|
2021-07-21 10:52:17 -04:00
|
|
|
if (self->pulse_index >= self->pulse_length) {
|
2021-07-27 15:38:18 -04:00
|
|
|
gpio_set_function(self->pin, GPIO_FUNC_SIO);
|
2021-02-24 17:58:29 -05:00
|
|
|
return;
|
|
|
|
}
|
2021-07-21 10:52:17 -04:00
|
|
|
if (self->pulse_index % 2 == 0) {
|
2021-07-27 15:38:18 -04:00
|
|
|
gpio_set_function(self->pin, GPIO_FUNC_PWM);
|
|
|
|
} else {
|
|
|
|
gpio_set_function(self->pin, GPIO_FUNC_SIO);
|
2021-07-11 17:38:24 -04:00
|
|
|
}
|
2021-07-21 10:52:17 -04:00
|
|
|
uint64_t delay = self->pulse_buffer[self->pulse_index];
|
|
|
|
if (delay < self->min_pulse) {
|
|
|
|
delay = self->min_pulse;
|
2021-07-05 12:38:05 -04:00
|
|
|
}
|
2021-07-06 15:34:15 -04:00
|
|
|
cur_alarm = 0;
|
|
|
|
// if the alarm cannot be set, try again with a longer delay
|
|
|
|
while (cur_alarm == 0) {
|
2021-07-21 10:52:17 -04:00
|
|
|
cur_alarm = add_alarm_in_us(delay, pulseout_interrupt_handler, self, false);
|
2021-07-06 15:43:46 -04:00
|
|
|
delay = delay + 1;
|
2021-07-06 15:34:15 -04:00
|
|
|
}
|
2021-05-17 17:24:45 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
int64_t pulseout_interrupt_handler(alarm_id_t id, void *user_data) {
|
2021-07-11 17:38:24 -04:00
|
|
|
pulse_finish(user_data);
|
2021-05-17 17:24:45 -04:00
|
|
|
return 0;
|
2021-02-24 17:58:29 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
void pulseout_reset() {
|
|
|
|
}
|
|
|
|
|
2021-03-15 09:57:36 -04:00
|
|
|
void common_hal_pulseio_pulseout_construct(pulseio_pulseout_obj_t *self,
|
|
|
|
const mcu_pin_obj_t *pin,
|
|
|
|
uint32_t frequency,
|
|
|
|
uint16_t duty_cycle) {
|
2021-02-24 17:58:29 -05:00
|
|
|
|
2021-07-21 19:27:09 -04:00
|
|
|
pwmout_result_t result = common_hal_pwmio_pwmout_construct(
|
2021-07-27 15:37:35 -04:00
|
|
|
&self->carrier, pin, 0, frequency, false);
|
2021-07-21 19:27:09 -04:00
|
|
|
// This will raise an exception and not return if needed.
|
|
|
|
common_hal_pwmio_pwmout_raise_error(result);
|
|
|
|
|
2021-07-27 15:38:18 -04:00
|
|
|
// Disable gpio output before we set the duty cycle.
|
2021-07-28 12:00:36 -04:00
|
|
|
gpio_put(pin->number, false);
|
|
|
|
gpio_set_dir(pin->number, GPIO_OUT);
|
2021-07-27 15:38:18 -04:00
|
|
|
gpio_set_function(pin->number, GPIO_FUNC_SIO);
|
|
|
|
common_hal_pwmio_pwmout_set_duty_cycle(&self->carrier, duty_cycle);
|
|
|
|
|
|
|
|
self->pin = pin->number;
|
2021-07-21 19:27:09 -04:00
|
|
|
self->slice = self->carrier.slice;
|
|
|
|
self->min_pulse = (1000000 / self->carrier.actual_frequency);
|
2021-02-24 17:58:29 -05:00
|
|
|
}
|
|
|
|
|
2021-03-15 09:57:36 -04:00
|
|
|
bool common_hal_pulseio_pulseout_deinited(pulseio_pulseout_obj_t *self) {
|
2021-02-24 17:58:29 -05:00
|
|
|
return self->pin == NO_PIN;
|
|
|
|
}
|
|
|
|
|
2021-03-15 09:57:36 -04:00
|
|
|
void common_hal_pulseio_pulseout_deinit(pulseio_pulseout_obj_t *self) {
|
2021-02-24 17:58:29 -05:00
|
|
|
if (common_hal_pulseio_pulseout_deinited(self)) {
|
|
|
|
return;
|
|
|
|
}
|
2021-07-28 12:00:36 -04:00
|
|
|
gpio_set_dir(self->pin, GPIO_IN);
|
2021-07-21 19:27:09 -04:00
|
|
|
common_hal_pwmio_pwmout_deinit(&self->carrier);
|
2021-02-24 17:58:29 -05:00
|
|
|
self->pin = NO_PIN;
|
|
|
|
}
|
|
|
|
|
2021-03-15 09:57:36 -04:00
|
|
|
void common_hal_pulseio_pulseout_send(pulseio_pulseout_obj_t *self, uint16_t *pulses, uint16_t length) {
|
2021-07-21 10:52:17 -04:00
|
|
|
self->pulse_buffer = pulses;
|
|
|
|
self->pulse_index = 0;
|
|
|
|
self->pulse_length = length;
|
2021-02-24 17:58:29 -05:00
|
|
|
|
2021-07-27 15:38:18 -04:00
|
|
|
// Turn on the signal by connecting the PWM to the outside pin.
|
|
|
|
gpio_set_function(self->pin, GPIO_FUNC_PWM);
|
2021-07-21 10:52:17 -04:00
|
|
|
uint64_t delay = self->pulse_buffer[0];
|
|
|
|
if (delay < self->min_pulse) {
|
|
|
|
delay = self->min_pulse;
|
2021-07-11 17:38:24 -04:00
|
|
|
}
|
2021-07-21 10:52:17 -04:00
|
|
|
cur_alarm = 0;
|
2021-07-11 17:38:24 -04:00
|
|
|
// if the alarm cannot be set, try again with a longer delay
|
2021-07-21 10:52:17 -04:00
|
|
|
while (cur_alarm == 0) {
|
|
|
|
cur_alarm = add_alarm_in_us(delay, pulseout_interrupt_handler, self, false);
|
2021-07-11 17:38:24 -04:00
|
|
|
delay = delay + 1;
|
|
|
|
}
|
2021-02-24 17:58:29 -05:00
|
|
|
|
2021-07-21 10:52:17 -04:00
|
|
|
while (self->pulse_index < length) {
|
2021-05-17 17:24:45 -04:00
|
|
|
// Do other things while we wait. The interrupts will handle sending the
|
|
|
|
// signal.
|
|
|
|
RUN_BACKGROUND_TASKS;
|
|
|
|
}
|
2021-02-24 17:58:29 -05:00
|
|
|
}
|