1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
52
53
54
59
60
61
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
89
94
95
96
97
98
99
105
106
107
108
109
110
115
116
117
118
119
120
121
122
123
124
125
126
131
132
133
134
139
140
141
142
143
144
145
146
147
148
151
152
153
154
155
156
161
162
163
164
165
166
167
172
173
174
175
176
177
178
179
180
181
186
187
188
189
190
191
195
196
198
201
202
203
204
205
206
207
208
209
210
211
216
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
272
273
274
275
276
277
278
279
280
285
293
294
295
296
297
298
299
300
301
302
312
313
314
317
318
/* ... */
#include "main.h"
/* ... */
/* ... */
Includes
IWDG_HandleTypeDef IwdgHandle;
TIM_HandleTypeDef TimInputCaptureHandle;
RCC_ClkInitTypeDef RCC_ClockFreq;
static __IO uint32_t uwLsiFreq = 0;
__IO uint32_t uwCaptureNumber = 0;
__IO uint32_t uwPeriodValue = 0;
__IO uint32_t uwMeasurementDone = 0;
Private variables
static void SystemClock_Config(void);
static void Error_Handler(void);
static uint32_t GetLSIFrequency(void);
Private function prototypes
/* ... */
int main(void)
{
/* ... */
HAL_Init();
SystemClock_Config();
BSP_LED_Init(LED1);
BSP_LED_Init(LED2);
BSP_LED_Init(LED3);
BSP_PB_Init(BUTTON_TAMPER, BUTTON_MODE_EXTI);
if(__HAL_RCC_GET_FLAG(RCC_FLAG_IWDGRST) != RESET)
{
BSP_LED_On(LED1);
__HAL_RCC_CLEAR_RESET_FLAGS();
}if (__HAL_RCC_GET_FLAG(RCC_FLAG_IWDGRST) != RESET) { ... }
else
{
BSP_LED_Off(LED1);
}else { ... }
uwLsiFreq = GetLSIFrequency();
/* ... */
IwdgHandle.Instance = IWDG;
IwdgHandle.Init.Prescaler = IWDG_PRESCALER_32;
IwdgHandle.Init.Reload = uwLsiFreq / 128;
if(HAL_IWDG_Init(&IwdgHandle) != HAL_OK)
{
Error_Handler();
}if (HAL_IWDG_Init(&IwdgHandle) != HAL_OK) { ... }
while (1)
{
BSP_LED_Toggle(LED2);
HAL_Delay(240);
if(HAL_IWDG_Refresh(&IwdgHandle) != HAL_OK)
{
Error_Handler();
}if (HAL_IWDG_Refresh(&IwdgHandle) != HAL_OK) { ... }
}while (1) { ... }
}{ ... }
/* ... */
static uint32_t GetLSIFrequency(void)
{
uint32_t pclk1 = 0;
TIM_IC_InitTypeDef timinputconfig;
__HAL_RCC_LSI_ENABLE();
while (__HAL_RCC_GET_FLAG(RCC_FLAG_LSIRDY) == RESET)
{
}while (__HAL_RCC_GET_FLAG(RCC_FLAG_LSIRDY) == RESET) { ... }
TimInputCaptureHandle.Instance = TIM5;
/* ... */
TimInputCaptureHandle.Init.Prescaler = 0;
TimInputCaptureHandle.Init.CounterMode = TIM_COUNTERMODE_UP;
TimInputCaptureHandle.Init.Period = 0xFFFF;
TimInputCaptureHandle.Init.ClockDivision = 0;
TimInputCaptureHandle.Init.RepetitionCounter = 0;
if(HAL_TIM_IC_Init(&TimInputCaptureHandle) != HAL_OK)
{
Error_Handler();
}if (HAL_TIM_IC_Init(&TimInputCaptureHandle) != HAL_OK) { ... }
HAL_TIMEx_RemapConfig(&TimInputCaptureHandle, TIM_TIM5_LSI);
timinputconfig.ICPolarity = TIM_ICPOLARITY_RISING;
timinputconfig.ICSelection = TIM_ICSELECTION_DIRECTTI;
timinputconfig.ICPrescaler = TIM_ICPSC_DIV8;
timinputconfig.ICFilter = 0;
if(HAL_TIM_IC_ConfigChannel(&TimInputCaptureHandle, &timinputconfig, TIM_CHANNEL_4) != HAL_OK)
{
Error_Handler();
}if (HAL_TIM_IC_ConfigChannel(&TimInputCaptureHandle, &timinputconfig, TIM_CHANNEL_4) != HAL_OK) { ... }
TimInputCaptureHandle.Instance->SR = 0;
if(HAL_TIM_IC_Start_IT(&TimInputCaptureHandle, TIM_CHANNEL_4) != HAL_OK)
{
Error_Handler();
}if (HAL_TIM_IC_Start_IT(&TimInputCaptureHandle, TIM_CHANNEL_4) != HAL_OK) { ... }
/* ... */
while(uwMeasurementDone == 0)
{
}while (uwMeasurementDone == 0) { ... }
uwCaptureNumber = 0;
HAL_TIM_IC_DeInit(&TimInputCaptureHandle);
pclk1 = HAL_RCC_GetPCLK1Freq();
if((RCC->CFGR & RCC_CFGR_PPRE1) == 0)
{
return ((pclk1 * 8) / uwPeriodValue);
}if ((RCC->CFGR & RCC_CFGR_PPRE1) == 0) { ... }
else
{
return (((2 * pclk1) * 8) / uwPeriodValue);
}else { ... }
}{ ... }
/* ... */
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 = 360;
RCC_OscInitStruct.PLL.PLLP = RCC_PLLP_DIV2;
RCC_OscInitStruct.PLL.PLLQ = 7;
HAL_RCC_OscConfig(&RCC_OscInitStruct);
HAL_PWREx_EnableOverDrive();
/* ... */
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);
}{ ... }
/* ... */
static void Error_Handler(void)
{
BSP_LED_On(LED3);
while(1)
{
}while (1) { ... }
}{ ... }
#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) { ... }
/* ... */#endif
/* ... */
/* ... */