mirror of
https://github.com/meshtastic/firmware.git
synced 2026-01-04 09:02:21 +00:00
* NRF52 bluetooth cleanup. Fixes BLE not returning after serial PhoneAPI connection * Use new var name in esp32 arch
21 lines
562 B
C++
21 lines
562 B
C++
#pragma once
|
|
|
|
#include "BluetoothCommon.h"
|
|
#include <Arduino.h>
|
|
|
|
class NRF52Bluetooth : BluetoothApi
|
|
{
|
|
public:
|
|
void setup();
|
|
void shutdown();
|
|
void resumeAdverising();
|
|
void clearBonds();
|
|
bool isConnected();
|
|
int getRssi();
|
|
|
|
private:
|
|
static void onConnectionSecured(uint16_t conn_handle);
|
|
void convertToUint8(uint8_t target[4], uint32_t source);
|
|
static bool onPairingPasskey(uint16_t conn_handle, uint8_t const passkey[6], bool match_request);
|
|
static void onPairingCompleted(uint16_t conn_handle, uint8_t auth_status);
|
|
}; |