1    import ti.catalog.msp430.peripherals.clock.IClock;
     2    import ti.catalog.msp430.peripherals.special_function.IE2;
     3    
     4    /*!
     5     * Universal Serial Communication Interface B0 SPI 2xx
     6     */
     7    metaonly module USCI_B0_SPI_2xx inherits IUSCI_B0_SPI {
     8    
     9        /*
    10         *  ======== create ========
    11         */
    12        create(IClock.Instance clock , IE2.Instance interruptEnableRegister2);
    13        
    14    instance:
    15        /*! @_nodoc */
    16        config IClock.Instance clock;
    17        /*! @_nodoc */
    18        config IE2.Instance interruptEnableRegister2;
    19    }