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 "stm324xg_eval.h"
#include "stm324xg_eval_ts.h"
#include "stm324xg_eval_io.h"
#include "stm324xg_eval_sd.h"
#include "stm324xg_eval_audio.h"
#include "stm324xg_eval_camera.h"
#include "stm324xg_eval_sram.h"
#include "ff_gen_drv.h"
#include "usbh_diskio.h"
#include "sd_diskio.h"
#include "GUI.h"
Exported types
SystemSettingsTypeDef
bmSTLogo40x20;
Exported constants
#define NUM_DISK_UNITS
#define USB_DISK_UNIT
#define MSD_DISK_UNIT
#define AUDIO_DEFAULT_VOLUME
#define CALIBRATION_BKP0
#define CALIBRATION_BKP1
#define CALIBRATION_GENERAL_SETTINGS_BKP
#define CALIBRATION_IMAGE_SETTINGS_BKP
#define CALIBRATION_AUDIOPLAYER_SETTING_BKP
#define CALIBRATION_CAMERA_SETTING_BKP
#define CALIBRATION_BENCH_SETTING_BKP
#define CALIBRATION_VIDEOPLAYER_SETTING_BKP
#define CAMERA_SAVE_PATH
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
75
76
77
78
79
80
81
82
83
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
/** ****************************************************************************** * @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" /* EVAL includes component */ #include "stm324xg_eval.h" #include "stm324xg_eval_ts.h" #include "stm324xg_eval_io.h" #include "stm324xg_eval_sd.h" #include "stm324xg_eval_audio.h" #include "stm324xg_eval_camera.h" #include "stm324xg_eval_sram.h" /* FatFs includes component */ #include "ff_gen_drv.h" #include "usbh_diskio.h" #include "sd_diskio.h" #include "GUI.h" 13 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 2 #define USB_DISK_UNIT 0 #define MSD_DISK_UNIT 1 #define AUDIO_DEFAULT_VOLUME 70 #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_AUDIOPLAYER_SETTING_BKP RTC_BKP_DR4 #define CALIBRATION_CAMERA_SETTING_BKP RTC_BKP_DR5 #define CALIBRATION_BENCH_SETTING_BKP RTC_BKP_DR6 #define CALIBRATION_VIDEOPLAYER_SETTING_BKP RTC_BKP_DR7 #define CAMERA_SAVE_PATH BKPSRAM_BASE + 0x000 13 defines/* Exported macros -----------------------------------------------------------*/Exported constants /* Exported functions ------------------------------------------------------- */ #ifdef __cplusplus }extern "C" { ... } #endif /* ... */ #endif /* __MAIN_H */