Add a stub mgos_gpio_remove_int_handler()

This commit is contained in:
Pim van Pelt
2019-01-09 14:16:05 +01:00
parent 5d194fe8ae
commit d69536b305
2 changed files with 45 additions and 0 deletions

View File

@ -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;
}