mirror of
https://github.com/DarkFlippers/unleashed-firmware
synced 2024-11-10 15:04:19 +00:00
18 lines
192 B
C
18 lines
192 B
C
/**
|
|
* @file cli_vcp.h
|
|
* VCP HAL API
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
typedef struct CliSession CliSession;
|
|
|
|
extern CliSession cli_vcp;
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|