blinky example from NXP code bundle for LPC11Uxx. No mbed library used

Dependencies:   mbed

Committer:
alexan_e
Date:
Mon May 28 00:13:23 2012 +0000
Revision:
1:0f1be4e75668

        

Who changed what in which revision?

UserRevisionLine numberNew contents of line
alexan_e 1:0f1be4e75668 1 /****************************************************************************
alexan_e 1:0f1be4e75668 2 * $Id:: gpio.h 6172 2011-01-13 18:22:51Z usb00423 $
alexan_e 1:0f1be4e75668 3 * Project: NXP LPC11xx software example
alexan_e 1:0f1be4e75668 4 *
alexan_e 1:0f1be4e75668 5 * Description:
alexan_e 1:0f1be4e75668 6 * This file contains definition and prototype for GPIO.
alexan_e 1:0f1be4e75668 7 *
alexan_e 1:0f1be4e75668 8 ****************************************************************************
alexan_e 1:0f1be4e75668 9 * Software that is described herein is for illustrative purposes only
alexan_e 1:0f1be4e75668 10 * which provides customers with programming information regarding the
alexan_e 1:0f1be4e75668 11 * products. This software is supplied "AS IS" without any warranties.
alexan_e 1:0f1be4e75668 12 * NXP Semiconductors assumes no responsibility or liability for the
alexan_e 1:0f1be4e75668 13 * use of the software, conveys no license or title under any patent,
alexan_e 1:0f1be4e75668 14 * copyright, or mask work right to the product. NXP Semiconductors
alexan_e 1:0f1be4e75668 15 * reserves the right to make changes in the software without
alexan_e 1:0f1be4e75668 16 * notification. NXP Semiconductors also make no representation or
alexan_e 1:0f1be4e75668 17 * warranty that such application will be suitable for the specified
alexan_e 1:0f1be4e75668 18 * use without further testing or modification.
alexan_e 1:0f1be4e75668 19 ****************************************************************************/
alexan_e 1:0f1be4e75668 20 #ifndef __GPIO_H
alexan_e 1:0f1be4e75668 21 #define __GPIO_H
alexan_e 1:0f1be4e75668 22
alexan_e 1:0f1be4e75668 23 #define CHANNEL0 0
alexan_e 1:0f1be4e75668 24 #define CHANNEL1 1
alexan_e 1:0f1be4e75668 25 #define CHANNEL2 2
alexan_e 1:0f1be4e75668 26 #define CHANNEL3 3
alexan_e 1:0f1be4e75668 27 #define CHANNEL4 4
alexan_e 1:0f1be4e75668 28 #define CHANNEL5 5
alexan_e 1:0f1be4e75668 29 #define CHANNEL6 6
alexan_e 1:0f1be4e75668 30 #define CHANNEL7 7
alexan_e 1:0f1be4e75668 31
alexan_e 1:0f1be4e75668 32 #define PORT0 0
alexan_e 1:0f1be4e75668 33 #define PORT1 1
alexan_e 1:0f1be4e75668 34
alexan_e 1:0f1be4e75668 35 #define GROUP0 0
alexan_e 1:0f1be4e75668 36 #define GROUP1 1
alexan_e 1:0f1be4e75668 37
alexan_e 1:0f1be4e75668 38 void FLEX_INT0_IRQHandler(void);
alexan_e 1:0f1be4e75668 39 void FLEX_INT1_IRQHandler(void);
alexan_e 1:0f1be4e75668 40 void FLEX_INT2_IRQHandler(void);
alexan_e 1:0f1be4e75668 41 void FLEX_INT3_IRQHandler(void);
alexan_e 1:0f1be4e75668 42 void FLEX_INT4_IRQHandler(void);
alexan_e 1:0f1be4e75668 43 void FLEX_INT5_IRQHandler(void);
alexan_e 1:0f1be4e75668 44 void FLEX_INT6_IRQHandler(void);
alexan_e 1:0f1be4e75668 45 void FLEX_INT7_IRQHandler(void);
alexan_e 1:0f1be4e75668 46 void GINT0_IRQHandler(void);
alexan_e 1:0f1be4e75668 47 void GINT1_IRQHandler(void);
alexan_e 1:0f1be4e75668 48 void GPIOInit( void );
alexan_e 1:0f1be4e75668 49 void GPIOSetFlexInterrupt( uint32_t channelNum, uint32_t portNum, uint32_t bitPosi,
alexan_e 1:0f1be4e75668 50 uint32_t sense, uint32_t event );
alexan_e 1:0f1be4e75668 51 void GPIOFlexIntEnable( uint32_t channelNum, uint32_t event );
alexan_e 1:0f1be4e75668 52 void GPIOFlexIntDisable( uint32_t channelNum, uint32_t event );
alexan_e 1:0f1be4e75668 53 uint32_t GPIOFlexIntStatus( uint32_t channelNum );
alexan_e 1:0f1be4e75668 54 void GPIOFlexIntClear( uint32_t channelNum );
alexan_e 1:0f1be4e75668 55 void GPIOSetGroupedInterrupt( uint32_t groupNum, uint32_t *bitPattern, uint32_t logic,
alexan_e 1:0f1be4e75668 56 uint32_t sense, uint32_t *eventPattern );
alexan_e 1:0f1be4e75668 57 uint32_t GPIOGetPinValue( uint32_t portNum, uint32_t bitPosi );
alexan_e 1:0f1be4e75668 58 void GPIOSetBitValue( uint32_t portNum, uint32_t bitPosi, uint32_t bitVal );
alexan_e 1:0f1be4e75668 59 void GPIOSetDir( uint32_t portNum, uint32_t bitPosi, uint32_t dir );
alexan_e 1:0f1be4e75668 60
alexan_e 1:0f1be4e75668 61 #endif /* end __GPIO_H */
alexan_e 1:0f1be4e75668 62 /*****************************************************************************
alexan_e 1:0f1be4e75668 63 ** End Of File
alexan_e 1:0f1be4e75668 64 ******************************************************************************/