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 <moura.fmo@gmail.com>
This commit is contained in:
Felipe Moura 2026-07-31 17:48:35 -03:00
parent 2a842d92a2
commit 8551a213ab

View file

@ -20,6 +20,7 @@ config UORB_STACKSIZE
config UORB_FORMAT
bool
select LIBC_PRINT_EXTENSION
default n
config UORB_LISTENER