mirror of
https://github.com/espressif/esp-idf.git
synced 2025-08-29 21:48:39 +00:00
14 lines
306 B
C
14 lines
306 B
C
/*
|
|
* SPDX-FileCopyrightText: 2024-2025 Espressif Systems (Shanghai) CO LTD
|
|
*
|
|
* SPDX-License-Identifier: Unlicense OR CC0-1.0
|
|
*/
|
|
#ifndef __CMD_BLE_DTM_H__
|
|
#define __CMD_BLE_DTM_H__
|
|
#include <stdint.h>
|
|
#include <stdbool.h>
|
|
#include "esp_err.h"
|
|
|
|
esp_err_t dtm_configuration_command_register(void);
|
|
#endif
|