From 15e7c7be7a20185e872dd4fc230b42f20c396790 Mon Sep 17 00:00:00 2001 From: Maureen Helm Date: Fri, 27 Sep 2024 15:43:24 -0500 Subject: [PATCH] tracing: Fix sysview for soc families not subdivided into series Fixes the systemview tracing backend for soc families, such as max32, that don't subdivide into soc series and therefore don't define CONFIG_SOC_SERIES. Use CONFIG_SOC_FAMILY instead in the system description since it should always be defined. Signed-off-by: Maureen Helm --- subsys/tracing/sysview/sysview_config.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/subsys/tracing/sysview/sysview_config.c b/subsys/tracing/sysview/sysview_config.c index e68cb4f8a79eb1..e423a16381f68d 100644 --- a/subsys/tracing/sysview/sysview_config.c +++ b/subsys/tracing/sysview/sysview_config.c @@ -51,7 +51,7 @@ static void cbSendSystemDesc(void) { SEGGER_SYSVIEW_SendSysDesc("N=" CONFIG_SEGGER_SYSVIEW_APP_NAME); SEGGER_SYSVIEW_SendSysDesc("D=" CONFIG_BOARD " " - CONFIG_SOC_SERIES " " CONFIG_ARCH); + CONFIG_SOC_FAMILY " " CONFIG_ARCH); SEGGER_SYSVIEW_SendSysDesc("O=Zephyr"); }