Skip to content

Commit

Permalink
Merge branch 'master' into master
Browse files Browse the repository at this point in the history
  • Loading branch information
a-c-sreedhar-reddy authored Jul 6, 2018
2 parents ae1448c + 12d5222 commit d04f5c9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cores/esp8266/core_esp8266_wiring_pwm.c
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ extern void __analogWriteFreq(uint32_t freq) {
}

extern void __analogWrite(uint8_t pin, int val) {
if (pin >= 16) {
if (pin > 16) {
return;
}
uint32_t analogPeriod = 1000000L / analogFreq;
Expand Down

0 comments on commit d04f5c9

Please sign in to comment.