#ifndef __KEY_H #define __KEY_H #include "sys.h" ////////////////////////////////////////////////////////////////////////////////// //������ֻ��ѧϰʹ�ã�δ���������ɣ��������������κ���; //ALIENTEK��ӢSTM32������ //������������ //����ԭ��@ALIENTEK //������̳:www.openedv.com //�޸�����:2012/9/3 //�汾��V1.0 //��Ȩ���У�����ؾ��� //Copyright(C) �������������ӿƼ����޹�˾ 2009-2019 //All rights reserved ////////////////////////////////////////////////////////////////////////////////// #define KEY0 GPIO_ReadInputDataBit(GPIOC,GPIO_Pin_15)//��ȡ����0 #define KEY1 GPIO_ReadInputDataBit(GPIOC,GPIO_Pin_14)//��ȡ����1 #define KEY2 GPIO_ReadInputDataBit(GPIOC,GPIO_Pin_13) #define WK_UP GPIO_ReadInputDataBit(GPIOC,GPIO_Pin_0)//��ȡ����3(WK_UP) #define KEY0_PRES 1 //KEY0���� #define KEY1_PRES 2 //KEY1���� #define WKUP_PRES 3 //KEY_UP����(��WK_UP/KEY_UP) #define KEY2_PRES 4 void KEY_Init(void);//IO��ʼ�� u8 KEY_Scan(u8); //����ɨ�躯�� #endif