20 lines
254 B
C
20 lines
254 B
C
|
|
/*
|
||
|
|
* Copyright (c) 2022 ~ 2025, sakumisu
|
||
|
|
*
|
||
|
|
* SPDX-License-Identifier: Apache-2.0
|
||
|
|
*/
|
||
|
|
#ifndef USBH_CDC_ACM_H
|
||
|
|
#define USBH_CDC_ACM_H
|
||
|
|
|
||
|
|
#include "usb_cdc.h"
|
||
|
|
|
||
|
|
#ifdef __cplusplus
|
||
|
|
extern "C" {
|
||
|
|
#endif
|
||
|
|
|
||
|
|
#ifdef __cplusplus
|
||
|
|
}
|
||
|
|
#endif
|
||
|
|
|
||
|
|
#endif /* USBH_CDC_ACM_H */
|