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 <maureen.helm@analog.com>
This commit is contained in:
parent
82a00c9cb8
commit
d022d315d2
1 changed files with 1 additions and 1 deletions
|
|
@ -51,7 +51,7 @@ static void cbSendSystemDesc(void)
|
||||||
{
|
{
|
||||||
SEGGER_SYSVIEW_SendSysDesc("N=" CONFIG_SEGGER_SYSVIEW_APP_NAME);
|
SEGGER_SYSVIEW_SendSysDesc("N=" CONFIG_SEGGER_SYSVIEW_APP_NAME);
|
||||||
SEGGER_SYSVIEW_SendSysDesc("D=" CONFIG_BOARD " "
|
SEGGER_SYSVIEW_SendSysDesc("D=" CONFIG_BOARD " "
|
||||||
CONFIG_SOC_SERIES " " CONFIG_ARCH);
|
CONFIG_SOC_FAMILY " " CONFIG_ARCH);
|
||||||
SEGGER_SYSVIEW_SendSysDesc("O=Zephyr");
|
SEGGER_SYSVIEW_SendSysDesc("O=Zephyr");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue