15 lines
260 B
C
15 lines
260 B
C
#ifndef _exti_io_H
|
|
#define _exti_io_H
|
|
|
|
#include "bsp.h"
|
|
|
|
#include "stm32l1xx_exti.h"
|
|
#include "stm32l1xx_syscfg.h"
|
|
|
|
#define WKUP_KD PAin(0) //PA0 检测是否外部WK_UP按键按下
|
|
extern u8 Wake_Up_Flag;
|
|
u8 Check_WKUP(void);
|
|
void WakeUp_EXIT_Config( void );
|
|
#endif
|
|
|