Skip to content

Commit adf19ef

Browse files
restyled-commitswqx6
authored andcommitted
Restyled by clang-format
1 parent a1d00c3 commit adf19ef

File tree

4 files changed

+6
-7
lines changed

4 files changed

+6
-7
lines changed

src/platform/ESP32/BLEManagerImpl.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ class BLEManagerImpl final : public BLEManager,
138138
CHIP_ERROR ConfigureScanResponseData(ByteSpan data);
139139
void ClearScanResponseData(void);
140140
#ifdef CONFIG_BT_NIMBLE_ENABLED
141-
CHIP_ERROR ConfigureExtraServices(std::vector<struct ble_gatt_svc_def> &extGattSvcs, bool afterMatterSvc);
141+
CHIP_ERROR ConfigureExtraServices(std::vector<struct ble_gatt_svc_def> & extGattSvcs, bool afterMatterSvc);
142142
#endif
143143

144144
private:
@@ -240,7 +240,7 @@ class BLEManagerImpl final : public BLEManager,
240240
#ifdef CONFIG_BT_NIMBLE_ENABLED
241241
#ifdef CONFIG_BT_NIMBLE_EXT_ADV
242242
static constexpr size_t kMaxMatterAdvDataLen = 31;
243-
static constexpr uint8_t kMatterAdvInstance = 0;
243+
static constexpr uint8_t kMatterAdvInstance = 0;
244244
uint8_t mMatterAdvData[kMaxMatterAdvDataLen];
245245
uint16_t mMatterAdvDataLen = 0;
246246
#endif

src/platform/ESP32/ConfigurationManagerImpl.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,8 @@
3535
#include <platform/internal/GenericConnectivityManagerImpl_NoBLE.h>
3636
#endif
3737

38-
#include <platform/ESP32/ESP32Config.h>
3938
#include <freertos/timers.h>
39+
#include <platform/ESP32/ESP32Config.h>
4040

4141
namespace chip {
4242
namespace DeviceLayer {

src/platform/ESP32/bluedroid/BLEManagerImpl.cpp

+1-2
Original file line numberDiff line numberDiff line change
@@ -23,13 +23,12 @@
2323
* for the ESP32 platform.
2424
*/
2525
/* this file behaves like a config.h, comes first */
26-
#include <platform/internal/CHIPDeviceLayerInternal.h>
2726
#include "sdkconfig.h"
27+
#include <platform/internal/CHIPDeviceLayerInternal.h>
2828
#ifdef CONFIG_ENABLE_ESP32_BLE_CONTROLLER
2929
#include <lib/support/CodeUtils.h>
3030
#endif
3131

32-
3332
#ifdef CONFIG_ENABLE_ESP32_BLE_CONTROLLER
3433
#include <ble/Ble.h>
3534
#endif

src/platform/ESP32/nimble/BLEManagerImpl.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ ChipDeviceScanner & mDeviceScanner = Internal::ChipDeviceScanner::GetInstance();
127127
BLEManagerImpl BLEManagerImpl::sInstance;
128128
const struct ble_gatt_svc_def BLEManagerImpl::CHIPoBLEGATTSvc = { .type = BLE_GATT_SVC_TYPE_PRIMARY,
129129
.uuid = (ble_uuid_t *) (&ShortUUID_CHIPoBLEService),
130-
.characteristics = (struct ble_gatt_chr_def[]) {
130+
.characteristics = (struct ble_gatt_chr_def[]){
131131
{
132132
.uuid = (ble_uuid_t *) (&UUID128_CHIPoBLEChar_RX),
133133
.access_cb = gatt_svr_chr_access,
@@ -1447,7 +1447,7 @@ void BLEManagerImpl::ClearScanResponseData(void)
14471447
ChipLogDetail(DeviceLayer, "scan response data is cleared");
14481448
}
14491449

1450-
CHIP_ERROR BLEManagerImpl::ConfigureExtraServices(std::vector<struct ble_gatt_svc_def> &extGattSvcs, bool afterMatterSvc)
1450+
CHIP_ERROR BLEManagerImpl::ConfigureExtraServices(std::vector<struct ble_gatt_svc_def> & extGattSvcs, bool afterMatterSvc)
14511451
{
14521452
if (!mGattSvcs.empty())
14531453
{

0 commit comments

Comments
 (0)