Merge remote-tracking branch 'origin/main'

This commit is contained in:
Hosted Weblate 2022-11-20 20:16:36 +01:00
commit 16e34b147a
No known key found for this signature in database
GPG Key ID: A3FAAA06E6569B4C

View File

@ -159,7 +159,7 @@ STATIC mp_obj_t i2ctarget_i2c_target_request(size_t n_args, const mp_obj_t *pos_
bool forever = false;
uint64_t timeout_end = 0;
if (timeout_ms <= 0) {
if (timeout_ms == 0) {
forever = true;
} else if (timeout_ms > 0) {
timeout_end = common_hal_time_monotonic_ms() + timeout_ms;