Add mgos_gpio_read(); mgos_[mu]sleep()

This commit is contained in:
Pim van Pelt
2018-11-04 14:17:00 +01:00
parent 5ebd4b112a
commit 8cfcfc9af3
4 changed files with 17 additions and 0 deletions

View File

@ -30,3 +30,8 @@ void mgos_gpio_inject(int pin) {
s_handler_cb(pin, s_handler_cb_arg);
}
}
bool mgos_gpio_read(int pin) {
return false;
(void) pin;
}