mbed
Fork of mbed-dev by
Diff: targets/TARGET_NUVOTON/TARGET_NANO100/gpio_api.c
- Revision:
- 182:57724642e740
- Parent:
- 175:b96e65c34a4d
--- a/targets/TARGET_NUVOTON/TARGET_NANO100/gpio_api.c Wed Jan 17 15:23:54 2018 +0000 +++ b/targets/TARGET_NUVOTON/TARGET_NANO100/gpio_api.c Fri Feb 16 16:09:33 2018 +0000 @@ -34,6 +34,11 @@ return (uint32_t)(1 << pin_index); // Return the pin mask } +int gpio_is_connected(const gpio_t *obj) +{ + return (obj->pin != (PinName) NC); +} + void gpio_init(gpio_t *obj, PinName pin) { obj->pin = pin;