add a .clang-format file (#9154)

This commit is contained in:
Jorropo
2026-01-03 21:19:24 +01:00
committed by GitHub
parent abab6ce815
commit 0d11331d18
771 changed files with 77752 additions and 83184 deletions

File diff suppressed because it is too large Load Diff

View File

@@ -1,26 +1,25 @@
#pragma once
#include "BluetoothCommon.h"
class NimbleBluetooth : BluetoothApi
{
public:
void setup();
void shutdown();
void deinit();
void clearBonds();
bool isActive();
bool isConnected();
int getRssi();
void sendLog(const uint8_t *logMessage, size_t length);
class NimbleBluetooth : BluetoothApi {
public:
void setup();
void shutdown();
void deinit();
void clearBonds();
bool isActive();
bool isConnected();
int getRssi();
void sendLog(const uint8_t *logMessage, size_t length);
#if defined(NIMBLE_TWO)
void startAdvertising();
void startAdvertising();
#endif
bool isDeInit = false;
bool isDeInit = false;
private:
void setupService();
private:
void setupService();
#if !defined(NIMBLE_TWO)
void startAdvertising();
void startAdvertising();
#endif
};