mirror of https://github.com/ARMmbed/mbed-os.git
commit
7bcb066917
|
@ -199,4 +199,13 @@ void gpio_deinit(gpio_t *obj)
|
||||||
HAL_GPIO_DeInit(&obj->hal_pin);
|
HAL_GPIO_DeInit(&obj->hal_pin);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
int gpio_is_connected(const gpio_t *obj)
|
||||||
|
{
|
||||||
|
if(obj->pin != (PinName)NC){
|
||||||
|
return 1;
|
||||||
|
} else {
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Reference in New Issue