We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents aa372a7 + 3d7352e commit 7133a9eCopy full SHA for 7133a9e
hardware/esp8266com/esp8266/cores/esp8266/Arduino.h
@@ -209,13 +209,15 @@ void loop(void);
209
// This comes from the pins_*.c file for the active board configuration.
210
#define digitalPinToPort(pin) (0)
211
#define digitalPinToBitMask(pin) (1UL << (pin))
212
+#define digitalPinToTimer(pin) (0)
213
#define portOutputRegister(port) ((volatile uint32_t*) GPO)
214
#define portInputRegister(port) ((volatile uint32_t*) GPI)
215
#define portModeRegister(port) ((volatile uint32_t*) GPE)
216
217
#define NOT_A_PIN -1
218
#define NOT_A_PORT -1
219
#define NOT_AN_INTERRUPT -1
220
+#define NOT_ON_TIMER 0
221
222
#ifdef __cplusplus
223
} // extern "C"
0 commit comments