Skip to content

Commit a250224

Browse files
authored
Merge pull request #920 from adafruit/jerryneedell-patch-3
return "false" for stub call
2 parents b2d98ed + 8150150 commit a250224

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ports/nrf/common-hal/pulseio/PulseIn.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ uint16_t common_hal_pulseio_pulsein_get_maxlen(pulseio_pulsein_obj_t* self) {
7272
}
7373

7474
bool common_hal_pulseio_pulsein_get_paused(pulseio_pulsein_obj_t* self) {
75-
return true;
75+
return false;
7676
}
7777

7878
uint16_t common_hal_pulseio_pulsein_get_len(pulseio_pulsein_obj_t* self) {

0 commit comments

Comments
 (0)