Details | Last modification | View Log | RSS feed
| Rev | Author | Line No. | Line |
|---|---|---|---|
| 2 | mjames | 1 | /** |
| 2 | ****************************************************************************** |
||
| 3 | * @file usbd_cdc_if_template.h |
||
| 4 | * @author MCD Application Team |
||
| 5 | * @version V2.4.1 |
||
| 6 | * @date 19-June-2015 |
||
| 7 | * @brief Header for usbd_cdc_if_template.c file. |
||
| 8 | ****************************************************************************** |
||
| 9 | * @attention |
||
| 10 | * |
||
| 11 | * <h2><center>© COPYRIGHT 2015 STMicroelectronics</center></h2> |
||
| 12 | * |
||
| 13 | * Licensed under MCD-ST Liberty SW License Agreement V2, (the "License"); |
||
| 14 | * You may not use this file except in compliance with the License. |
||
| 15 | * You may obtain a copy of the License at: |
||
| 16 | * |
||
| 17 | * http://www.st.com/software_license_agreement_liberty_v2 |
||
| 18 | * |
||
| 19 | * Unless required by applicable law or agreed to in writing, software |
||
| 20 | * distributed under the License is distributed on an "AS IS" BASIS, |
||
| 21 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
||
| 22 | * See the License for the specific language governing permissions and |
||
| 23 | * limitations under the License. |
||
| 24 | * |
||
| 25 | ****************************************************************************** |
||
| 26 | */ |
||
| 27 | |||
| 28 | /* Define to prevent recursive inclusion -------------------------------------*/ |
||
| 29 | #ifndef __USBD_CDC_IF_TEMPLATE_H |
||
| 30 | #define __USBD_CDC_IF_TEMPLATE_H |
||
| 31 | |||
| 32 | #ifdef __cplusplus |
||
| 33 | extern "C" { |
||
| 34 | #endif |
||
| 35 | |||
| 36 | /* Includes ------------------------------------------------------------------*/ |
||
| 37 | #include "usbd_cdc.h" |
||
| 38 | |||
| 39 | /* Exported types ------------------------------------------------------------*/ |
||
| 40 | /* Exported constants --------------------------------------------------------*/ |
||
| 41 | |||
| 42 | extern USBD_CDC_ItfTypeDef USBD_CDC_Template_fops; |
||
| 43 | |||
| 44 | /* Exported macro ------------------------------------------------------------*/ |
||
| 45 | /* Exported functions ------------------------------------------------------- */ |
||
| 46 | |||
| 47 | #ifdef __cplusplus |
||
| 48 | } |
||
| 49 | #endif |
||
| 50 | |||
| 51 | #endif /* __USBD_CDC_IF_TEMPLATE_H */ |
||
| 52 | |||
| 53 | /************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/ |