Select one of the symbols to view example projects that use it.
 
Outline
Includes
#include "main.h"
Private variables
DEMO_KEYBOARD_menu
DEMO_MOUSE_menu
DEMO_HID_menu
Private function prototypes
HID_MenuProcess()
USBH_MouseDemo(USBH_HandleTypeDef *)
USBH_KeybdDemo(USBH_HandleTypeDef *)
Files
loading...
CodeScopeSTM32 Libraries and SamplesDualCore_StandaloneSrc/hid_menu.c
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
/** ****************************************************************************** * @file USB_Host/DualCore_Standalone/Src/hid_menu.c * @author MCD Application Team * @brief This file implements HID Menu Functions ****************************************************************************** * @attention * * Copyright (c) 2017 STMicroelectronics. * All rights reserved. * * This software is licensed under terms that can be found in the LICENSE file * in the root directory of this software component. * If no LICENSE file comes with this software, it is provided AS-IS. * ****************************************************************************** *//* ... */ /* Includes ------------------------------------------------------------------*/ #include "main.h" Includes /* Private typedef -----------------------------------------------------------*/ /* Private define ------------------------------------------------------------*/ /* Private macro -------------------------------------------------------------*/ /* Private variables ---------------------------------------------------------*/ extern DEMO_StateMachine demo; extern HID_MOUSE_Info_TypeDef mouse_info; extern uint8_t prev_select; uint8_t *DEMO_KEYBOARD_menu[] = { (uint8_t *)" 1 - Start Keyboard / Clear ", (uint8_t *)" 2 - Return ", (uint8_t *)" ", (uint8_t *)" ", ...}; uint8_t *DEMO_MOUSE_menu[] = { (uint8_t *)" 1 - Start Mouse / Re-Initialize ", (uint8_t *)" 2 - Return ", (uint8_t *)" ", (uint8_t *)" ", ...}; uint8_t *DEMO_HID_menu[] = { (uint8_t *)" 1 - Start HID ", (uint8_t *)" 2 - Re-Enumerate ", (uint8_t *)" ", (uint8_t *)" ", ...}; Private variables /* Private function prototypes -----------------------------------------------*/ static void USBH_MouseDemo(USBH_HandleTypeDef *phost); static void USBH_KeybdDemo(USBH_HandleTypeDef *phost); Private function prototypes /* Private functions ---------------------------------------------------------*/ /** * @brief Manages HID Menu Process. * @param None * @retval None *//* ... */ void HID_MenuProcess(void) { switch(demo.hid_state) { case APPLI_HID_IDLE: Demo_SelectItem(DEMO_HID_menu, 0); demo.hid_state = APPLI_HID_WAIT; demo.select = 0; break; case APPLI_HID_IDLE: case APPLI_HID_WAIT: if(demo.select != prev_select) { prev_select = demo.select; Demo_SelectItem(DEMO_HID_menu, demo.select & 0x7F); /* Handle select item */ if(demo.select & 0x80) { demo.select &= 0x7F; switch(demo.select) { case 0: demo.hid_state = APPLI_HID_START; break; case 0: case 1: demo.state = DEMO_IDLE; demo.select = 0; LCD_UsrLogY("> HID application closed.\n"); break; case 1: default: break;default }switch (demo.select) { ... } }if (demo.select & 0x80) { ... } }if (demo.select != prev_select) { ... } break; case APPLI_HID_WAIT: case APPLI_HID_START: if(Appli_FS_state == APPLICATION_FS_READY) { if(USBH_HID_GetDeviceType(&hUSBHost_FS) == HID_KEYBOARD) { demo.keyboard_state = HID_KEYBOARD_IDLE; demo.hid_state = APPLI_HID_KEYBOARD; }if (USBH_HID_GetDeviceType(&hUSBHost_FS) == HID_KEYBOARD) { ... } else if(USBH_HID_GetDeviceType(&hUSBHost_FS) == HID_MOUSE) { demo.mouse_state = HID_MOUSE_IDLE; demo.hid_state = APPLI_HID_MOUSE; }else if (USBH_HID_GetDeviceType(&hUSBHost_FS) == HID_MOUSE) { ... } }if (Appli_FS_state == APPLICATION_FS_READY) { ... } else { LCD_ErrLog("No supported HID device!\n"); demo.hid_state = APPLI_HID_WAIT; }else { ... } break; case APPLI_HID_START: case APPLI_HID_MOUSE: if(Appli_FS_state == APPLICATION_FS_READY) { HID_MouseMenuProcess(); USBH_MouseDemo(&hUSBHost_FS); }if (Appli_FS_state == APPLICATION_FS_READY) { ... } break; case APPLI_HID_MOUSE: case APPLI_HID_KEYBOARD: if(Appli_FS_state == APPLICATION_FS_READY) { HID_KeyboardMenuProcess(); USBH_KeybdDemo(&hUSBHost_FS); }if (Appli_FS_state == APPLICATION_FS_READY) { ... } break; case APPLI_HID_KEYBOARD: default: break;default }switch (demo.hid_state) { ... } }{ ... } /** * @brief Main routine for Mouse application * @param phost: Host handle * @retval None *//* ... */ static void USBH_MouseDemo(USBH_HandleTypeDef *phost) { HID_MOUSE_Info_TypeDef *m_pinfo; m_pinfo = USBH_HID_GetMouseInfo(phost); if(m_pinfo != NULL) { /* Handle Mouse data position */ USR_MOUSE_ProcessData(&mouse_info); if(m_pinfo->buttons[0]) { HID_MOUSE_ButtonPressed(0); }if (m_pinfo->buttons[0]) { ... } else { HID_MOUSE_ButtonReleased(0); }else { ... } if(m_pinfo->buttons[1]) { HID_MOUSE_ButtonPressed(2); }if (m_pinfo->buttons[1]) { ... } else { HID_MOUSE_ButtonReleased(2); }else { ... } if(m_pinfo->buttons[2]) { HID_MOUSE_ButtonPressed(1); }if (m_pinfo->buttons[2]) { ... } else { HID_MOUSE_ButtonReleased(1); }else { ... } }if (m_pinfo != NULL) { ... } }{ ... } /** * @brief Main routine for Keyboard application * @param phost: Host handle * @retval None *//* ... */ static void USBH_KeybdDemo(USBH_HandleTypeDef *phost) { HID_KEYBD_Info_TypeDef *k_pinfo; char c; k_pinfo = USBH_HID_GetKeybdInfo(phost); if(k_pinfo != NULL) { c = USBH_HID_GetASCIICode(k_pinfo); if(c != 0) { USR_KEYBRD_ProcessData(c); }if (c != 0) { ... } }if (k_pinfo != NULL) { ... } }{ ... }