This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.
#include "SWM221.h"
int main(void)
{
SystemInit();
GPIO_Init(GPIOA, PIN5, 1, 0, 0, 0); //输出,接LED
SysTick_Config(SystemCoreClock/4); //每0.25秒钟触发一次中断
while(1==1)
}
void SysTick_Handler(void)
GPIO_InvBit(GPIOA, PIN5); //反转LED亮灭状态