2022-01-03 21:17:32 -05:00
|
|
|
/*
|
|
|
|
* SPDX-FileCopyrightText: 2020-2022 Espressif Systems (Shanghai) CO LTD
|
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
|
|
*/
|
2020-03-06 09:04:06 -05:00
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2020-08-06 08:41:32 -04:00
|
|
|
#include "esp_err.h"
|
|
|
|
|
2020-03-06 09:04:06 -05:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2020-08-06 08:41:32 -04:00
|
|
|
/**
|
|
|
|
* @brief Register TinyUSB CDC at VFS with path
|
|
|
|
* @param cdc_intf - interface number of TinyUSB's CDC
|
|
|
|
* @param path - path where the CDC will be registered, `/dev/tusb_cdc` will be used if left NULL.
|
|
|
|
*
|
|
|
|
* @return esp_err_t ESP_OK or ESP_FAIL
|
|
|
|
*/
|
|
|
|
esp_err_t esp_vfs_tusb_cdc_register(int cdc_intf, char const *path);
|
2020-03-06 09:04:06 -05:00
|
|
|
|
2020-08-06 08:41:32 -04:00
|
|
|
/**
|
|
|
|
* @brief Unregister TinyUSB CDC from VFS
|
|
|
|
* @param path - path where the CDC will be unregistered if NULL will be used `/dev/tusb_cdc`
|
|
|
|
*
|
|
|
|
* @return esp_err_t ESP_OK or ESP_FAIL
|
|
|
|
*/
|
|
|
|
esp_err_t esp_vfs_tusb_cdc_unregister(char const *path);
|
2020-03-06 09:04:06 -05:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|