Moved global variables to support multiple PulseOuts

This commit is contained in:
root 2021-07-21 09:52:17 -05:00
parent 8fe4fa0114
commit 0559fcd1c0
2 changed files with 35 additions and 38 deletions

View File

@ -39,13 +39,7 @@
#include "src/common/pico_time/include/pico/time.h" #include "src/common/pico_time/include/pico/time.h"
static uint8_t refcount = 0; static uint8_t refcount = 0;
static uint16_t *pulse_buffer = NULL; volatile alarm_id_t cur_alarm = 0;
static volatile uint16_t pulse_index = 0;
static uint16_t pulse_length;
pwmio_pwmout_obj_t *pwmout_obj;
volatile uint16_t current_duty_cycle;
static uint32_t min_pulse = 0;
static alarm_id_t cur_alarm;
void turn_off(uint8_t slice) { void turn_off(uint8_t slice) {
pwm_hw->slice[slice].ctr = 0; pwm_hw->slice[slice].ctr = 0;
@ -56,24 +50,24 @@ void turn_off(uint8_t slice) {
pwm_hw->slice[slice].csr = 0; pwm_hw->slice[slice].csr = 0;
} }
void pulse_finish(pwmio_pwmout_obj_t *carrier) { void pulse_finish(pulseio_pulseout_obj_t *self) {
pulse_index++; self->pulse_index++;
// Turn pwm pin off by setting duty cyle to 1. // Turn pwm pin off by setting duty cyle to 1.
common_hal_pwmio_pwmout_set_duty_cycle(carrier,1); common_hal_pwmio_pwmout_set_duty_cycle(self->carrier,1);
if (pulse_index >= pulse_length) { if (self->pulse_index >= self->pulse_length) {
return; return;
} }
if (pulse_index % 2 == 0) { if (self->pulse_index % 2 == 0) {
common_hal_pwmio_pwmout_set_duty_cycle(carrier,current_duty_cycle); common_hal_pwmio_pwmout_set_duty_cycle(self->carrier,self->current_duty_cycle);
} }
uint64_t delay = pulse_buffer[pulse_index]; uint64_t delay = self->pulse_buffer[self->pulse_index];
if (delay < min_pulse) { if (delay < self->min_pulse) {
delay = min_pulse; delay = self->min_pulse;
} }
cur_alarm = 0; cur_alarm = 0;
// if the alarm cannot be set, try again with a longer delay // if the alarm cannot be set, try again with a longer delay
while (cur_alarm == 0) { while (cur_alarm == 0) {
cur_alarm = add_alarm_in_us(delay, pulseout_interrupt_handler, carrier, false); cur_alarm = add_alarm_in_us(delay, pulseout_interrupt_handler, self, false);
delay = delay + 1; delay = delay + 1;
} }
} }
@ -94,15 +88,14 @@ void common_hal_pulseio_pulseout_construct(pulseio_pulseout_obj_t *self,
uint16_t duty_cycle) { uint16_t duty_cycle) {
refcount++; refcount++;
pwmout_obj = (pwmio_pwmout_obj_t *)carrier; self->carrier = (pwmio_pwmout_obj_t *)carrier;
current_duty_cycle = common_hal_pwmio_pwmout_get_duty_cycle(pwmout_obj); self->current_duty_cycle = common_hal_pwmio_pwmout_get_duty_cycle(self->carrier);
pwm_set_enabled(carrier->slice,false); pwm_set_enabled(self->carrier->slice,false);
turn_off(carrier->slice); turn_off(self->carrier->slice);
common_hal_pwmio_pwmout_set_duty_cycle(pwmout_obj,1); common_hal_pwmio_pwmout_set_duty_cycle(self->carrier,1);
self->pin = carrier->pin->number; self->pin = self->carrier->pin->number;
self->slice = carrier->slice; self->slice = self->carrier->slice;
self->carrier = pwmout_obj; self->min_pulse = (1000000 / self->carrier->actual_frequency);
min_pulse = (1000000 / carrier->actual_frequency);
} }
bool common_hal_pulseio_pulseout_deinited(pulseio_pulseout_obj_t *self) { bool common_hal_pulseio_pulseout_deinited(pulseio_pulseout_obj_t *self) {
@ -118,25 +111,24 @@ void common_hal_pulseio_pulseout_deinit(pulseio_pulseout_obj_t *self) {
} }
void common_hal_pulseio_pulseout_send(pulseio_pulseout_obj_t *self, uint16_t *pulses, uint16_t length) { void common_hal_pulseio_pulseout_send(pulseio_pulseout_obj_t *self, uint16_t *pulses, uint16_t length) {
pulse_buffer = pulses; self->pulse_buffer = pulses;
pulse_index = 0; self->pulse_index = 0;
pulse_length = length; self->pulse_length = length;
common_hal_pwmio_pwmout_set_duty_cycle(self->carrier,current_duty_cycle); common_hal_pwmio_pwmout_set_duty_cycle(self->carrier,self->current_duty_cycle);
pwm_set_enabled(self->slice,true); pwm_set_enabled(self->slice,true);
uint64_t delay = pulse_buffer[0]; uint64_t delay = self->pulse_buffer[0];
if (delay < min_pulse) { if (delay < self->min_pulse) {
delay = min_pulse; delay = self->min_pulse;
} }
alarm_id_t init_alarm = 0; cur_alarm = 0;
// if the alarm cannot be set, try again with a longer delay // if the alarm cannot be set, try again with a longer delay
while (init_alarm == 0) { while (cur_alarm == 0) {
init_alarm = add_alarm_in_us(delay, pulseout_interrupt_handler, self->carrier, false); cur_alarm = add_alarm_in_us(delay, pulseout_interrupt_handler, self, false);
delay = delay + 1; delay = delay + 1;
} }
cur_alarm = init_alarm;
while (pulse_index < length) { while (self->pulse_index < length) {
// Do other things while we wait. The interrupts will handle sending the // Do other things while we wait. The interrupts will handle sending the
// signal. // signal.
RUN_BACKGROUND_TASKS; RUN_BACKGROUND_TASKS;

View File

@ -40,6 +40,11 @@ typedef struct {
uint8_t pin; uint8_t pin;
uint8_t slice; uint8_t slice;
pwmio_pwmout_obj_t *carrier; pwmio_pwmout_obj_t *carrier;
uint16_t *pulse_buffer;
uint16_t pulse_length;
uint16_t current_duty_cycle;
uint32_t min_pulse;
volatile uint16_t pulse_index;
} pulseio_pulseout_obj_t; } pulseio_pulseout_obj_t;
void pulseout_reset(void); void pulseout_reset(void);