问题与处理策略
问题描述
..\..\User\stm32f1xx_it.c(141): warning: #223-D: function "HAL_IncTick" declared implicitlyHAL_IncTick();
..\..\User\stm32f1xx_it.c: 1 warning, 0 errors
问题原因
- 在
stm32f1xx_it.c
文件中调用了 HAL_IncTick()
,但未包含其头文件 stm32f1xx_hal.h
处理策略
#include "stm32f1xx_hal.h"