123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768 |
- //*****************************************************************************
- //
- // gpio.h - Defines and Macros for GPIO API.
- //
- // Copyright (c) 2005-2009 Luminary Micro, Inc. All rights reserved.
- // Software License Agreement
- //
- // Luminary Micro, Inc. (LMI) is supplying this software for use solely and
- // exclusively on LMI's microcontroller products.
- //
- // The software is owned by LMI and/or its suppliers, and is protected under
- // applicable copyright laws. All rights are reserved. You may not combine
- // this software with "viral" open-source software in order to form a larger
- // program. Any use in violation of the foregoing restrictions may subject
- // the user to criminal sanctions under applicable laws, as well as to civil
- // liability for the breach of the terms and conditions of this license.
- //
- // THIS SOFTWARE IS PROVIDED "AS IS". NO WARRANTIES, WHETHER EXPRESS, IMPLIED
- // OR STATUTORY, INCLUDING, BUT NOT LIMITED TO, IMPLIED WARRANTIES OF
- // MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE APPLY TO THIS SOFTWARE.
- // LMI SHALL NOT, IN ANY CIRCUMSTANCES, BE LIABLE FOR SPECIAL, INCIDENTAL, OR
- // CONSEQUENTIAL DAMAGES, FOR ANY REASON WHATSOEVER.
- //
- // This is part of revision 4694 of the Stellaris Peripheral Driver Library.
- //
- //*****************************************************************************
- #ifndef __GPIO_H__
- #define __GPIO_H__
- //*****************************************************************************
- //
- // If building with a C++ compiler, make all of the definitions in this header
- // have a C binding.
- //
- //*****************************************************************************
- #ifdef __cplusplus
- extern "C"
- {
- #endif
- //*****************************************************************************
- //
- // The following values define the bit field for the ucPins argument to several
- // of the APIs.
- //
- //*****************************************************************************
- #define GPIO_PIN_0 0x00000001 // GPIO pin 0
- #define GPIO_PIN_1 0x00000002 // GPIO pin 1
- #define GPIO_PIN_2 0x00000004 // GPIO pin 2
- #define GPIO_PIN_3 0x00000008 // GPIO pin 3
- #define GPIO_PIN_4 0x00000010 // GPIO pin 4
- #define GPIO_PIN_5 0x00000020 // GPIO pin 5
- #define GPIO_PIN_6 0x00000040 // GPIO pin 6
- #define GPIO_PIN_7 0x00000080 // GPIO pin 7
- //*****************************************************************************
- //
- // Values that can be passed to GPIODirModeSet as the ulPinIO parameter, and
- // returned from GPIODirModeGet.
- //
- //*****************************************************************************
- #define GPIO_DIR_MODE_IN 0x00000000 // Pin is a GPIO input
- #define GPIO_DIR_MODE_OUT 0x00000001 // Pin is a GPIO output
- #define GPIO_DIR_MODE_HW 0x00000002 // Pin is a peripheral function
- //*****************************************************************************
- //
- // Values that can be passed to GPIOIntTypeSet as the ulIntType parameter, and
- // returned from GPIOIntTypeGet.
- //
- //*****************************************************************************
- #define GPIO_FALLING_EDGE 0x00000000 // Interrupt on falling edge
- #define GPIO_RISING_EDGE 0x00000004 // Interrupt on rising edge
- #define GPIO_BOTH_EDGES 0x00000001 // Interrupt on both edges
- #define GPIO_LOW_LEVEL 0x00000002 // Interrupt on low level
- #define GPIO_HIGH_LEVEL 0x00000007 // Interrupt on high level
- //*****************************************************************************
- //
- // Values that can be passed to GPIOPadConfigSet as the ulStrength parameter,
- // and returned by GPIOPadConfigGet in the *pulStrength parameter.
- //
- //*****************************************************************************
- #define GPIO_STRENGTH_2MA 0x00000001 // 2mA drive strength
- #define GPIO_STRENGTH_4MA 0x00000002 // 4mA drive strength
- #define GPIO_STRENGTH_8MA 0x00000004 // 8mA drive strength
- #define GPIO_STRENGTH_8MA_SC 0x0000000C // 8mA drive with slew rate control
- //*****************************************************************************
- //
- // Values that can be passed to GPIOPadConfigSet as the ulPadType parameter,
- // and returned by GPIOPadConfigGet in the *pulPadType parameter.
- //
- //*****************************************************************************
- #define GPIO_PIN_TYPE_STD 0x00000008 // Push-pull
- #define GPIO_PIN_TYPE_STD_WPU 0x0000000A // Push-pull with weak pull-up
- #define GPIO_PIN_TYPE_STD_WPD 0x0000000C // Push-pull with weak pull-down
- #define GPIO_PIN_TYPE_OD 0x00000009 // Open-drain
- #define GPIO_PIN_TYPE_OD_WPU 0x0000000B // Open-drain with weak pull-up
- #define GPIO_PIN_TYPE_OD_WPD 0x0000000D // Open-drain with weak pull-down
- #define GPIO_PIN_TYPE_ANALOG 0x00000000 // Analog comparator
- //*****************************************************************************
- //
- // Values that can be passed to GPIOPinConfigure as the ulPinConfig parameter.
- //
- //*****************************************************************************
- //
- // GPIO pin A0
- //
- #define GPIO_PA0_U0RX 0x00000001
- #define GPIO_PA0_I2C1SCL 0x00000008
- #define GPIO_PA0_U1RX 0x00000009
- //
- // GPIO pin A1
- //
- #define GPIO_PA1_U0TX 0x00000401
- #define GPIO_PA1_I2C1SDA 0x00000408
- #define GPIO_PA1_U1TX 0x00000409
- //
- // GPIO pin A2
- //
- #define GPIO_PA2_SSI0CLK 0x00000801
- #define GPIO_PA2_PWM4 0x00000804
- #define GPIO_PA2_I2S0RXSD 0x00000809
- //
- // GPIO pin A3
- //
- #define GPIO_PA3_SSI0FSS 0x00000c01
- #define GPIO_PA3_PWM5 0x00000c04
- #define GPIO_PA3_I2S0RXMCLK 0x00000c09
- //
- // GPIO pin A4
- //
- #define GPIO_PA4_SSI0RX 0x00001001
- #define GPIO_PA4_PWM6 0x00001004
- #define GPIO_PA4_CAN0RX 0x00001005
- #define GPIO_PA4_I2S0TXSCK 0x00001009
- //
- // GPIO pin A5
- //
- #define GPIO_PA5_SSI0TX 0x00001401
- #define GPIO_PA5_PWM7 0x00001404
- #define GPIO_PA5_CAN0TX 0x00001405
- #define GPIO_PA5_I2S0TXWS 0x00001409
- //
- // GPIO pin A6
- //
- #define GPIO_PA6_I2C1SCL 0x00001801
- #define GPIO_PA6_CCP1 0x00001802
- #define GPIO_PA6_PWM0 0x00001804
- #define GPIO_PA6_PWM4 0x00001805
- #define GPIO_PA6_CAN0RX 0x00001806
- #define GPIO_PA6_USB0EPEN 0x00001808
- #define GPIO_PA6_U1CTS 0x00001809
- //
- // GPIO pin A7
- //
- #define GPIO_PA7_I2C1SDA 0x00001c01
- #define GPIO_PA7_CCP4 0x00001c02
- #define GPIO_PA7_PWM1 0x00001c04
- #define GPIO_PA7_PWM5 0x00001c05
- #define GPIO_PA7_CAN0TX 0x00001c06
- #define GPIO_PA7_CCP3 0x00001c07
- #define GPIO_PA7_USB0PFLT 0x00001c08
- #define GPIO_PA7_U1DCD 0x00001c09
- //
- // GPIO pin B0
- //
- #define GPIO_PB0_CCP0 0x00010001
- #define GPIO_PB0_PWM2 0x00010002
- #define GPIO_PB0_U1RX 0x00010005
- //
- // GPIO pin B1
- //
- #define GPIO_PB1_CCP2 0x00010401
- #define GPIO_PB1_PWM3 0x00010402
- #define GPIO_PB1_CCP1 0x00010404
- #define GPIO_PB1_U1TX 0x00010405
- //
- // GPIO pin B2
- //
- #define GPIO_PB2_I2C0SCL 0x00010801
- #define GPIO_PB2_IDX0 0x00010802
- #define GPIO_PB2_CCP3 0x00010804
- #define GPIO_PB2_CCP0 0x00010805
- #define GPIO_PB2_USB0EPEN 0x00010808
- //
- // GPIO pin B3
- //
- #define GPIO_PB3_I2C0SDA 0x00010c01
- #define GPIO_PB3_FAULT0 0x00010c02
- #define GPIO_PB3_FAULT3 0x00010c04
- #define GPIO_PB3_USB0PFLT 0x00010c08
- //
- // GPIO pin B4
- //
- #define GPIO_PB4_U2RX 0x00011004
- #define GPIO_PB4_CAN0RX 0x00011005
- #define GPIO_PB4_IDX0 0x00011006
- #define GPIO_PB4_U1RX 0x00011007
- #define GPIO_PB4_EPI0S23 0x00011008
- //
- // GPIO pin B5
- //
- #define GPIO_PB5_C0O 0x00011401
- #define GPIO_PB5_CCP5 0x00011402
- #define GPIO_PB5_CCP6 0x00011403
- #define GPIO_PB5_CCP0 0x00011404
- #define GPIO_PB5_CAN0TX 0x00011405
- #define GPIO_PB5_CCP2 0x00011406
- #define GPIO_PB5_U1TX 0x00011407
- #define GPIO_PB5_EPI0S22 0x00011408
- //
- // GPIO pin B6
- //
- #define GPIO_PB6_CCP1 0x00011801
- #define GPIO_PB6_CCP7 0x00011802
- #define GPIO_PB6_C0O 0x00011803
- #define GPIO_PB6_FAULT1 0x00011804
- #define GPIO_PB6_IDX0 0x00011805
- #define GPIO_PB6_CCP5 0x00011806
- #define GPIO_PB6_I2S0TXSCK 0x00011809
- //
- // GPIO pin B7
- //
- #define GPIO_PB7_NMI 0x00011c04
- //
- // GPIO pin C0
- //
- #define GPIO_PC0_TCK 0x00020003
- //
- // GPIO pin C1
- //
- #define GPIO_PC1_TMS 0x00020403
- //
- // GPIO pin C2
- //
- #define GPIO_PC2_TDI 0x00020803
- //
- // GPIO pin C3
- //
- #define GPIO_PC3_TDO 0x00020c03
- //
- // GPIO pin C4
- //
- #define GPIO_PC4_CCP5 0x00021001
- #define GPIO_PC4_PHA0 0x00021002
- #define GPIO_PC4_PWM6 0x00021004
- #define GPIO_PC4_CCP2 0x00021005
- #define GPIO_PC4_CCP4 0x00021006
- #define GPIO_PC4_EPI0S2 0x00021008
- #define GPIO_PC4_CCP1 0x00021009
- //
- // GPIO pin C5
- //
- #define GPIO_PC5_CCP1 0x00021401
- #define GPIO_PC5_C1O 0x00021402
- #define GPIO_PC5_C0O 0x00021403
- #define GPIO_PC5_FAULT2 0x00021404
- #define GPIO_PC5_CCP3 0x00021405
- #define GPIO_PC5_USB0EPEN 0x00021406
- #define GPIO_PC5_EPI0S3 0x00021408
- //
- // GPIO pin C6
- //
- #define GPIO_PC6_CCP3 0x00021801
- #define GPIO_PC6_PHB0 0x00021802
- #define GPIO_PC6_C2O 0x00021803
- #define GPIO_PC6_PWM7 0x00021804
- #define GPIO_PC6_U1RX 0x00021805
- #define GPIO_PC6_CCP0 0x00021806
- #define GPIO_PC6_USB0PFLT 0x00021807
- #define GPIO_PC6_EPI0S4 0x00021808
- //
- // GPIO pin C7
- //
- #define GPIO_PC7_CCP4 0x00021c01
- #define GPIO_PC7_PHB0 0x00021c02
- #define GPIO_PC7_CCP0 0x00021c04
- #define GPIO_PC7_U1TX 0x00021c05
- #define GPIO_PC7_USB0PFLT 0x00021c06
- #define GPIO_PC7_C1O 0x00021c07
- #define GPIO_PC7_EPI0S5 0x00021c08
- //
- // GPIO pin D0
- //
- #define GPIO_PD0_PWM0 0x00030001
- #define GPIO_PD0_CAN0RX 0x00030002
- #define GPIO_PD0_IDX0 0x00030003
- #define GPIO_PD0_U2RX 0x00030004
- #define GPIO_PD0_U1RX 0x00030005
- #define GPIO_PD0_CCP6 0x00030006
- #define GPIO_PD0_I2S0RXSCK 0x00030008
- #define GPIO_PD0_U1CTS 0x00030009
- //
- // GPIO pin D1
- //
- #define GPIO_PD1_PWM1 0x00030401
- #define GPIO_PD1_CAN0TX 0x00030402
- #define GPIO_PD1_PHA0 0x00030403
- #define GPIO_PD1_U2TX 0x00030404
- #define GPIO_PD1_U1TX 0x00030405
- #define GPIO_PD1_CCP7 0x00030406
- #define GPIO_PD1_I2S0RXWS 0x00030408
- #define GPIO_PD1_U1DCD 0x00030409
- #define GPIO_PD1_CCP2 0x0003040a
- #define GPIO_PD1_PHB1 0x0003040b
- //
- // GPIO pin D2
- //
- #define GPIO_PD2_U1RX 0x00030801
- #define GPIO_PD2_CCP6 0x00030802
- #define GPIO_PD2_PWM2 0x00030803
- #define GPIO_PD2_CCP5 0x00030804
- #define GPIO_PD2_EPI0S20 0x00030808
- //
- // GPIO pin D3
- //
- #define GPIO_PD3_U1TX 0x00030c01
- #define GPIO_PD3_CCP7 0x00030c02
- #define GPIO_PD3_PWM3 0x00030c03
- #define GPIO_PD3_CCP0 0x00030c04
- #define GPIO_PD3_EPI0S21 0x00030c08
- //
- // GPIO pin D4
- //
- #define GPIO_PD4_CCP0 0x00031001
- #define GPIO_PD4_CCP3 0x00031002
- #define GPIO_PD4_I2S0RXSD 0x00031008
- #define GPIO_PD4_U1RI 0x00031009
- #define GPIO_PD4_EPI0S19 0x0003100a
- //
- // GPIO pin D5
- //
- #define GPIO_PD5_CCP2 0x00031401
- #define GPIO_PD5_CCP4 0x00031402
- #define GPIO_PD5_I2S0RXMCLK 0x00031408
- #define GPIO_PD5_U2RX 0x00031409
- #define GPIO_PD5_EPI0S28 0x0003140a
- //
- // GPIO pin D6
- //
- #define GPIO_PD6_FAULT0 0x00031801
- #define GPIO_PD6_I2S0TXSCK 0x00031808
- #define GPIO_PD6_U2TX 0x00031809
- #define GPIO_PD6_EPI0S29 0x0003180a
- //
- // GPIO pin D7
- //
- #define GPIO_PD7_IDX0 0x00031c01
- #define GPIO_PD7_C0O 0x00031c02
- #define GPIO_PD7_CCP1 0x00031c03
- #define GPIO_PD7_I2S0TXWS 0x00031c08
- #define GPIO_PD7_U1DTR 0x00031c09
- #define GPIO_PD7_EPI0S30 0x00031c0a
- //
- // GPIO pin E0
- //
- #define GPIO_PE0_PWM4 0x00040001
- #define GPIO_PE0_SSI1CLK 0x00040002
- #define GPIO_PE0_CCP3 0x00040003
- #define GPIO_PE0_EPI0S8 0x00040008
- #define GPIO_PE0_USB0PFLT 0x00040009
- //
- // GPIO pin E1
- //
- #define GPIO_PE1_PWM5 0x00040401
- #define GPIO_PE1_SSI1FSS 0x00040402
- #define GPIO_PE1_FAULT0 0x00040403
- #define GPIO_PE1_CCP2 0x00040404
- #define GPIO_PE1_CCP6 0x00040405
- #define GPIO_PE1_EPI0S9 0x00040408
- //
- // GPIO pin E2
- //
- #define GPIO_PE2_CCP4 0x00040801
- #define GPIO_PE2_SSI1RX 0x00040802
- #define GPIO_PE2_PHB1 0x00040803
- #define GPIO_PE2_PHA0 0x00040804
- #define GPIO_PE2_CCP2 0x00040805
- #define GPIO_PE2_EPI0S24 0x00040808
- //
- // GPIO pin E3
- //
- #define GPIO_PE3_CCP1 0x00040c01
- #define GPIO_PE3_SSI1TX 0x00040c02
- #define GPIO_PE3_PHA1 0x00040c03
- #define GPIO_PE3_PHB0 0x00040c04
- #define GPIO_PE3_CCP7 0x00040c05
- #define GPIO_PE3_EPI0S25 0x00040c08
- //
- // GPIO pin E4
- //
- #define GPIO_PE4_CCP3 0x00041001
- #define GPIO_PE4_FAULT0 0x00041004
- #define GPIO_PE4_U2TX 0x00041005
- #define GPIO_PE4_CCP2 0x00041006
- #define GPIO_PE4_I2S0TXWS 0x00041009
- //
- // GPIO pin E5
- //
- #define GPIO_PE5_CCP5 0x00041401
- #define GPIO_PE5_I2S0TXSD 0x00041409
- //
- // GPIO pin E6
- //
- #define GPIO_PE6_PWM4 0x00041801
- #define GPIO_PE6_C1O 0x00041802
- #define GPIO_PE6_U1CTS 0x00041809
- //
- // GPIO pin E7
- //
- #define GPIO_PE7_PWM5 0x00041c01
- #define GPIO_PE7_C2O 0x00041c02
- #define GPIO_PE7_U1DCD 0x00041c09
- //
- // GPIO pin F0
- //
- #define GPIO_PF0_CAN1RX 0x00050001
- #define GPIO_PF0_PHB0 0x00050002
- #define GPIO_PF0_PWM0 0x00050003
- #define GPIO_PF0_I2S0TXSD 0x00050008
- #define GPIO_PF0_U1DSR 0x00050009
- //
- // GPIO pin F1
- //
- #define GPIO_PF1_CAN1TX 0x00050401
- #define GPIO_PF1_IDX1 0x00050402
- #define GPIO_PF1_PWM1 0x00050403
- #define GPIO_PF1_I2S0TXMCLK 0x00050408
- #define GPIO_PF1_U1RTS 0x00050409
- #define GPIO_PF1_CCP3 0x0005040a
- //
- // GPIO pin F2
- //
- #define GPIO_PF2_LED1 0x00050801
- #define GPIO_PF2_PWM4 0x00050802
- #define GPIO_PF2_PWM2 0x00050804
- #define GPIO_PF2_SSI1CLK 0x00050809
- //
- // GPIO pin F3
- //
- #define GPIO_PF3_LED0 0x00050c01
- #define GPIO_PF3_PWM5 0x00050c02
- #define GPIO_PF3_PWM3 0x00050c04
- #define GPIO_PF3_SSI1FSS 0x00050c09
- //
- // GPIO pin F4
- //
- #define GPIO_PF4_CCP0 0x00051001
- #define GPIO_PF4_C0O 0x00051002
- #define GPIO_PF4_FAULT0 0x00051004
- #define GPIO_PF4_EPI0S12 0x00051008
- #define GPIO_PF4_SSI1RX 0x00051009
- //
- // GPIO pin F5
- //
- #define GPIO_PF5_CCP2 0x00051401
- #define GPIO_PF5_C1O 0x00051402
- #define GPIO_PF5_EPI0S15 0x00051408
- #define GPIO_PF5_SSI1TX 0x00051409
- //
- // GPIO pin F6
- //
- #define GPIO_PF6_CCP1 0x00051801
- #define GPIO_PF6_C2O 0x00051802
- #define GPIO_PF6_PHA0 0x00051804
- #define GPIO_PF6_I2S0TXMCLK 0x00051809
- #define GPIO_PF6_U1RTS 0x0005180a
- //
- // GPIO pin F7
- //
- #define GPIO_PF7_CCP4 0x00051c01
- #define GPIO_PF7_PHB0 0x00051c04
- #define GPIO_PF7_EPI0S12 0x00051c08
- #define GPIO_PF7_FAULT1 0x00051c09
- //
- // GPIO pin G0
- //
- #define GPIO_PG0_U2RX 0x00060001
- #define GPIO_PG0_PWM0 0x00060002
- #define GPIO_PG0_I2C1SCL 0x00060003
- #define GPIO_PG0_PWM4 0x00060004
- #define GPIO_PG0_USB0EPEN 0x00060007
- #define GPIO_PG0_EPI0S13 0x00060008
- //
- // GPIO pin G1
- //
- #define GPIO_PG1_U2TX 0x00060401
- #define GPIO_PG1_PWM1 0x00060402
- #define GPIO_PG1_I2C1SDA 0x00060403
- #define GPIO_PG1_PWM5 0x00060404
- #define GPIO_PG1_EPI0S14 0x00060408
- //
- // GPIO pin G2
- //
- #define GPIO_PG2_PWM0 0x00060801
- #define GPIO_PG2_FAULT0 0x00060804
- #define GPIO_PG2_IDX1 0x00060808
- #define GPIO_PG2_I2S0RXSD 0x00060809
- //
- // GPIO pin G3
- //
- #define GPIO_PG3_PWM1 0x00060c01
- #define GPIO_PG3_FAULT2 0x00060c04
- #define GPIO_PG3_FAULT0 0x00060c08
- #define GPIO_PG3_I2S0RXMCLK 0x00060c09
- //
- // GPIO pin G4
- //
- #define GPIO_PG4_CCP3 0x00061001
- #define GPIO_PG4_FAULT1 0x00061004
- #define GPIO_PG4_EPI0S15 0x00061008
- #define GPIO_PG4_PWM6 0x00061009
- #define GPIO_PG4_U1RI 0x0006100a
- //
- // GPIO pin G5
- //
- #define GPIO_PG5_CCP5 0x00061401
- #define GPIO_PG5_IDX0 0x00061404
- #define GPIO_PG5_FAULT1 0x00061405
- #define GPIO_PG5_PWM7 0x00061408
- #define GPIO_PG5_I2S0RXSCK 0x00061409
- #define GPIO_PG5_U1DTR 0x0006140a
- //
- // GPIO pin G6
- //
- #define GPIO_PG6_PHA1 0x00061801
- #define GPIO_PG6_PWM6 0x00061804
- #define GPIO_PG6_FAULT1 0x00061808
- #define GPIO_PG6_I2S0RXWS 0x00061809
- #define GPIO_PG6_U1RI 0x0006180a
- //
- // GPIO pin G7
- //
- #define GPIO_PG7_PHB1 0x00061c01
- #define GPIO_PG7_PWM7 0x00061c04
- #define GPIO_PG7_CCP5 0x00061c08
- #define GPIO_PG7_EPI0S31 0x00061c09
- //
- // GPIO pin H0
- //
- #define GPIO_PH0_CCP6 0x00070001
- #define GPIO_PH0_PWM2 0x00070002
- #define GPIO_PH0_EPI0S6 0x00070008
- #define GPIO_PH0_PWM4 0x00070009
- //
- // GPIO pin H1
- //
- #define GPIO_PH1_CCP7 0x00070401
- #define GPIO_PH1_PWM3 0x00070402
- #define GPIO_PH1_EPI0S7 0x00070408
- #define GPIO_PH1_PWM5 0x00070409
- //
- // GPIO pin H2
- //
- #define GPIO_PH2_IDX1 0x00070801
- #define GPIO_PH2_C1O 0x00070802
- #define GPIO_PH2_FAULT3 0x00070804
- #define GPIO_PH2_EPI0S1 0x00070808
- //
- // GPIO pin H3
- //
- #define GPIO_PH3_PHB0 0x00070c01
- #define GPIO_PH3_FAULT0 0x00070c02
- #define GPIO_PH3_USB0EPEN 0x00070c04
- #define GPIO_PH3_EPI0S0 0x00070c08
- //
- // GPIO pin H4
- //
- #define GPIO_PH4_USB0PFLT 0x00071004
- #define GPIO_PH4_EPI0S10 0x00071008
- #define GPIO_PH4_SSI1CLK 0x0007100b
- //
- // GPIO pin H5
- //
- #define GPIO_PH5_EPI0S11 0x00071408
- #define GPIO_PH5_FAULT2 0x0007140a
- #define GPIO_PH5_SSI1FSS 0x0007140b
- //
- // GPIO pin H6
- //
- #define GPIO_PH6_EPI0S26 0x00071808
- #define GPIO_PH6_PWM4 0x0007180a
- #define GPIO_PH6_SSI1RX 0x0007180b
- //
- // GPIO pin H7
- //
- #define GPIO_PH7_EPI0S27 0x00071c08
- #define GPIO_PH7_PWM5 0x00071c0a
- #define GPIO_PH7_SSI1TX 0x00071c0b
- //
- // GPIO pin J0
- //
- #define GPIO_PJ0_EPI0S16 0x00080008
- #define GPIO_PJ0_PWM0 0x0008000a
- #define GPIO_PJ0_I2C1SCL 0x0008000b
- //
- // GPIO pin J1
- //
- #define GPIO_PJ1_EPI0S17 0x00080408
- #define GPIO_PJ1_USB0PFLT 0x00080409
- #define GPIO_PJ1_PWM1 0x0008040a
- #define GPIO_PJ1_I2C1SDA 0x0008040b
- //
- // GPIO pin J2
- //
- #define GPIO_PJ2_EPI0S18 0x00080808
- #define GPIO_PJ2_CCP0 0x00080809
- #define GPIO_PJ2_FAULT0 0x0008080a
- //
- // GPIO pin J3
- //
- #define GPIO_PJ3_EPI0S19 0x00080c08
- #define GPIO_PJ3_U1CTS 0x00080c09
- #define GPIO_PJ3_CCP6 0x00080c0a
- //
- // GPIO pin J4
- //
- #define GPIO_PJ4_EPI0S28 0x00081008
- #define GPIO_PJ4_U1DCD 0x00081009
- #define GPIO_PJ4_CCP4 0x0008100a
- //
- // GPIO pin J5
- //
- #define GPIO_PJ5_EPI0S29 0x00081408
- #define GPIO_PJ5_U1DSR 0x00081409
- #define GPIO_PJ5_CCP2 0x0008140a
- //
- // GPIO pin J6
- //
- #define GPIO_PJ6_EPI0S30 0x00081808
- #define GPIO_PJ6_U1RTS 0x00081809
- #define GPIO_PJ6_CCP1 0x0008180a
- //
- // GPIO pin J7
- //
- #define GPIO_PJ7_U1DTR 0x00081c09
- #define GPIO_PJ7_CCP0 0x00081c0a
- //*****************************************************************************
- //
- // Prototypes for the APIs.
- //
- //*****************************************************************************
- extern void GPIODirModeSet(unsigned long ulPort, unsigned char ucPins,
- unsigned long ulPinIO);
- extern unsigned long GPIODirModeGet(unsigned long ulPort, unsigned char ucPin);
- extern void GPIOIntTypeSet(unsigned long ulPort, unsigned char ucPins,
- unsigned long ulIntType);
- extern unsigned long GPIOIntTypeGet(unsigned long ulPort, unsigned char ucPin);
- extern void GPIOPadConfigSet(unsigned long ulPort, unsigned char ucPins,
- unsigned long ulStrength,
- unsigned long ulPadType);
- extern void GPIOPadConfigGet(unsigned long ulPort, unsigned char ucPin,
- unsigned long *pulStrength,
- unsigned long *pulPadType);
- extern void GPIOPinIntEnable(unsigned long ulPort, unsigned char ucPins);
- extern void GPIOPinIntDisable(unsigned long ulPort, unsigned char ucPins);
- extern long GPIOPinIntStatus(unsigned long ulPort, tBoolean bMasked);
- extern void GPIOPinIntClear(unsigned long ulPort, unsigned char ucPins);
- extern void GPIOPortIntRegister(unsigned long ulPort,
- void (*pfnIntHandler)(void));
- extern void GPIOPortIntUnregister(unsigned long ulPort);
- extern long GPIOPinRead(unsigned long ulPort, unsigned char ucPins);
- extern void GPIOPinWrite(unsigned long ulPort, unsigned char ucPins,
- unsigned char ucVal);
- extern void GPIOPinConfigure(unsigned long ulPinConfig);
- extern void GPIOPinTypeADC(unsigned long ulPort, unsigned char ucPins);
- extern void GPIOPinTypeCAN(unsigned long ulPort, unsigned char ucPins);
- extern void GPIOPinTypeComparator(unsigned long ulPort, unsigned char ucPins);
- extern void GPIOPinTypeGPIOInput(unsigned long ulPort, unsigned char ucPins);
- extern void GPIOPinTypeGPIOOutput(unsigned long ulPort, unsigned char ucPins);
- extern void GPIOPinTypeGPIOOutputOD(unsigned long ulPort,
- unsigned char ucPins);
- extern void GPIOPinTypeI2C(unsigned long ulPort, unsigned char ucPins);
- extern void GPIOPinTypeI2S(unsigned long ulPort, unsigned char ucPins);
- extern void GPIOPinTypePWM(unsigned long ulPort, unsigned char ucPins);
- extern void GPIOPinTypeQEI(unsigned long ulPort, unsigned char ucPins);
- extern void GPIOPinTypeSSI(unsigned long ulPort, unsigned char ucPins);
- extern void GPIOPinTypeTimer(unsigned long ulPort, unsigned char ucPins);
- extern void GPIOPinTypeUART(unsigned long ulPort, unsigned char ucPins);
- extern void GPIOPinTypeUSBAnalog(unsigned long ulPort, unsigned char ucPins);
- extern void GPIOPinTypeUSBDigital(unsigned long ulPort, unsigned char ucPins);
- //*****************************************************************************
- //
- // Mark the end of the C bindings section for C++ compilers.
- //
- //*****************************************************************************
- #ifdef __cplusplus
- }
- #endif
- #endif // __GPIO_H__
|