From bc459c80cec755d7df2c11a807d74e085cbed332 Mon Sep 17 00:00:00 2001 From: Tristan Krause Date: Tue, 3 Dec 2019 07:41:20 +0100 Subject: [PATCH] added zero duty cycle pwm feature --- firmware/pwm.cpp | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/firmware/pwm.cpp b/firmware/pwm.cpp index f747725..383210b 100644 --- a/firmware/pwm.cpp +++ b/firmware/pwm.cpp @@ -5,8 +5,8 @@ const uint8_t PWM::PRESCALER_COUNT = sizeof(PRESCALERS) / sizeof(uint16_t); void PWM::init() const volatile { // fast pwm mode, top = OCR0A, non inverting mode - TCCR0A = _BV(COM0B1) | _BV(WGM00) | _BV(WGM01); - TCCR0B = _BV(WGM02); + TCCR0A = _BV(WGM00) | _BV(WGM01); + TCCR0B = _BV(WGM02); // output signal on PB4 DDRB |= _BV(PB4); @@ -23,7 +23,14 @@ void PWM::setFrequency(uint32_t freq) const volatile void PWM::setValue(uint8_t value) const volatile { - OCR0B = value; + if(value) + { + OCR0B = value; + TCCR0A |= _BV(COM0B1); + } else + { + TCCR0A &= ~_BV(COM0B1); + } } uint8_t PWM::getTop() const volatile