# HG changeset patch # User Michael Pavone # Date 1672087332 28800 # Node ID 827ab6dd534a3331e03a7ea3d6909160e4d78c93 # Parent 6677afe78a6f1339837a79a7f681b5f80524bce9 Adjust when not-ready is returned during coarse seeking to fix some regressions diff -r 6677afe78a6f -r 827ab6dd534a cdd_mcu.c --- a/cdd_mcu.c Mon Dec 26 07:17:29 2022 -0800 +++ b/cdd_mcu.c Mon Dec 26 12:42:12 2022 -0800 @@ -235,7 +235,7 @@ break; } uint8_t force_not_ready = 0; - if (context->coarse_seek && !(context->coarse_seek % 15)) { + if (context->coarse_seek && !(context->coarse_seek % 6)) { //TODO: adjust seeking for focus error when these bad statuses happen //BIOS depends on getting a not ready status during seeking to clear certain state force_not_ready = context->status_buffer.format != SF_NOTREADY;