diff --git a/ports/raspberrypi/common-hal/pulseio/PulseOut.c b/ports/raspberrypi/common-hal/pulseio/PulseOut.c index e77deae714..3125705256 100644 --- a/ports/raspberrypi/common-hal/pulseio/PulseOut.c +++ b/ports/raspberrypi/common-hal/pulseio/PulseOut.c @@ -54,7 +54,7 @@ void pulse_finish(void) { } uint64_t delay = pulse_buffer[pulse_index]; if (delay < min_pulse ) { - delay = min_pulse; + delay = min_pulse; } add_alarm_in_us(delay, pulseout_interrupt_handler, NULL, false);