Select one of the symbols to view example projects that use it.
 
Outline
Includes
#include "main.h"
Private variables
hid_demo
MenuEvent
ButtonPressed
Private function prototypes
HID_MenuInit()
HID_UpdateMenu()
HID_MenuThread(const void *)
USBH_HID_EventCallback(USBH_HandleTypeDef *)
HAL_GPIO_EXTI_Callback(uint16_t)
USBH_MouseDemo(USBH_HandleTypeDef *)
USBH_KeybdDemo(USBH_HandleTypeDef *)
Files
loading...
SourceVuSTM32 Libraries and SamplesHID_RTOSSrc/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
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
/** ****************************************************************************** * @file USB_Host/HID_RTOS/Src/menu.c * @author MCD Application Team * @brief This file implements 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 ---------------------------------------------------------*/ HID_DEMO_StateMachine hid_demo; osSemaphoreId MenuEvent; __IO uint8_t ButtonPressed = 0; Private variables /* Private function prototypes -----------------------------------------------*/ static void USBH_MouseDemo(USBH_HandleTypeDef *phost); static void USBH_KeybdDemo(USBH_HandleTypeDef *phost); static void HID_MenuThread(void const *argument); Private function prototypes /* Private functions ---------------------------------------------------------*/ /** * @brief Demo state machine. * @param None * @retval None *//* ... */ void HID_MenuInit(void) { /* Create Menu Semaphore */ osSemaphoreDef(osSem); MenuEvent = osSemaphoreCreate(osSemaphore(osSem), 1); /* Force menu to show Item 0 by default */ osSemaphoreRelease(MenuEvent); /* Menu task */ osThreadDef(Menu_Thread, HID_MenuThread, osPriorityHigh, 0, 8 * configMINIMAL_STACK_SIZE); osThreadCreate(osThread(Menu_Thread), NULL); }{ ... } /** * @brief Updates the Menu. * @param None * @retval None *//* ... */ void HID_UpdateMenu(void) { /* Force menu to show Item 0 by default */ hid_demo.state = HID_DEMO_IDLE; osSemaphoreRelease(MenuEvent); }{ ... } /** * @brief User task * @param pvParameters not used * @retval None *//* ... */ void HID_MenuThread(void const *argument) { for(;;) { if(osSemaphoreWait(MenuEvent , osWaitForever) == osOK) { switch(hid_demo.state) { case HID_DEMO_IDLE: hid_demo.state = HID_DEMO_START; osSemaphoreRelease(MenuEvent); break; case HID_DEMO_IDLE: case HID_DEMO_START: if(Appli_state == APPLICATION_READY) { /* Wait for User Input */ if(ButtonPressed == 1) { ButtonPressed = 0; if(USBH_HID_GetDeviceType(&hUSBHost) == HID_KEYBOARD) { hid_demo.keyboard_state = HID_KEYBOARD_START; hid_demo.state = HID_DEMO_KEYBOARD; HID_KeyboardMenuProcess(); }if (USBH_HID_GetDeviceType(&hUSBHost) == HID_KEYBOARD) { ... } else if(USBH_HID_GetDeviceType(&hUSBHost) == HID_MOUSE) { hid_demo.mouse_state = HID_MOUSE_START; hid_demo.state = HID_DEMO_MOUSE; HID_MouseMenuProcess(); }else if (USBH_HID_GetDeviceType(&hUSBHost) == HID_MOUSE) { ... } else { LCD_ErrLog("No supported HID device!\n"); hid_demo.state = HID_DEMO_IDLE; }else { ... } }if (ButtonPressed == 1) { ... } osSemaphoreRelease(MenuEvent); }if (Appli_state == APPLICATION_READY) { ... } break; case HID_DEMO_START: case HID_DEMO_MOUSE: if(Appli_state == APPLICATION_READY) { USBH_MouseDemo(&hUSBHost); }if (Appli_state == APPLICATION_READY) { ... } break; case HID_DEMO_MOUSE: case HID_DEMO_KEYBOARD: if(Appli_state == APPLICATION_READY) { USBH_KeybdDemo(&hUSBHost); }if (Appli_state == APPLICATION_READY) { ... } break; case HID_DEMO_KEYBOARD: default: break;default }switch (hid_demo.state) { ... } if(Appli_state == APPLICATION_DISCONNECT) { Appli_state = APPLICATION_IDLE; LCD_LOG_ClearTextZone(); BSP_LCD_ClearStringLine(19); LCD_ErrLog("HID device disconnected!\n"); hid_demo.state = HID_DEMO_IDLE; }if (Appli_state == APPLICATION_DISCONNECT) { ... } }if (osSemaphoreWait(MenuEvent , osWaitForever) == osOK) { ... } }for (;;) { ... } }{ ... } /** * @brief The function is a callback about HID Data events * @param phost: Selected device * @retval None *//* ... */ void USBH_HID_EventCallback(USBH_HandleTypeDef *phost) { osSemaphoreRelease(MenuEvent); }{ ... } /** * @brief EXTI line detection callbacks. * @param GPIO_Pin: Specifies the pins connected EXTI line * @retval None *//* ... */ void HAL_GPIO_EXTI_Callback(uint16_t GPIO_Pin) { if(GPIO_Pin == WAKEUP_BUTTON_PIN) { osSemaphoreRelease(MenuEvent); ButtonPressed = 1; }if (GPIO_Pin == WAKEUP_BUTTON_PIN) { ... } }{ ... } /** * @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) { ... } }{ ... }
Details
Show:
from
Types: Columns:
This file uses the notable symbols shown below. Click anywhere in the file to view more details.