1 /*
2  * Copyright (c) 2023 Nordic Semiconductor ASA
3  *
4  * SPDX-License-Identifier: Apache-2.0
5  */
6 #ifndef HW_MODELS_WEAK_STUBS_H
7 #define HW_MODELS_WEAK_STUBS_H
8 
9 #include "bs_types.h"
10 #include "bs_cmd_line.h"
11 
12 #ifdef __cplusplus
13 extern "C" {
14 #endif
15 
16 /* The integrating program is expected to provide these. If not weak stubs are provided here */
17 extern void phy_sync_ctrl_set_last_phy_sync_time(bs_time_t time);
18 extern void bs_add_extra_dynargs(bs_args_struct_t *args_struct_toadd);
19 extern unsigned int bsim_args_get_global_device_nbr(void);
20 
21 #ifdef __cplusplus
22 }
23 #endif
24 
25 #endif /* HW_MODELS_WEAK_STUBS_H */
26