1    import ti.catalog.msp430.peripherals.clock.IClock;
     2    import ti.catalog.msp430.peripherals.special_function.IE2;
     3    
     4    /*!
     5     * Universal Serial Communication Interface A0 UART 2xx
     6     */
     7    metaonly module USCI_A0_UART_2xx inherits IUSCI_A0_UART {
     8        /* Add 2xx-specific stuff here */
     9        
    10        /*
    11         *  ======== create ========
    12         */
    13        create(IClock.Instance clock , IE2.Instance interruptEnableRegister2);
    14        
    15    instance:
    16        /*! @_nodoc */
    17        config IClock.Instance clock;
    18        /*! @_nodoc */
    19        config IE2.Instance interruptEnableRegister2;
    20    }