1 /**
2 ******************************************************************************
3 * @file shci_tl_if.c
4 * @author MCD Application Team
5 * @brief Transport layer interface to the system channel
6 ******************************************************************************
7 * @attention
8 *
9 * <h2><center>© Copyright (c) 2019 STMicroelectronics.
10 * All rights reserved.</center></h2>
11 *
12 * This software component is licensed by ST under BSD 3-Clause license,
13 * the "License"; You may not use this file except in compliance with the
14 * License. You may obtain a copy of the License at:
15 * opensource.org/licenses/BSD-3-Clause
16 *
17 ******************************************************************************
18 */
19 #include "shci_tl.h"
20 #include "tl.h"
21
22
shci_register_io_bus(tSHciIO * fops)23 void shci_register_io_bus(tSHciIO* fops)
24 {
25 /* Register IO bus services */
26 fops->Init = TL_SYS_Init;
27 fops->Send = TL_SYS_SendCmd;
28
29 return;
30 }
31
32 /******************* (C) COPYRIGHT 2011 STMicroelectronics *****END OF FILE****/
33