1 2 3 4 5 6 7 8 9 10 11
12
13 requires ti.catalog.msp430.peripherals.clock;
14
15 /*!
16 * ======== ti.catalog.msp430.peripherals.communication ========
17 * MSP430 USCI peripherals
18 */
19 package ti.catalog.msp430.peripherals.communication [1, 0, 0]
20 {
21 interface IUSI;
22 interface IUSCI , IUSCI_I2C , IUSCI_SPI , IUSCI_UART;
23 interface IUSCI_A0_UART , IUSCI_A0_SPI , IUSCI_A1_UART;
24 interface IUSCI_B0_SPI , IUSCI_B0_I2C;
25 interface IEUSCI;
26 module USCI_A0_UART_2xx;
27 module USCI_A0_SPI_2xx;
28 module USCI_B0_SPI_2xx;
29 module USCI_B0_I2C_2xx;
30 module USCI_A1_UART_2xx;
31 module USCI_A1_SPI_2xx;
32 module USCI_B1_SPI_2xx;
33 module USCI_B1_I2C_2xx;
34 module USI;
35 module EUSCI_A0;
36 module EUSCI_A1;
37 module EUSCI_B0;
38 }
39 40 41
42