Select one of the symbols to view example projects that use it.
 
Outline
Includes
#include "main.h"
Private variables
msc_demo
prev_select
MSC_main_menu
Private function prototypes
MSC_MenuProcess()
MSC_SelectItem(uint8_t **, uint8_t)
MSC_DEMO_ProbeKey(JOYState_TypeDef)
Files
loading...
CodeScopeSTM32 Libraries and SamplesDynamicSwitch_StandaloneSrc/msc_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
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
/** ****************************************************************************** * @file USB_Host/DynamicSwitch_Standalone/Src/menu.c * @author MCD Application Team * @brief This file implements MSC 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 --------------------------------------------------------- */ MSC_DEMO_StateMachine msc_demo; uint8_t prev_select = 0; uint8_t *MSC_main_menu[] = { (uint8_t *) " 1 - File Operations ", (uint8_t *) " 2 - Explorer Disk ", (uint8_t *) " 3 - Re-Enumerate ", ...}; Private variables /* Private function prototypes ----------------------------------------------- */ static void MSC_SelectItem(uint8_t ** menu, uint8_t item); Private function prototypes /* Private functions --------------------------------------------------------- */ /** * @brief Manages MSC Menu Process. * @param None * @retval None *//* ... */ void MSC_MenuProcess(void) { switch (msc_demo.state) { case MSC_DEMO_IDLE: BSP_LCD_SetTextColor(LCD_COLOR_GREEN); BSP_LCD_DisplayStringAtLine(16, (uint8_t *) " "); BSP_LCD_DisplayStringAtLine(17, (uint8_t *) "Use [Buttons Left/Right] to scroll up/down "); BSP_LCD_DisplayStringAtLine(18, (uint8_t *) "Use [Joystick Up/Down] to scroll MSC menu "); BSP_LCD_SetTextColor(LCD_COLOR_WHITE); MSC_SelectItem(MSC_main_menu, 0); msc_demo.state = MSC_DEMO_WAIT; msc_demo.select = 0; break; case MSC_DEMO_IDLE: case MSC_DEMO_WAIT: if (msc_demo.select != prev_select) { prev_select = msc_demo.select; MSC_SelectItem(MSC_main_menu, msc_demo.select & 0x7F); /* Handle select item */ if (msc_demo.select & 0x80) { switch (msc_demo.select & 0x7F) { case 0: msc_demo.state = MSC_DEMO_FILE_OPERATIONS; break; case 0: case 1: msc_demo.state = MSC_DEMO_EXPLORER; break; case 1: case 2: msc_demo.state = MSC_REENUMERATE; break; case 2: default: break;default }switch (msc_demo.select & 0x7F) { ... } }if (msc_demo.select & 0x80) { ... } }if (msc_demo.select != prev_select) { ... } break; case MSC_DEMO_WAIT: case MSC_DEMO_FILE_OPERATIONS: /* Read and Write File Here */ if (Appli_state == APPLICATION_MSC) { MSC_File_Operations(); }if (Appli_state == APPLICATION_MSC) { ... } msc_demo.state = MSC_DEMO_WAIT; break; case MSC_DEMO_FILE_OPERATIONS: case MSC_DEMO_EXPLORER: /* Display disk content */ if (Appli_state == APPLICATION_MSC) { Explore_Disk("0:/", 1); }if (Appli_state == APPLICATION_MSC) { ... } msc_demo.state = MSC_DEMO_WAIT; break; case MSC_DEMO_EXPLORER: case MSC_REENUMERATE: /* Force MSC Device to re-enumerate */ USBH_ReEnumerate(&hUSBHost); msc_demo.state = MSC_DEMO_WAIT; break; case MSC_REENUMERATE: default: break;default }switch (msc_demo.state) { ... } msc_demo.select &= 0x7F; }{ ... } /** * @brief Manages the menu on the screen. * @param menu: Menu table * @param item: Selected item to be highlighted * @retval None *//* ... */ static void MSC_SelectItem(uint8_t ** menu, uint8_t item) { BSP_LCD_SetTextColor(LCD_COLOR_WHITE); switch (item) { case 0: BSP_LCD_SetBackColor(LCD_COLOR_MAGENTA); BSP_LCD_DisplayStringAtLine(19, menu[0]); BSP_LCD_SetBackColor(LCD_COLOR_BLUE); BSP_LCD_DisplayStringAtLine(20, menu[1]); BSP_LCD_DisplayStringAtLine(21, menu[2]); break; case 0: case 1: BSP_LCD_SetBackColor(LCD_COLOR_BLUE); BSP_LCD_DisplayStringAtLine(19, menu[0]); BSP_LCD_SetBackColor(LCD_COLOR_MAGENTA); BSP_LCD_DisplayStringAtLine(20, menu[1]); BSP_LCD_SetBackColor(LCD_COLOR_BLUE); BSP_LCD_DisplayStringAtLine(21, menu[2]); break; case 1: case 2: BSP_LCD_SetBackColor(LCD_COLOR_BLUE); BSP_LCD_DisplayStringAtLine(19, menu[0]); BSP_LCD_SetBackColor(LCD_COLOR_BLUE); BSP_LCD_DisplayStringAtLine(20, menu[1]); BSP_LCD_SetBackColor(LCD_COLOR_MAGENTA); BSP_LCD_DisplayStringAtLine(21, menu[2]); break;case 2: }switch (item) { ... } BSP_LCD_SetBackColor(LCD_COLOR_BLACK); }{ ... } /** * @brief Probes the MSC joystick state. * @param state: Joystick state * @retval None *//* ... */ void MSC_DEMO_ProbeKey(JOYState_TypeDef state) { /* Handle Menu inputs */ if ((state == JOY_UP) && (msc_demo.select > 0)) { msc_demo.select--; }if ((state == JOY_UP) && (msc_demo.select > 0)) { ... } else if ((state == JOY_DOWN) && (msc_demo.select < 2)) { msc_demo.select++; }else if ((state == JOY_DOWN) && (msc_demo.select < 2)) { ... } else if (state == JOY_SEL) { msc_demo.select |= 0x80; }else if (state == JOY_SEL) { ... } }{ ... }