1 /* 2 * Copyright (c) 2023 Nordic Semiconductor ASA 3 * 4 * SPDX-License-Identifier: Apache-2.0 5 */ 6 7 #ifndef BOARDS_POSIX_BSIM_COMMON_PHY_SYNC_CTRL_H 8 #define BOARDS_POSIX_BSIM_COMMON_PHY_SYNC_CTRL_H 9 10 #include "bs_types.h" 11 12 #ifdef __cplusplus 13 extern "C"{ 14 #endif 15 16 void phy_sync_ctrl_set_last_phy_sync_time(bs_time_t time); 17 void phy_sync_ctrl_set_max_resync_offset(bs_time_t max_resync_offset); 18 void phy_sync_ctrl_connect_to_2G4_phy(void); 19 void phy_sync_ctrl_pre_boot2(void); 20 void phy_sync_ctrl_pre_boot3(void); 21 22 #ifdef __cplusplus 23 } 24 #endif 25 26 #endif /* BOARDS_POSIX_BSIM_COMMON_PHY_SYNC_CTRL_H */ 27