From cad73860ed28c5da4661f7c2a8eba88d859758d2 Mon Sep 17 00:00:00 2001 From: GermanG Date: Mon, 13 May 2024 22:03:03 +0200 Subject: [PATCH] fix typo --- app/src/behaviors/behavior_soft_off.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/src/behaviors/behavior_soft_off.c b/app/src/behaviors/behavior_soft_off.c index d3cd0dc3..461ce933 100644 --- a/app/src/behaviors/behavior_soft_off.c +++ b/app/src/behaviors/behavior_soft_off.c @@ -58,7 +58,7 @@ static int on_keymap_binding_released(struct zmk_behavior_binding *binding, if (hold_time > config->hold_time_ms) { if (IS_ENABLED(CONFIG_ZMK_SPLIT) && IS_ENABLED(CONFIG_ZMK_SPLIT_ROLE_CENTRAL)) { - k_usleep(K_MSEC(100)); + k_sleep(K_MSEC(100)); } zmk_pm_soft_off(); } else {