From 8551a213aba683f0d6e1c3968f8144115828fae5 Mon Sep 17 00:00:00 2001 From: Felipe Moura Date: Fri, 31 Jul 2026 17:48:35 -0300 Subject: [PATCH] system/uorb: select LIBC_PRINT_EXTENSION for UORB_FORMAT orb_info() is compiled under UORB_FORMAT and formats through the "%pB" extension, but only DEBUG_UORB selected LIBC_PRINT_EXTENSION. Enabling the listener alone therefore printed the raw buffer address instead of the decoded data, e.g. "sensor_accel(now:390000):0x3fc931e4B". Signed-off-by: Felipe Moura --- system/uorb/Kconfig | 1 + 1 file changed, 1 insertion(+) diff --git a/system/uorb/Kconfig b/system/uorb/Kconfig index 71f06e504..e72ae4f60 100644 --- a/system/uorb/Kconfig +++ b/system/uorb/Kconfig @@ -20,6 +20,7 @@ config UORB_STACKSIZE config UORB_FORMAT bool + select LIBC_PRINT_EXTENSION default n config UORB_LISTENER