1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
22
23
24
25
31
36
37
38
43
44
45
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
79
80
81
87
88
89
90
91
94
95
96
100
101
105
109
110
111
115
116
117
118
119
120
121
122
123
124
125
128
157
158
159
160
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
223
224
225
226
227
228
229
230
231
232
233
234
235
236
238
239
240
241
242
243
244
245
246
251
252
253
254
255
256
257
258
259
260
261
271
/* ... */
#include "main.h"
Includes
USBH_HandleTypeDef hUSBHost;
DS_ApplicationTypeDef Appli_state = APPLICATION_IDLE;
char USBDISKPath[4];
extern char SD_Path[4];
Private variables
static void SystemClock_Config(void);
static void USBH_UserProcess(USBH_HandleTypeDef *phost, uint8_t id);
static void DynamicSwitch_InitApplication(void);
Private function prototypes
/* ... */
int main(void)
{
/* ... */
HAL_Init();
SystemClock_Config();
DynamicSwitch_InitApplication();
USBH_Init(&hUSBHost, USBH_UserProcess, 0);
USBH_RegisterClass(&hUSBHost, USBH_MSC_CLASS);
USBH_RegisterClass(&hUSBHost, USBH_AUDIO_CLASS);
USBH_RegisterClass(&hUSBHost, USBH_HID_CLASS);
USBH_Start(&hUSBHost);
while (1)
{
USBH_Process(&hUSBHost);
DS_MenuProcess();
}while (1) { ... }
}{ ... }
/* ... */
static void USBH_UserProcess(USBH_HandleTypeDef *phost, uint8_t id)
{
switch(id)
{
case HOST_USER_SELECT_CONFIGURATION:
break;
case HOST_USER_SELECT_CONFIGURATION:
case HOST_USER_DISCONNECTION:
Appli_state = APPLICATION_DISCONNECT;
if(USBH_GetActiveClass(phost) == AC_CLASS)
{
Audio_ChangeSelectMode(AUDIO_SELECT_MENU);
}if (USBH_GetActiveClass(phost) == AC_CLASS) { ... }
if(f_mount(NULL, "", 0) != FR_OK)
{
LCD_ErrLog("ERROR : Cannot DeInitialize FatFs! \n");
}if (f_mount(NULL, "", 0) != FR_OK) { ... }
if (FATFS_UnLinkDriver(USBDISKPath) != 0)
{
LCD_ErrLog("ERROR : Cannot UnLink USB FatFS Driver! \n");
}if (FATFS_UnLinkDriver(USBDISKPath) != 0) { ... }
if (FATFS_UnLinkDriver(SD_Path) != 0)
{
LCD_ErrLog("ERROR : Cannot UnLink SD FatFS Driver! \n");
}if (FATFS_UnLinkDriver(SD_Path) != 0) { ... }
LCD_LOG_Init();
#ifdef USE_USB_HS
LCD_LOG_SetHeader((uint8_t *)" USB HS DynamicSwitch Host");
#else
LCD_LOG_SetHeader((uint8_t *)" USB FS DynamicSwitch Host");
#endif
break;
case HOST_USER_DISCONNECTION:
case HOST_USER_CONNECTION:
break;
case HOST_USER_CONNECTION:
case HOST_USER_CLASS_ACTIVE:
switch(USBH_GetActiveClass(phost))
{
case USB_MSC_CLASS:
Appli_state = APPLICATION_MSC;
if (FATFS_LinkDriver(&USBH_Driver, USBDISKPath) == 0)
{
if (f_mount(&USBH_fatfs, "", 0) != FR_OK)
{
LCD_ErrLog("ERROR : Cannot Initialize FatFs! \n");
}if (f_mount(&USBH_fatfs, "", 0) != FR_OK) { ... }
}if (FATFS_LinkDriver(&USBH_Driver, USBDISKPath) == 0) { ... }
break;
case USB_MSC_CLASS:
case AC_CLASS:
Appli_state = APPLICATION_AUDIO;
if (SD_StorageInit() == 0)
{
SD_StorageParse();
}if (SD_StorageInit() == 0) { ... }
break;
case AC_CLASS:
case USB_HID_CLASS:
Appli_state = APPLICATION_HID;
break;case USB_HID_CLASS:
}switch (USBH_GetActiveClass(phost)) { ... }
break;case HOST_USER_CLASS_ACTIVE:
}switch (id) { ... }
}{ ... }
/* ... */
static void DynamicSwitch_InitApplication(void)
{
BSP_PB_Init(BUTTON_KEY, BUTTON_MODE_EXTI);
BSP_JOY_Init(JOY_MODE_EXTI);
BSP_LCD_Init();
LCD_LOG_Init();
#ifdef USE_USB_HS
LCD_LOG_SetHeader((uint8_t *)" USB HS DynamicSwitch Host");
#else
LCD_LOG_SetHeader((uint8_t *)" USB FS DynamicSwitch Host");
#endif
LCD_UsrLog("USB Host library started.\n");
LCD_UsrLog("Starting DynamicSwitch Demo\n");
LCD_UsrLog("Plug your device To Continue...\n");
}{ ... }
/* ... */
static void SystemClock_Config(void)
{
RCC_ClkInitTypeDef RCC_ClkInitStruct;
RCC_OscInitTypeDef RCC_OscInitStruct;
__HAL_RCC_PWR_CLK_ENABLE();
/* ... */
__HAL_PWR_VOLTAGESCALING_CONFIG(PWR_REGULATOR_VOLTAGE_SCALE1);
RCC_OscInitStruct.OscillatorType = RCC_OSCILLATORTYPE_HSE;
RCC_OscInitStruct.HSEState = RCC_HSE_ON;
RCC_OscInitStruct.PLL.PLLState = RCC_PLL_ON;
RCC_OscInitStruct.PLL.PLLSource = RCC_PLLSOURCE_HSE;
RCC_OscInitStruct.PLL.PLLM = 25;
RCC_OscInitStruct.PLL.PLLN = 336;
RCC_OscInitStruct.PLL.PLLP = RCC_PLLP_DIV2;
RCC_OscInitStruct.PLL.PLLQ = 7;
HAL_RCC_OscConfig(&RCC_OscInitStruct);
/* ... */
RCC_ClkInitStruct.ClockType = (RCC_CLOCKTYPE_SYSCLK | RCC_CLOCKTYPE_HCLK | RCC_CLOCKTYPE_PCLK1 | RCC_CLOCKTYPE_PCLK2);
RCC_ClkInitStruct.SYSCLKSource = RCC_SYSCLKSOURCE_PLLCLK;
RCC_ClkInitStruct.AHBCLKDivider = RCC_SYSCLK_DIV1;
RCC_ClkInitStruct.APB1CLKDivider = RCC_HCLK_DIV4;
RCC_ClkInitStruct.APB2CLKDivider = RCC_HCLK_DIV2;
HAL_RCC_ClockConfig(&RCC_ClkInitStruct, FLASH_LATENCY_5);
if (HAL_GetREVID() >= 0x1001)
{
__HAL_FLASH_PREFETCH_BUFFER_ENABLE();
}if (HAL_GetREVID() >= 0x1001) { ... }
}{ ... }
#ifdef USE_FULL_ASSERT
/* ... */
void assert_failed(uint8_t* file, uint32_t line)
{
/* ... */
while (1)
{
}while (1) { ... }
}assert_failed (uint8_t* file, uint32_t line) { ... }
/* ... */#endifPrivate functions