rp2040: add definition for machine.PinToggle

This commit is contained in:
BCG
2024-01-28 12:08:11 -05:00
committed by Ron Evans
parent 70f1a5429a
commit 0ea5cfc8fe
+2
View File
@@ -241,6 +241,8 @@ const (
PinFalling PinChange = 4 << iota
// Edge rising
PinRising
PinToggle = PinFalling | PinRising
)
// Callbacks to be called for pins configured with SetInterrupt.