mirror of
https://github.com/meshtastic/firmware.git
synced 2025-12-18 08:42:37 +00:00
29 lines
966 B
C
29 lines
966 B
C
#ifndef USE_NEW_ESP32_BLUETOOTH
|
|
|
|
#pragma once
|
|
|
|
#include "nimble/NimbleDefs.h"
|
|
|
|
void reinitUpdateService();
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
int update_size_callback(uint16_t conn_handle, uint16_t attr_handle, struct ble_gatt_access_ctxt *ctxt, void *arg);
|
|
int update_data_callback(uint16_t conn_handle, uint16_t attr_handle, struct ble_gatt_access_ctxt *ctxt, void *arg);
|
|
int update_result_callback(uint16_t conn_handle, uint16_t attr_handle, struct ble_gatt_access_ctxt *ctxt, void *arg);
|
|
int update_crc32_callback(uint16_t conn_handle, uint16_t attr_handle, struct ble_gatt_access_ctxt *ctxt, void *arg);
|
|
int update_region_callback(uint16_t conn_handle, uint16_t attr_handle, struct ble_gatt_access_ctxt *ctxt, void *arg);
|
|
|
|
extern const struct ble_gatt_svc_def gatt_update_svcs[];
|
|
|
|
extern const ble_uuid128_t update_result_uuid, update_region_uuid;
|
|
|
|
extern int16_t updateResultHandle;
|
|
|
|
#ifdef __cplusplus
|
|
};
|
|
#endif
|
|
|
|
#endif //#ifndef USE_NEW_ESP32_BLUETOOTH
|