19 lines
414 B
C
19 lines
414 B
C
/*
|
|
* SPDX-FileCopyrightText: 2024-2025 Espressif Systems (Shanghai) CO LTD
|
|
*
|
|
* SPDX-License-Identifier: Unlicense OR CC0-1.0
|
|
*/
|
|
#ifndef BLE_CLIENT_H
|
|
#define BLE_CLIENT_H
|
|
|
|
#include <stdbool.h>
|
|
#include <stddef.h>
|
|
#include <stdint.h>
|
|
|
|
void ble_client_init(void);
|
|
bool ble_client_is_ready(void);
|
|
uint16_t ble_client_max_payload(void);
|
|
int ble_client_send(const uint8_t *data, size_t len);
|
|
|
|
#endif // BLE_CLIENT_H
|