www.pudn.com > lpc2146USB.rar > extint.h


/***************************************************************************** 
 *   extint.h:  Header file for Philips LPC214x Family Microprocessors 
 * 
 *   Copyright(C) 2006, Philips Semiconductor 
 *   All rights reserved. 
 * 
 *   History 
 *   2005.10.01  ver 1.00    Prelimnary version, first Release 
 * 
******************************************************************************/ 
#ifndef __EXTINT_H  
#define __EXTINT_H 
 
#define EINT0		0x00000001 
#define EINT1		0x00000002 
#define EINT2		0x00000004 
#define EINT3		0x00000008 
 
#define EINT0_EDGE	0x00000001 
#define EINT1_EDGE	0x00000002 
#define EINT2_EDGE	0x00000004 
#define EINT3_EDGE	0x00000008 
 
#define EINT0_RISING	0x00000001 
#define EINT1_RISING	0x00000002 
#define EINT2_RISING	0x00000004 
#define EINT3_RISING	0x00000008 
 
//extern void EINT0_Handler(void) __irq; 
//extern uint32 EINT_Init( void ); 
 
#endif /* end __EXTINT_H */ 
/**************************************************************************** 
**                            End Of File 
*****************************************************************************/