From 6d127fcd1b0855d0c309e0f45d81796aa6f6c722 Mon Sep 17 00:00:00 2001 From: Mariusz Ryndzionek Date: Sat, 22 Jan 2022 23:38:05 +0100 Subject: [PATCH] Add Interruptable for Dynamic --- src/gpio.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/gpio.rs b/src/gpio.rs index faf3365e..fda029ef 100644 --- a/src/gpio.rs +++ b/src/gpio.rs @@ -189,6 +189,7 @@ use sealed::PinMode; use sealed::Interruptable; impl Interruptable for Input {} +impl Interruptable for Dynamic {} /// External Interrupt Pin pub trait ExtiPin {