Merge pull request #920 from adafruit/jerryneedell-patch-3

return "false" for stub call
This commit is contained in:
Dan Halbert 2018-06-10 09:14:37 -04:00 committed by GitHub
commit a250224c66
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -72,7 +72,7 @@ uint16_t common_hal_pulseio_pulsein_get_maxlen(pulseio_pulsein_obj_t* self) {
}
bool common_hal_pulseio_pulsein_get_paused(pulseio_pulsein_obj_t* self) {
return true;
return false;
}
uint16_t common_hal_pulseio_pulsein_get_len(pulseio_pulsein_obj_t* self) {