-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathb_wl5m_subg_radio.c
68 lines (58 loc) · 1.46 KB
/
b_wl5m_subg_radio.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
/**
******************************************************************************
* @file b_wl5m_subg_radio.c
* @author MCD Application Team
* @brief This file provides set of firmware functions to manage:
* - RF circuitry available on B-WL5M-SUBG
* Kit from STMicroelectronics
******************************************************************************
* @attention
*
* Copyright (c) 2022 STMicroelectronics.
* All rights reserved.
*
* This software is licensed under terms that can be found in the LICENSE file
* in the root directory of this software component.
* If no LICENSE file comes with this software, it is provided AS-IS.
*
******************************************************************************
*/
/* Includes ------------------------------------------------------------------*/
#include "b_wl5m_subg_radio.h"
/** @addtogroup BSP
* @{
*/
/** @addtogroup B_WL5M_SUBG
* @{
*/
/** @addtogroup B_WL5M_SUBG_RADIO
* @brief This file provides set of firmware functions to Radio switch
* available on B-WL5M-SUBG Kit from STMicroelectronics.
* @{
*/
/** @addtogroup B_WL5M_SUBG_RADIO_Exported_Functions
* @{
*/
/**
* @brief Return Board Configuration
* @retval
* RADIO_CONF_RFO_LP_HP
* RADIO_CONF_RFO_LP
* RADIO_CONF_RFO_HP
*/
int32_t BSP_RADIO_GetTxConfig(void)
{
return RADIO_CONF_RFO_LP_HP;
}
/**
* @}
*/
/**
* @}
*/
/**
* @}
*/
/**
* @}
*/