Skip to content

Commit 30ca8d7

Browse files
authored
Dbuezas/fix interrupt comments (#40)
1 parent e77e9c0 commit 30ca8d7

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

src/data/atmega328p/timer1.tsv

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -87,11 +87,11 @@ CS1 CS12 CS11 CS10 clockPrescalerOrSource ExternalClockInput
8787

8888
OCIE1A interruptA interruptVectorCodeA
8989
0 off //nocode
90-
1 on ISR(TIMER1_COMPA_vect) {\n /* on OCR0A match */\n}
90+
1 on ISR(TIMER1_COMPA_vect) {\n /* on OCR1A match */\n}
9191

9292
OCIE1B interruptB interruptVectorCodeB
9393
0 off //nocode
94-
1 on ISR(TIMER1_COMPB_vect) {\n /* on OCR0B match */\n}
94+
1 on ISR(TIMER1_COMPB_vect) {\n /* on OCR1B match */\n}
9595

9696

9797
TOIE1 InterruptOnTimerOverflow interruptVectorCodeOVF
@@ -131,4 +131,4 @@ OCR1A
131131
*
132132

133133
OCR1B
134-
*
134+
*

src/data/lgt328p/timer1.tsv

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -86,11 +86,11 @@ CS1 CS12 CS11 CS10 clockPrescalerOrSource ExternalClockInput
8686

8787
OCIE1A interruptA interruptVectorCodeA
8888
0 off //nocode
89-
1 on ISR(TIMER1_COMPA_vect) {\n /* on OCR0A match */\n}
89+
1 on ISR(TIMER1_COMPA_vect) {\n /* on OCR1A match */\n}
9090

9191
OCIE1B interruptB interruptVectorCodeB
9292
0 off //nocode
93-
1 on ISR(TIMER1_COMPB_vect) {\n /* on OCR0B match */\n}
93+
1 on ISR(TIMER1_COMPB_vect) {\n /* on OCR1B match */\n}
9494

9595
TOIE1 InterruptOnTimerOverflow interruptVectorCodeOVF
9696
0 off //nocode
@@ -175,4 +175,4 @@ OCR1A
175175
*
176176

177177
OCR1B
178-
*
178+
*

0 commit comments

Comments
 (0)