Skip to content

Commit 9b97456

Browse files
committed
zephyr/main: allow to build when CONFIG_MULTITHREADING=n
K_sleep() is not available when multithreading is disabled. Let's use k_busy_wait() in that case. Signed-off-by: Andrzej Puzdrowski <andrzej.puzdrowski@nordicsemi.no>
1 parent 0cf0dbd commit 9b97456

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

boot/zephyr/main.c

+8
Original file line numberDiff line numberDiff line change
@@ -390,7 +390,11 @@ static bool detect_pin(const char* port, int pin, uint32_t expected, int delay)
390390

391391
if (detect_value == expected) {
392392
if (delay > 0) {
393+
#ifdef CONFIG_MULTITHREADING
393394
k_sleep(K_MSEC(50));
395+
#else
396+
k_busy_wait(50000);
397+
#endif
394398

395399
/* Get the uptime for debounce purposes. */
396400
int64_t timestamp = k_uptime_get();
@@ -409,7 +413,11 @@ static bool detect_pin(const char* port, int pin, uint32_t expected, int delay)
409413
}
410414

411415
/* Delay 1 ms */
416+
#ifdef CONFIG_MULTITHREADING
412417
k_sleep(K_MSEC(1));
418+
#else
419+
k_busy_wait(1000);
420+
#endif
413421
}
414422
}
415423
}

0 commit comments

Comments
 (0)