ff6b5d979f
Add a module which is responsible for getting offset between RTCs used for system clock on NET and APP cores. After getting an offset between NET and APP clocks, it can be used for logging timestamping on NET core to ensure that timestamping is in sync on both cores. Synchronization is done using PPI, IPM task and events and RTC capture feature. Signed-off-by: Krzysztof Chruscinski <krzysztof.chruscinski@nordicsemi.no>
14 lines
190 B
CMake
14 lines
190 B
CMake
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
zephyr_sources(
|
|
soc.c
|
|
)
|
|
|
|
zephyr_library_sources_ifdef(CONFIG_PM
|
|
power.c
|
|
)
|
|
|
|
zephyr_library_sources_ifdef(CONFIG_NRF53_SYNC_RTC
|
|
sync_rtc.c
|
|
)
|