mirror of
https://github.com/D4C1-Labs/Flipper-ARF.git
synced 2026-04-27 16:55:10 +00:00
21 lines
267 B
C
21 lines
267 B
C
/**
|
|
* @file cli_vcp.h
|
|
* VCP HAL API
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#define RECORD_CLI_VCP "cli_vcp"
|
|
|
|
typedef struct CliVcp CliVcp;
|
|
|
|
void cli_vcp_enable(CliVcp* cli_vcp);
|
|
void cli_vcp_disable(CliVcp* cli_vcp);
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|