mbed library sources for GR-PEACH rev.B.

Fork of mbed-src by mbed official

Revision:
455:8bc3a354916d
Parent:
227:7bd0639b8911
--- a/targets/hal/TARGET_NXP/TARGET_LPC176X/gpio_object.h	Tue Jan 27 07:15:07 2015 +0000
+++ b/targets/hal/TARGET_NXP/TARGET_LPC176X/gpio_object.h	Tue Jan 27 13:30:08 2015 +0000
@@ -45,6 +45,10 @@
     return ((*obj->reg_in & obj->mask) ? 1 : 0);
 }
 
+static inline int gpio_is_connected(const gpio_t *obj) {
+    return obj->pin != (PinName)NC;
+}
+
 #ifdef __cplusplus
 }
 #endif