summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjerryneedell <jerryneedell@gmail.com>2018-06-10 07:11:44 -0400
committerGitHub <noreply@github.com>2018-06-10 07:11:44 -0400
commit8150150a240441eae6266b29623cb013a5a68a8b (patch)
tree5c7a68ce2cecd67507c6082e0cf7df9327bed300
parentb2d98edb4ed99efabd862e540613e4ac8550b50d (diff)
return "false" for stub call
See #918 for discussion
-rw-r--r--ports/nrf/common-hal/pulseio/PulseIn.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ports/nrf/common-hal/pulseio/PulseIn.c b/ports/nrf/common-hal/pulseio/PulseIn.c
index e759ac3a3..950cc877d 100644
--- a/ports/nrf/common-hal/pulseio/PulseIn.c
+++ b/ports/nrf/common-hal/pulseio/PulseIn.c
@@ -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) {