STM32F769IDiscovery  1.00
uDANTE Audio Networking with STM32F7 DISCO board
usbd_customhid_if_template.c
Go to the documentation of this file.
1 
30 /* Includes ------------------------------------------------------------------*/
32 /* Private typedef -----------------------------------------------------------*/
33 /* Private define ------------------------------------------------------------*/
34 /* Private macro -------------------------------------------------------------*/
35 /* Private function prototypes -----------------------------------------------*/
36 
37 static int8_t TEMPLATE_CUSTOM_HID_Init (void);
38 static int8_t TEMPLATE_CUSTOM_HID_DeInit (void);
39 static int8_t TEMPLATE_CUSTOM_HID_OutEvent (uint8_t event_idx, uint8_t state);
40 /* Private variables ---------------------------------------------------------*/
42 {
43  TEMPLATE_CUSTOM_HID_ReportDesc,
44  TEMPLATE_CUSTOM_HID_Init,
45  TEMPLATE_CUSTOM_HID_DeInit,
46  TEMPLATE_CUSTOM_HID_OutEvent,
47 };
48 
49 /* Private functions ---------------------------------------------------------*/
50 
57 static int8_t TEMPLATE_CUSTOM_HID_Init(void)
58 {
59 
60  return (0);
61 }
62 
69 static int8_t TEMPLATE_CUSTOM_HID_DeInit(void)
70 {
71  /*
72  Add your deinitialization code here
73  */
74  return (0);
75 }
76 
77 
85 static int8_t TEMPLATE_CUSTOM_HID_OutEvent (uint8_t event_idx, uint8_t state)
86 {
87 
88  return (0);
89 }
90 /************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/
Header for usbd_customhid_if_template.c file.
USBD_CUSTOM_HID_ItfTypeDef USBD_CustomHID_template_fops