From 88341c7e56f5b6ec45c3a3516c093337ebbab927 Mon Sep 17 00:00:00 2001 From: Thomas Ingleby Date: Wed, 15 Oct 2014 12:29:08 +0100 Subject: [PATCH] api: correct mistake in gpio.hpp Signed-off-by: Thomas Ingleby --- api/mraa/gpio.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/mraa/gpio.hpp b/api/mraa/gpio.hpp index 05e3e2d..82a3a47 100644 --- a/api/mraa/gpio.hpp +++ b/api/mraa/gpio.hpp @@ -34,7 +34,7 @@ namespace mraa { * Gpio Output modes */ typedef enum { - MODE_STRONG = 0, /**< No interrupt on Gpio */ + 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 */