File tree 2 files changed +5
-4
lines changed
2 files changed +5
-4
lines changed Original file line number Diff line number Diff line change 46
46
#include < zephyr/sys/util.h>
47
47
48
48
extern " C" {
49
- extern __attribute__ ((noinline)) void telink_bt_blc_mac_init(uint8_t *bt_mac);
49
+ extern __attribute__ ((noinline)) void telink_bt_blc_mac_init(uint8_t * bt_mac);
50
50
}
51
51
52
52
#if defined(CONFIG_PM) && !defined(CONFIG_CHIP_ENABLE_PM_DURING_BLE)
Original file line number Diff line number Diff line change @@ -298,10 +298,11 @@ uint32_t TelinkWiFiDriver::GetSupportedWiFiBandsMask() const
298
298
299
299
void TelinkWiFiDriver::StartDefaultWiFiNetwork (void )
300
300
{
301
- chip::ByteSpan ssidSpan = ByteSpan (Uint8::from_const_char (CONFIG_DEFAULT_WIFI_SSID), strlen (CONFIG_DEFAULT_WIFI_SSID));
302
- chip::ByteSpan passwordSpan = ByteSpan (Uint8::from_const_char (CONFIG_DEFAULT_WIFI_PASSWORD), strlen (CONFIG_DEFAULT_WIFI_PASSWORD));
301
+ chip::ByteSpan ssidSpan = ByteSpan (Uint8::from_const_char (CONFIG_DEFAULT_WIFI_SSID), strlen (CONFIG_DEFAULT_WIFI_SSID));
302
+ chip::ByteSpan passwordSpan =
303
+ ByteSpan (Uint8::from_const_char (CONFIG_DEFAULT_WIFI_PASSWORD), strlen (CONFIG_DEFAULT_WIFI_PASSWORD));
303
304
304
- char debugBuffer[1 ] = {0 };
305
+ char debugBuffer[1 ] = { 0 };
305
306
MutableCharSpan debugText (debugBuffer, 0 );
306
307
uint8_t outNetworkIndex = 0 ;
307
308
You can’t perform that action at this time.
0 commit comments