Skip to content

Commit d022d31

Browse files
MaureenHelmfabiobaltieri
authored andcommitted
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 <[email protected]>
1 parent 82a00c9 commit d022d31

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

subsys/tracing/sysview/sysview_config.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ static void cbSendSystemDesc(void)
5151
{
5252
SEGGER_SYSVIEW_SendSysDesc("N=" CONFIG_SEGGER_SYSVIEW_APP_NAME);
5353
SEGGER_SYSVIEW_SendSysDesc("D=" CONFIG_BOARD " "
54-
CONFIG_SOC_SERIES " " CONFIG_ARCH);
54+
CONFIG_SOC_FAMILY " " CONFIG_ARCH);
5555
SEGGER_SYSVIEW_SendSysDesc("O=Zephyr");
5656
}
5757

0 commit comments

Comments
 (0)