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:
parent
7a21c6f16a
commit
cb99303dd4
|
@ -102,14 +102,14 @@ if(CONFIG_PERCEPIO_DFM)
|
|||
|
||||
set(DFM_DIR ${ZEPHYR_CURRENT_MODULE_DIR}/DFM)
|
||||
|
||||
zephyr_library_sources_ifdef(
|
||||
CONFIG_PERCEPIO_DFM
|
||||
zephyr_library_sources(
|
||||
${DFM_DIR}/dfm.c
|
||||
${DFM_DIR}/dfmAlert.c
|
||||
${DFM_DIR}/dfmCloud.c
|
||||
${DFM_DIR}/dfmEntry.c
|
||||
${DFM_DIR}/dfmSession.c
|
||||
${DFM_DIR}/dfmStorage.c
|
||||
${DFM_DIR}/dfmRetainedMemory.c
|
||||
${DFM_DIR}/kernelports/Zephyr/dfmKernelPort.c
|
||||
)
|
||||
|
||||
|
@ -133,6 +133,16 @@ if(CONFIG_PERCEPIO_DFM)
|
|||
)
|
||||
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)
|
||||
zephyr_library_sources(
|
||||
${DFM_DIR}/cloudports/Dummy/dfmCloudPort.c
|
||||
|
@ -154,6 +164,12 @@ if(CONFIG_PERCEPIO_DFM)
|
|||
)
|
||||
endif()
|
||||
|
||||
if(CONFIG_PERCEPIO_DFM_CFG_RETAINED_MEMORY)
|
||||
zephyr_library_sources(
|
||||
${DFM_DIR}/kernelports/Zephyr/dfmRetainedMemoryPort.c
|
||||
)
|
||||
endif()
|
||||
|
||||
zephyr_include_directories(
|
||||
${DFM_DIR}/kernelports/Zephyr/config
|
||||
${DFM_DIR}/kernelports/Zephyr/include
|
||||
|
|
Loading…
Reference in a new issue