Stub out get_paused in nrf builds.

This commit is contained in:
Scott Shawcroft 2018-06-08 14:01:54 -07:00
parent 66b79723b6
commit 8195df1b55

View File

@ -71,6 +71,10 @@ uint16_t common_hal_pulseio_pulsein_get_maxlen(pulseio_pulsein_obj_t* self) {
return 0xadaf;
}
bool common_hal_pulseio_pulsein_get_paused(pulseio_pulsein_obj_t* self) {
return true;
}
uint16_t common_hal_pulseio_pulsein_get_len(pulseio_pulsein_obj_t* self) {
return 0xadaf;
}