We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents e7b7d6d + 8e699b4 commit 319156bCopy full SHA for 319156b
cores/esp8266/core_esp8266_wiring_digital.c
@@ -77,7 +77,6 @@ extern void __pinMode(uint8_t pin, uint8_t mode) {
77
}
78
79
extern void ICACHE_RAM_ATTR __digitalWrite(uint8_t pin, uint8_t val) {
80
- val &= 0x01;
81
if(pin < 16){
82
if(val) GPOS = (1 << pin);
83
else GPOC = (1 << pin);
0 commit comments