Add a stub mgos_gpio_remove_int_handler()
This commit is contained in:
@ -133,3 +133,12 @@ bool mgos_gpio_set_pull(int pin, enum mgos_gpio_pull_type pull) {
|
||||
(void)pin;
|
||||
(void)pull;
|
||||
}
|
||||
|
||||
void mgos_gpio_remove_int_handler(int pin, mgos_gpio_int_handler_f *old_cb, void **old_arg) {
|
||||
LOG(LL_INFO, ("Not implemented."));
|
||||
return;
|
||||
|
||||
(void)pin;
|
||||
(void)old_cb;
|
||||
(void)old_arg;
|
||||
}
|
||||
|
Reference in New Issue
Block a user