mirror of
https://github.com/meshtastic/firmware.git
synced 2025-06-24 05:53:10 +00:00

* Workaround to allow bluetooth disable on NRF52 * Use miminum tx power for bluetooth * Reorganize * Instantiate nrf52Bluetooth correctly.. * Change log message
22 lines
589 B
C++
22 lines
589 B
C++
#pragma once
|
|
|
|
#include "BluetoothCommon.h"
|
|
#include <Arduino.h>
|
|
|
|
class NRF52Bluetooth : BluetoothApi
|
|
{
|
|
public:
|
|
void setup();
|
|
void shutdown();
|
|
void startDisabled();
|
|
void resumeAdvertising();
|
|
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);
|
|
}; |