diff options
| author | Dan Halbert <halbert@halwitz.org> | 2018-06-10 09:14:37 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-06-10 09:14:37 -0400 |
| commit | a250224c664bbc28a6d68d72ed11701e8cf9e82e (patch) | |
| tree | 5c7a68ce2cecd67507c6082e0cf7df9327bed300 | |
| parent | b2d98edb4ed99efabd862e540613e4ac8550b50d (diff) | |
| parent | 8150150a240441eae6266b29623cb013a5a68a8b (diff) | |
Merge pull request #920 from adafruit/jerryneedell-patch-3
return "false" for stub call
| -rw-r--r-- | ports/nrf/common-hal/pulseio/PulseIn.c | 2 |
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) { |
