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  * Copyright (c) 2018-2021 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 #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