added softdevice audio sync timer

This commit is contained in:
Dirk Helbig
2024-06-12 13:21:30 +02:00
parent e0fac85885
commit 0d653e4844
7 changed files with 326 additions and 8 deletions

31
src/audio_sync_timer.h Normal file
View File

@@ -0,0 +1,31 @@
/*
* Copyright (c) 2023 Nordic Semiconductor ASA
*
* SPDX-License-Identifier: LicenseRef-Nordic-5-Clause
*/
#ifndef _AUDIO_SYNC_TIMER_H_
#define _AUDIO_SYNC_TIMER_H_
#include <zephyr/kernel.h>
#include <stdint.h>
/**
* @brief Capture a timestamp on the sync timer.
*
* @retval The current timestamp of the audio sync timer.
*/
uint32_t audio_sync_timer_capture(void);
/**
* @brief Returns the last captured value of the sync timer.
*
* The captured time is corresponding to the I2S frame start.
*
* See @ref audio_sync_timer_capture().
*
* @retval The last captured timestamp of the audio sync timer.
*/
uint32_t audio_sync_timer_capture_get(void);
#endif /* _AUDIO_SYNC_TIMER_H_ */