mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
27 lines
436 B
C
27 lines
436 B
C
/*
|
|
* SPDX-FileCopyrightText: 2021-2022 Espressif Systems (Shanghai) CO LTD
|
|
*
|
|
* SPDX-License-Identifier: Unlicense OR CC0-1.0
|
|
*/
|
|
|
|
#ifndef H_BLE_PERIODIC_SYNC_
|
|
#define H_BLE_PERIODIC_SYNC_
|
|
|
|
#include "modlog/modlog.h"
|
|
#include "esp_central.h"
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
struct ble_hs_adv_fields;
|
|
struct ble_gap_conn_desc;
|
|
struct ble_hs_cfg;
|
|
union ble_store_value;
|
|
union ble_store_key;
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|