added zero duty cycle pwm feature
This commit is contained in:
parent
f7f2c5137b
commit
bc459c80ce
|
@ -5,7 +5,7 @@ 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);
|
||||
TCCR0A = _BV(WGM00) | _BV(WGM01);
|
||||
TCCR0B = _BV(WGM02);
|
||||
|
||||
// output signal on PB4
|
||||
|
@ -22,8 +22,15 @@ void PWM::setFrequency(uint32_t freq) const volatile
|
|||
}
|
||||
|
||||
void PWM::setValue(uint8_t value) const volatile
|
||||
{
|
||||
if(value)
|
||||
{
|
||||
OCR0B = value;
|
||||
TCCR0A |= _BV(COM0B1);
|
||||
} else
|
||||
{
|
||||
TCCR0A &= ~_BV(COM0B1);
|
||||
}
|
||||
}
|
||||
|
||||
uint8_t PWM::getTop() const volatile
|
||||
|
|
Loading…
Reference in a new issue