setup mod02 ex00 and oneline comments

This commit is contained in:
hugo LAMY
2025-03-06 16:23:18 +01:00
parent 6ec379e1ae
commit ebb578db5f
6 changed files with 86 additions and 28 deletions

View File

@@ -72,22 +72,17 @@
int main() {
MODE_OUTPUT(LED2);
// Table 16-4 : set timer in Fast PWM (Pulse With Modulation) mode with TOP = ICR1 (Mode 14)
SET(TCCR1A, WGM11);
SET(TCCR1A, WGM11); // Table 16-4 : set timer in Fast PWM (Pulse With Modulation) mode with TOP = ICR1 (Mode 14)
SET(TCCR1B, WGM12);
SET(TCCR1B, WGM13);
// Table 16-2 : non-inverting mode, the LED will be ON for DUTY_CYCLE% of the time (CLEAR OC1A on compare match, SET OC1A at BOTTOM)
SET(TCCR1A, COM1A1);
SET(TCCR1A, COM1A1); // Table 16-2 : non-inverting mode, the LED will be ON for DUTY_CYCLE% of the time (CLEAR OC1A on compare match, SET OC1A at BOTTOM)
// Table 16-4 : set the period (compare TOP value)
ICR1 = TIME_MS(PERIOD);
ICR1 = TIME_MS(PERIOD); // Table 16-4 : set the period (compare TOP value)
// 16.9.3 : set the duty cycle to DUTY_CYCLE% of the time -> OC1A (alternate function of PORTB1, aka LED2) is cleared when TCNT1 (the counter value) equals OCR1A
OCR1A = TIME_MS(PERCENT(DUTY_CYCLE, PERIOD));
OCR1A = TIME_MS(PERCENT(DUTY_CYCLE, PERIOD)); // 16.9.3 : set the duty cycle to DUTY_CYCLE% of the time -> OC1A (alternate function of PORTB1, aka LED2) is cleared when TCNT1 (the counter value) equals OCR1A
// start the timer with the prescaler
TCCR1B |= (PRESCALE_SET);
TCCR1B |= (PRESCALE_SET); // start the timer with the prescaler
while(1) {
continue;