From 82cfa32f70d248864f6f416a0898b93cde8a474a Mon Sep 17 00:00:00 2001 From: Brendan Le Foll Date: Sat, 5 Mar 2016 19:11:26 +0000 Subject: [PATCH] gpio.hpp: Fix copy and paste error in documentation of gpio modes Fixes #455 Signed-off-by: Brendan Le Foll --- api/mraa/gpio.hpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/api/mraa/gpio.hpp b/api/mraa/gpio.hpp index a227615..98693ac 100644 --- a/api/mraa/gpio.hpp +++ b/api/mraa/gpio.hpp @@ -44,9 +44,9 @@ namespace mraa */ typedef enum { MODE_STRONG = 0, /**< Default. Strong High and Low */ - MODE_PULLUP = 1, /**< Interupt on rising & falling */ - MODE_PULLDOWN = 2, /**< Interupt on rising only */ - MODE_HIZ = 3 /**< Interupt on falling only */ + MODE_PULLUP = 1, /**< Resistive High */ + MODE_PULLDOWN = 2, /**< Resistive Low */ + MODE_HIZ = 3 /**< High Z State */ } Mode; /**