mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
26 lines
417 B
C
26 lines
417 B
C
/*
|
|
* SPDX-FileCopyrightText: 2021-2022 Espressif Systems (Shanghai) CO LTD
|
|
*
|
|
* SPDX-License-Identifier: Unlicense OR CC0-1.0
|
|
*/
|
|
|
|
#ifndef H_BLE_PERIODIC_ADV_
|
|
#define H_BLE_PERIODIC_ADV_
|
|
|
|
#include <stdbool.h>
|
|
#include "nimble/ble.h"
|
|
#include "modlog/modlog.h"
|
|
#include "esp_peripheral.h"
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
struct ble_hs_cfg;
|
|
struct ble_gatt_register_ctxt;
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|