File tree Expand file tree Collapse file tree 1 file changed +7
-1
lines changed
targets/TARGET_STM/TARGET_STM32F4/TARGET_UBLOX_EVK_ODIN_W2/sdk/ublox-odin-w2-drivers Expand file tree Collapse file tree 1 file changed +7
-1
lines changed Original file line number Diff line number Diff line change @@ -49,6 +49,12 @@ typedef void(*cbMAIN_ErrorHandler)(
49
49
const cb_char * filename ,
50
50
cb_uint32 line );
51
51
52
+ typedef struct
53
+ {
54
+ cbWLAN_MACAddress mac ; /**< MAC of WLAN interface, set to all zeros if hardware programmed address should be used. */
55
+ cbWM_TxPowerSettings txPowerSettings ; /**< Transmission power settings. */
56
+ } cbMAIN_WlanStartParams ;
57
+
52
58
/*---------------------------------------------------------------------------
53
59
* Callback to indicate that initialization of BT stack is completed.
54
60
*-------------------------------------------------------------------------*/
@@ -89,7 +95,7 @@ extern cb_int32 cbMAIN_initWlan(void);
89
95
* @param params Start parameters passed to WLAN driver instance.
90
96
* @return cbSTATUS_OK if successful, otherwise cbSTATUS_ERROR.
91
97
*/
92
- extern cb_int32 cbMAIN_startWlan (cb_int32 targetId , cbWLAN_StartParameters * params );
98
+ extern cb_int32 cbMAIN_startWlan (cb_int32 targetId , cbMAIN_WlanStartParams * params );
93
99
94
100
/**
95
101
* Register error handler function.
You can’t perform that action at this time.
0 commit comments