Select one of the symbols to view example projects that use it.
 
Outline
#define __MAIN_H
Includes
#include "stm32f4xx_hal.h"
#include "stm32f4xx_it.h"
#include "stm32f429i_discovery.h"
#include "stm32f429i_discovery_sdram.h"
#include "stm32f429i_discovery_ts.h"
#include "stm32f429i_discovery_io.h"
#include "stm32f429i_discovery_lcd.h"
#include "ff_gen_drv.h"
#include "usbh_diskio.h"
#include "GUI.h"
Exported types
SystemSettingsTypeDef
bmSTLogo40x20;
Exported constants
#define NUM_DISK_UNITS
#define USB_DISK_UNIT
#define CALIBRATION_BKP0
#define CALIBRATION_BKP1
#define CALIBRATION_GENERAL_SETTINGS_BKP
#define CALIBRATION_IMAGE_SETTINGS_BKP
#define CALIBRATION_BENCH_SETTING_BKP
#define CALIBRATION_VIDEOPLAYER_SETTING_BKP
Files
loading...
CodeScopeSTM32 Libraries and SamplesSTemWinCore/Inc/main.h
 
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
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
/** ****************************************************************************** * @file main.h * @author MCD Application Team * @brief Header for main.c file ****************************************************************************** * @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. * ****************************************************************************** *//* ... */ /* Define to prevent recursive inclusion -------------------------------------*/ #ifndef __MAIN_H #define __MAIN_H #ifdef __cplusplus extern "C" { #endif /* Includes ------------------------------------------------------------------*/ #include "stm32f4xx_hal.h" #include "stm32f4xx_it.h" #include "stm32f429i_discovery.h" #include "stm32f429i_discovery_sdram.h" #include "stm32f429i_discovery_ts.h" #include "stm32f429i_discovery_io.h" #include "stm32f429i_discovery_lcd.h" /* FatFs includes component */ #include "ff_gen_drv.h" #include "usbh_diskio.h" #include "GUI.h" 10 includes/* Exported types ------------------------------------------------------------*/Includes typedef union { uint32_t d32; struct { uint32_t enable_sprite : 1; uint32_t enable_background : 1; uint32_t use_180Mhz : 1; uint32_t disable_flex_skin : 1; ...}b; ...} SystemSettingsTypeDef; Exported types /* Exported variables --------------------------------------------------------*/ extern GUI_CONST_STORAGE GUI_BITMAP bmSTLogo40x20; /* Exported constants --------------------------------------------------------*/ #define NUM_DISK_UNITS 1 #define USB_DISK_UNIT 0 #define CALIBRATION_BKP0 RTC_BKP_DR0 #define CALIBRATION_BKP1 RTC_BKP_DR1 #define CALIBRATION_GENERAL_SETTINGS_BKP RTC_BKP_DR2 #define CALIBRATION_IMAGE_SETTINGS_BKP RTC_BKP_DR3 #define CALIBRATION_BENCH_SETTING_BKP RTC_BKP_DR4 #define CALIBRATION_VIDEOPLAYER_SETTING_BKP RTC_BKP_DR5 8 defines Exported constants/* Exported macros -----------------------------------------------------------*/ /* Exported functions ------------------------------------------------------- */ #ifdef __cplusplus }extern "C" { ... } #endif /* ... */ #endif /* __MAIN_H */