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 as CS;
    13    
    14    /*!
    15     *  ======== GPIO for MSP430FR5739_35_31_29_25_21 ========
    16     *  MSP430 General Purpose Input Output Ports
    17     */
    18    metaonly module GPIO_MSP430FR5739_35_31_29_25_21 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
    23         *  instances.
    24         */
    25        create(CS.Instance clock);
    26    
    27    instance:
    28        /*! @_nodoc */
    29        config CS.Instance clock;
    30        
    31        config Int numPortInterrupts = 4;
    32    }