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
48
49
54
55
56
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
95
100
101
102
103
104
105
111
112
113
114
115
116
121
122
123
124
125
126
127
128
129
130
131
132
137
138
139
140
145
146
147
148
149
150
151
152
153
154
155
156
160
161
162
163
164
165
170
171
172
173
174
175
176
181
182
183
184
185
186
187
188
189
190
195
196
197
198
199
200
205
206
208
211
212
213
214
215
216
217
218
219
220
221
222
227
232
233
234
239
252
253
254
259
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
319
320
321
322
326
327
328
329
330
331
332
333
334
335
339
340
341
342
343
344
345
346
347
348
349
359
360
361
364
365
/* ... */
#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;
uint16_t tmpCC4[2] = {0, 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, latency = 0;
TIM_IC_InitTypeDef timinputconfig = {0};
RCC_OscInitTypeDef oscinit = {0};
RCC_ClkInitTypeDef clkinit = {0};
oscinit.OscillatorType = RCC_OSCILLATORTYPE_LSI;
oscinit.LSIState = RCC_LSI_ON;
oscinit.PLL.PLLState = RCC_PLL_NONE;
if (HAL_RCC_OscConfig(&oscinit)!= HAL_OK)
{
Error_Handler();
}if (HAL_RCC_OscConfig(&oscinit)!= HAL_OK) { ... }
TimInputCaptureHandle.Instance = TIMx;
/* ... */
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, TIMx_REMAP);
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();
HAL_RCC_GetClockConfig(&clkinit, &latency);
if ((clkinit.APB1CLKDivider) == RCC_HCLK_DIV1)
{
return ((pclk1 * 8) / uwPeriodValue);
}if ((clkinit.APB1CLKDivider) == RCC_HCLK_DIV1) { ... }
else
{
return (((2 * pclk1) * 8) / uwPeriodValue) ;
}else { ... }
}{ ... }
/* ... */
void HAL_TIM_IC_CaptureCallback(TIM_HandleTypeDef *htim)
{
tmpCC4[uwCaptureNumber++] = HAL_TIM_ReadCapturedValue(htim, TIM_CHANNEL_4);
if (uwCaptureNumber >= 2)
{
uwPeriodValue = (uint16_t)(0xFFFF - tmpCC4[0] + tmpCC4[1] + 1);
uwMeasurementDone = 1;
uwCaptureNumber = 0;
}if (uwCaptureNumber >= 2) { ... }
}{ ... }
/* ... */
static void Error_Handler(void)
{
BSP_LED_On(LED3);
while (1)
{
}while (1) { ... }
}{ ... }
/* ... */
static void SystemClock_Config(void)
{
RCC_ClkInitTypeDef RCC_ClkInitStruct;
RCC_OscInitTypeDef RCC_OscInitStruct;
HAL_StatusTypeDef ret = HAL_OK;
__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;
RCC_OscInitStruct.PLL.PLLR = 6;
ret = HAL_RCC_OscConfig(&RCC_OscInitStruct);
if(ret != HAL_OK)
{
while(1) { ; }
}if (ret != HAL_OK) { ... }
ret = HAL_PWREx_EnableOverDrive();
if(ret != HAL_OK)
{
while(1) { ; }
}if (ret != HAL_OK) { ... }
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;
ret = HAL_RCC_ClockConfig(&RCC_ClkInitStruct, FLASH_LATENCY_5);
if(ret != HAL_OK)
{
while(1) { ; }
}if (ret != HAL_OK) { ... }
}{ ... }
#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
/* ... */
/* ... */