mbed library sources

Dependents:   Nucleo_blink_led

Fork of mbed-src by mbed official

Revision:
461:b90c5392bbcd
Parent:
402:09075a3b15e3
--- a/targets/hal/TARGET_STM/TARGET_NUCLEO_L053R8/gpio_object.h	Mon Feb 02 11:30:07 2015 +0000
+++ b/targets/hal/TARGET_STM/TARGET_NUCLEO_L053R8/gpio_object.h	Mon Feb 02 16:00:07 2015 +0000
@@ -64,6 +64,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