1    /* --COPYRIGHT--,EPL
     2     *  Copyright (c) 2008 Texas Instruments and others.
     3     *  All rights reserved. This program and the accompanying materials
     4     *  are made available under the terms of the Eclipse Public License v1.0
     5     *  which accompanies this distribution, and is available at
     6     *  http://www.eclipse.org/legal/epl-v10.html
     7     *
     8     *  Contributors:
     9     *      Texas Instruments - initial implementation
    10     *
    11     * --/COPYRIGHT--*/
    12    import ti.catalog.msp430.peripherals.clock.CS_A as CS_A;
    13    
    14    /*!
    15     *  ======== GPIO for MSP430FR59xx_FR58xx ========
    16     *  MSP430 General Purpose Input Output Ports
    17     */
    18    metaonly module GPIO_MSP430FR59xx_FR58xx inherits IGPIO {
    19        /*!
    20         *  ======== create ========
    21         *  Create an instance of this peripheral. Use a customized
    22         *  init function so that we can get access to the CS_A
    23         *  instances.
    24         */
    25        create(CS_A.Instance clock);
    26    
    27    instance:
    28        /*! @_nodoc */
    29        config CS_A.Instance clock;
    30    
    31        config Int numPortInterrupts = 4;    
    32    }