Select one of the symbols to view example projects that use it.
 
Outline
Includes
#include "main.h"
Private macro
main()
GpioToggle()
Files
loading (2/4)...
SourceVuSTM32 Libraries and SamplesQSPI_PreInitConfigSrc/main.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
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
/** ****************************************************************************** * @file QSPI/QSPI_PreInitConfig/Src/main.c * @author MCD Application Team * @brief This example describes how to configure and use QuadSPI through * the STM32F4xx HAL API. ****************************************************************************** * @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" /** @addtogroup STM32F4xx_HAL_Examples * @{ *//* ... */ /** @addtogroup QSPI_PreInitConfig * @{ *//* ... */ Includes /* Private typedef -----------------------------------------------------------*/ /* Private define ------------------------------------------------------------*/ /* Private macro -------------------------------------------------------------*/ #if defined(__ICCARM__) #pragma section =".qspi" #endif Private macro /* Private variables ---------------------------------------------------------*/ /* Private function prototypes -----------------------------------------------*/ static void GpioToggle(void); /* Private functions ---------------------------------------------------------*/ /** * @brief Main program * @param None * @retval None *//* ... */ int main(void) { /* STM32F4xx HAL library initialization: - Configure the Flash prefetch, instruction and Data caches - Systick timer is configured by default as source of time base, but user can eventually implement his proper time base source (a general purpose timer for example or other time source), keeping in mind that Time base duration should be kept 1ms since PPP_TIMEOUT_VALUEs are defined and handled in milliseconds basis. - Set NVIC Group Priority to 4 - Low Level Initialization: global MSP (MCU Support Package) initialization *//* ... */ HAL_Init(); BSP_LED_Init(LED1); BSP_LED_Init(LED2); BSP_LED_Init(LED3); BSP_LED_Init(LED4); while(1) { /* Execute the code from QSPI memory ------------------------------------ */ GpioToggle(); }while (1) { ... } }{ ... } #ifdef USE_FULL_ASSERT /** * @brief Reports the name of the source file and the source line number * where the assert_param error has occurred. * @param file: pointer to the source file name * @param line: assert_param error line source number * @retval None *//* ... */ void assert_failed(uint8_t *file, uint32_t line) { /* User can add his own implementation to report the file name and line number, ex: printf("Wrong parameters value: file %s on line %d\r\n", file, line) *//* ... */ /* Infinite loop */ while (1) { }while (1) { ... } }assert_failed (uint8_t *file, uint32_t line) { ... } /* ... */#endif /** * @brief Toggle the GPIOs * @param None * @retval None *//* ... */ #if defined(__CC_ARM) #pragma arm section code = ".qspi" #pragma no_inline static void GpioToggle(void)/* ... */ #elif defined(__ICCARM__) static void GpioToggle(void) @ ".qspi" #elif defined(__GNUC__) static void __attribute__((section(".qspi"), noinline)) GpioToggle(void) #endif { BSP_LED_Toggle(LED1); /* Insert delay 100 ms */ HAL_Delay(100); BSP_LED_Toggle(LED2); /* Insert delay 100 ms */ HAL_Delay(100); BSP_LED_Toggle(LED3); /* Insert delay 100 ms */ HAL_Delay(100); BSP_LED_Toggle(LED4); /* Insert delay 100 ms */ HAL_Delay(100); ...} /** * @} *//* ... */ /** * @} *//* ... */
Details
Show:
from
Types: Columns:
This file uses the notable symbols shown below. Click anywhere in the file to view more details.