mirror of
https://github.com/espressif/esp-idf.git
synced 2025-08-27 18:32:54 +00:00
14 lines
327 B
C
14 lines
327 B
C
/*
|
|
* SPDX-FileCopyrightText: 2024 Espressif Systems (Shanghai) CO LTD
|
|
*
|
|
* SPDX-License-Identifier: Unlicense OR CC0-1.0
|
|
*/
|
|
#ifndef __DTM_CONFIGURATION_COMMAND_H__
|
|
#define __DTM_CONFIGURATION_COMMAND_H__
|
|
#include <stdint.h>
|
|
#include <stdbool.h>
|
|
#include "esp_err.h"
|
|
|
|
esp_err_t dtm_configuration_command_enable(void);
|
|
#endif
|