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 SPI 2xx
     6     */
     7    metaonly module USCI_A0_SPI_2xx inherits IUSCI_A0_SPI {
     8        /*
     9         *  ======== create ========
    10         */
    11        create(IClock.Instance clock , IE2.Instance interruptEnableRegister2);
    12        
    13        
    14        
    15    instance:
    16        /*! @_nodoc */
    17        config IClock.Instance clock;
    18        /*! @_nodoc */
    19        config IE2.Instance interruptEnableRegister2;
    20    }