From 6c23bb5c117edddb4a1321c63dfc641d013687b1 Mon Sep 17 00:00:00 2001 From: Pete Johanson Date: Mon, 22 Mar 2021 15:13:06 -0400 Subject: [PATCH] fix(tests): Revert default to previous formatter. * new cbprintf formatter causes issues for our use of string formatting. See: https://github.com/zephyrproject-rtos/zephyr/pull/29876 PR: https://github.com/zmkfirmware/zmk/pull/736 --- app/Kconfig | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/app/Kconfig b/app/Kconfig index f4a316b4..68363d51 100644 --- a/app/Kconfig +++ b/app/Kconfig @@ -419,6 +419,11 @@ config ZMK_WPM config SENSOR default y +choice CBPRINTF_IMPLEMENTATION + default CBPRINTF_NANO + +endchoice + module = ZMK module-str = zmk source "subsys/logging/Kconfig.template.log_config"