Some checks failed
ESP-IDF Build / build (esp32c6, release-v5.4) (push) Has been cancelled
ESP-IDF Build / build (esp32c6, release-v5.5) (push) Has been cancelled
ESP-IDF Build / build (esp32s3, release-v5.4) (push) Has been cancelled
ESP-IDF Build / build (esp32s3, release-v5.5) (push) Has been cancelled
Signed-off-by: Peter Siegmund <developer@mars3142.org>
15 lines
287 B
C
15 lines
287 B
C
#pragma once
|
|
|
|
#include "ble_device.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C"
|
|
{
|
|
#endif
|
|
void ble_connect(device_info_t *device);
|
|
void ble_clear_bonds(void);
|
|
void ble_clear_bond(const ble_addr_t *addr);
|
|
void read_characteristic(uint16_t char_val_handle);
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif |