aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMaximilian Leopold <max.leopold2111@gmail.com>2020-05-02 12:45:20 +0200
committerGitHub <noreply@github.com>2020-05-02 12:45:20 +0200
commit4438bb7fd43ee18a203db09c1ea7ed829b1a6232 (patch)
tree33c7ee2ff3ae074b36a8bbcfe83534821a0507c4
parent0f3d4da614d5a195e03d70741031092a002e2d33 (diff)
Update comment on wiring_analog.c
-rw-r--r--cores/arduino/wiring_analog.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/cores/arduino/wiring_analog.c b/cores/arduino/wiring_analog.c
index 967c2b9..e237d6d 100644
--- a/cores/arduino/wiring_analog.c
+++ b/cores/arduino/wiring_analog.c
@@ -164,7 +164,7 @@ void analogWrite(uint8_t pin, int val)
#if defined(TCCR1A) && defined(COM1C1)
case TIMER1C:
- // connect pwm to pin on timer 1, channel B
+ // connect pwm to pin on timer 1, channel C
sbi(TCCR1A, COM1C1);
OCR1C = val; // set pwm duty
break;