api: correct mistake in gpio.hpp v0.5.1
authorThomas Ingleby <thomas.c.ingleby@intel.com>
Wed, 15 Oct 2014 11:29:08 +0000 (12:29 +0100)
committerThomas Ingleby <thomas.c.ingleby@intel.com>
Wed, 15 Oct 2014 11:29:08 +0000 (12:29 +0100)
Signed-off-by: Thomas Ingleby <thomas.c.ingleby@intel.com>
api/mraa/gpio.hpp

index 05e3e2d..82a3a47 100644 (file)
@@ -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 */