west: percepio: update module

Update the percepio module to use TraceRecorder v4.8.2
and DevAlert (DFM) v2.1.0

Signed-off-by: Erik Tamlin <erik.tamlin@percepio.com>
This commit is contained in:
Erik Tamlin 2024-02-02 19:36:44 +01:00 committed by Anas Nashif
parent 7a21c6f16a
commit cb99303dd4
2 changed files with 19 additions and 3 deletions

View file

@ -102,14 +102,14 @@ if(CONFIG_PERCEPIO_DFM)
set(DFM_DIR ${ZEPHYR_CURRENT_MODULE_DIR}/DFM) set(DFM_DIR ${ZEPHYR_CURRENT_MODULE_DIR}/DFM)
zephyr_library_sources_ifdef( zephyr_library_sources(
CONFIG_PERCEPIO_DFM
${DFM_DIR}/dfm.c ${DFM_DIR}/dfm.c
${DFM_DIR}/dfmAlert.c ${DFM_DIR}/dfmAlert.c
${DFM_DIR}/dfmCloud.c ${DFM_DIR}/dfmCloud.c
${DFM_DIR}/dfmEntry.c ${DFM_DIR}/dfmEntry.c
${DFM_DIR}/dfmSession.c ${DFM_DIR}/dfmSession.c
${DFM_DIR}/dfmStorage.c ${DFM_DIR}/dfmStorage.c
${DFM_DIR}/dfmRetainedMemory.c
${DFM_DIR}/kernelports/Zephyr/dfmKernelPort.c ${DFM_DIR}/kernelports/Zephyr/dfmKernelPort.c
) )
@ -133,6 +133,16 @@ if(CONFIG_PERCEPIO_DFM)
) )
endif() endif()
if(CONFIG_PERCEPIO_DFM_CFG_STORAGEPORT_FILESYSTEM)
zephyr_library_sources(
${DFM_DIR}/kernelports/Zephyr/storageports/Filesystem/dfmStoragePort.c
)
zephyr_include_directories(
${DFM_DIR}/kernelports/Zephyr/storageports/Filesystem/include/
)
endif()
if(CONFIG_PERCEPIO_DFM_CFG_CLOUDPORT_NONE) if(CONFIG_PERCEPIO_DFM_CFG_CLOUDPORT_NONE)
zephyr_library_sources( zephyr_library_sources(
${DFM_DIR}/cloudports/Dummy/dfmCloudPort.c ${DFM_DIR}/cloudports/Dummy/dfmCloudPort.c
@ -154,6 +164,12 @@ if(CONFIG_PERCEPIO_DFM)
) )
endif() endif()
if(CONFIG_PERCEPIO_DFM_CFG_RETAINED_MEMORY)
zephyr_library_sources(
${DFM_DIR}/kernelports/Zephyr/dfmRetainedMemoryPort.c
)
endif()
zephyr_include_directories( zephyr_include_directories(
${DFM_DIR}/kernelports/Zephyr/config ${DFM_DIR}/kernelports/Zephyr/config
${DFM_DIR}/kernelports/Zephyr/include ${DFM_DIR}/kernelports/Zephyr/include

View file

@ -305,7 +305,7 @@ manifest:
path: modules/lib/openthread path: modules/lib/openthread
- name: percepio - name: percepio
path: modules/debug/percepio path: modules/debug/percepio
revision: 0fbc5b72aeab8a6434523a3a7bc8111c17f0bc73 revision: 7f6fb3f12ea1493a2f8ab6a876fb255a39db47c8
groups: groups:
- debug - debug
- name: picolibc - name: picolibc