1 /**
2   ******************************************************************************
3   * @file    ll_sys_startup.h
4   * @author  MCD Application Team
5   * @brief   Header for Link Layer startup interfaces
6   ******************************************************************************
7   * @attention
8   *
9   * Copyright (c) 2022 STMicroelectronics.
10   * All rights reserved.
11   *
12   * This software is licensed under terms that can be found in the LICENSE file
13   * in the root directory of this software component.
14   * If no LICENSE file comes with this software, it is provided AS-IS.
15   *
16   ******************************************************************************
17   */
18 
19 #ifndef LL_SYS_STARTUP_H
20 #define LL_SYS_STARTUP_H
21 
22 /* Link Layer system interface startup module functions  ************************************************/
23 #if BLE
24 void ll_sys_ble_cntrl_init(hst_cbk hostCallback);
25 #endif
26 void ll_sys_mac_cntrl_init(void);
27 void ll_sys_thread_init(void);
28 
29 #endif /* LL_SYS_STARTUP_H */