From 7126f1e2b59e6bae641e04f319737bbf089bd91b Mon Sep 17 00:00:00 2001 From: Naveen Kaje Date: Thu, 11 Oct 2018 16:18:09 -0500 Subject: [PATCH] InterruptIn: Remove protected attributes from rendering on docs site --- drivers/InterruptIn.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/drivers/InterruptIn.h b/drivers/InterruptIn.h index ebc8c84fac..0558cc5540 100644 --- a/drivers/InterruptIn.h +++ b/drivers/InterruptIn.h @@ -157,7 +157,7 @@ public: void disable_irq(); static void _irq_handler(uint32_t id, gpio_irq_event event); - +#if !defined(DOXYGEN_ONLY) protected: gpio_t gpio; gpio_irq_t gpio_irq; @@ -166,6 +166,7 @@ protected: Callback _fall; void irq_init(PinName pin); +#endif }; } // namespace mbed