diff options
| author | jerryneedell <jerryneedell@gmail.com> | 2018-06-10 07:11:44 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-06-10 07:11:44 -0400 |
| commit | 8150150a240441eae6266b29623cb013a5a68a8b (patch) | |
| tree | 5c7a68ce2cecd67507c6082e0cf7df9327bed300 /ports | |
| parent | b2d98edb4ed99efabd862e540613e4ac8550b50d (diff) | |
return "false" for stub call
See #918 for discussion
Diffstat (limited to 'ports')
| -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) { |
