mirror of
https://github.com/meshtastic/firmware.git
synced 2025-06-24 22:02:30 +00:00

using @girtsf clang-format prefs settings. This should allow us to turn on auto format in our editors without causing spurious file changes.
15 lines
340 B
C
15 lines
340 B
C
#pragma once
|
|
|
|
#include <Arduino.h>
|
|
#include <BLEServer.h>
|
|
#include <BLEService.h>
|
|
|
|
BLEService *createMeshBluetoothService(BLEServer *server);
|
|
void destroyMeshBluetoothService();
|
|
|
|
/**
|
|
* Tell any bluetooth clients that the number of rx packets has changed
|
|
*/
|
|
void bluetoothNotifyFromNum(uint32_t newValue);
|
|
|
|
void stopMeshBluetoothService(); |