mirror of
https://github.com/Next-Flip/Momentum-Firmware.git
synced 2026-04-24 03:29:57 -07:00
19 lines
198 B
C
19 lines
198 B
C
/**
|
|
* @file cli_vcp.h
|
|
* VCP HAL API
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
typedef struct CliSession CliSession;
|
|
|
|
extern const CliSession cli_vcp;
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|