1 /* 2 * Copyright (c) 2023 Nordic Semiconductor ASA 3 * 4 * SPDX-License-Identifier: Apache-2.0 5 */ 6 #ifndef _BOARD_POSIX_NRF52_BSIM_TIME_MACHINE_H 7 #define _BOARD_POSIX_NRF52_BSIM_TIME_MACHINE_H 8 9 #include "bs_types.h" 10 #include "time_machine_if.h" 11 #include <zephyr/toolchain.h> 12 13 #ifdef __cplusplus 14 extern "C" { 15 #endif 16 17 /* This header and prototype exists for backwards compatibility with old bsim tests */ 18 void tm_set_phy_max_resync_offset(bs_time_t offset_in_us); 19 20 #ifdef __cplusplus 21 } 22 #endif 23 24 #endif 25