Skip to content

Commit 02aaa05

Browse files
restyled-commitss07641069
authored andcommitted
Restyled by clang-format
1 parent 96f0a55 commit 02aaa05

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

src/platform/telink/BLEManagerImpl.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@
4646
#include <zephyr/sys/util.h>
4747

4848
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);
5050
}
5151

5252
#if defined(CONFIG_PM) && !defined(CONFIG_CHIP_ENABLE_PM_DURING_BLE)

src/platform/telink/wifi/TelinkWiFiDriver.cpp

+4-3
Original file line numberDiff line numberDiff line change
@@ -298,10 +298,11 @@ uint32_t TelinkWiFiDriver::GetSupportedWiFiBandsMask() const
298298

299299
void TelinkWiFiDriver::StartDefaultWiFiNetwork(void)
300300
{
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));
303304

304-
char debugBuffer[1] = {0};
305+
char debugBuffer[1] = { 0 };
305306
MutableCharSpan debugText(debugBuffer, 0);
306307
uint8_t outNetworkIndex = 0;
307308

0 commit comments

Comments
 (0)