8000
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.
1 parent 1228251 commit 1e2f1a1Copy full SHA for 1e2f1a1
cores/rp2040/Arduino.h
@@ -70,6 +70,8 @@ void noInterrupts();
70
#define portModeRegister(port) ((volatile uint32_t*) sio_hw->gpio_oe)
71
#define digitalWriteFast(pin, val) (val ? sio_hw->gpio_set = (1 << pin) : sio_hw->gpio_clr = (1 << pin))
72
#define digitalReadFast(pin) ((1 << pin) & sio_hw->gpio_in)
73
+#define sei() interrupts()
74
+#define cli() noInterrupts()
75
76
// ADC RP2040-specific calls
77
void analogReadResolution(int bits);
0 commit comments