1.7.11.7 EIC_PIN Enum

C

typedef enum
{
    /* External Interrupt Controller Pin 0 */
    EIC_PIN_0 = 0,
    
    /* External Interrupt Controller Pin 1 */
    EIC_PIN_1 = 1,
    
    /* External Interrupt Controller Pin 2 */
    EIC_PIN_2 = 2,
    
    /* External Interrupt Controller Pin 3 */
    EIC_PIN_3 = 3,
    
    /* External Interrupt Controller Pin 4 */
    EIC_PIN_4 = 4,
    
    /* External Interrupt Controller Pin 5 */
    EIC_PIN_5 = 5,
    
    /* External Interrupt Controller Pin 6 */
    EIC_PIN_6 = 6,
    
    /* External Interrupt Controller Pin 7 */
    EIC_PIN_7 = 7,
    
    /* External Interrupt Controller Pin 8 */
    EIC_PIN_8 = 8,
    
    /* External Interrupt Controller Pin 9 */
    EIC_PIN_9 = 9,
    
    /* External Interrupt Controller Pin 10 */
    EIC_PIN_10 = 10,
    
    /* External Interrupt Controller Pin 11 */
    EIC_PIN_11 = 11,
    
    /* External Interrupt Controller Pin 12 */
    EIC_PIN_12 = 12,
    
    /* External Interrupt Controller Pin 13 */
    EIC_PIN_13 = 13,
    
    /* External Interrupt Controller Pin 14 */
    EIC_PIN_14 = 14,
    
    /* External Interrupt Controller Pin 15 */
    EIC_PIN_15 = 15,
    
    /* Maximum number of EIC Pin */
    EIC_PIN_MAX = 16
    
} EIC_PIN;

Summary

Identifies the available EIC pins.

Description

This enumeration identifies all the available EIC pins. Not all pins will be implemented in a device. The pins described here are for documentation purposes only. The MHC will generate this enumeration with the enabled EIC pins only. The application should not use the constant value that are assigned to enumeration constants as this may vary between devices.

Remarks

None.