⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 fet140_i2c_mstrtx_opendrain.c

📁 msp430f14x 系列片内外设的实例代码
💻 C
字号:
//******************************************************************************
//   MSP-FET430P140 Demo - I2C Master Transmits to MSP430 Slave RX simulating
//                         open Drain Pins
//
//   Description: This demo connects two MSP430's via the I2C bus. The master 
//   reads from the slave. This is the master code. The slave code is called
//   fet140_i2c_slav_RX.c .Master constinuously transmits 0x5A inside
//   the TX ISR 
//   This code simulates the open Drain behavior of SCL and SDA lines 
//   by puuling them low and then pulling them high prior to sending a valid 
//   start condition. P1.4 and P1.3 pull the lines Low by outputting a "0" and 
//   then the line is pulled back high when those ports are switched as inputs
//
//   ACLK = n/a, MCLK = SMCLK = I2CCLOCK = DCO ~ 800kHz
//  //* MSP430F169 Device Required*//
//   
//                                 /|\  /|\
//                  MSP430F169     10k  10k     MSP430F169
//                    slave         |    |        master           
//              -----------------|  |    |  ----------------- 
//             |             P3.1|<-|---+->|P3.1<--------P1.4|
//             |                 |  |      |                 |
//             |                 |  |      |                 |
//             |             P3.3|<-+----->|P3.3<--------P1.3|
//             |                 |         |                 |
//
//
//  H.Grewal
//  Texas Instruments, Inc
//  Oct 2004
//  Updated for IAR Embedded Workbench Version: 2.21B
//******************************************************************************

#include  "msp430x16x.h"

void main (void)
{
  
  WDTCTL = WDTPW + WDTHOLD;             // Stop WDT
  P3SEL |= 0x0A;                        // Select I2C pins
  P1DIR = 0xFF;
  P1OUT = 0; 
  
  U0CTL |= I2C + SYNC;                  // Recommended init procedure
  U0CTL &= ~I2CEN;                      // Recommended init procedure
  I2CTCTL |= I2CSSEL1;                  // SMCLK
  I2CNDAT = 0x01;                       // Read one byte
  I2CSA = 0x0048;                       // Slave Address is 048h
  I2CIE = TXRDYIE;                      // Enable RXRDYIFG interrupt
  U0CTL |= I2CEN;                       // Enable I2C
  
  P1DIR = 0xE7; 
  _EINT();                              // Enable interrupts

  while (1)
  {
    U0CTL |= MST;                       // Master mode
    I2CTCTL |= I2CSTT + I2CSTP + I2CTRX;// Initiate transfer
    _BIS_SR(CPUOFF);                    // Enter LPM0                    
                                        
  } 

}

// Common ISR for I2C Module
#pragma vector=USART0TX_VECTOR
__interrupt void I2C_ISR(void)
{
 switch(I2CIV)
 {
   case  0: break;                      // No interrupt
   case  2: break;                      // Arbitration lost
   case  4: break;                      // No Acknowledge
   case  6: break;                      // Own Address
   case  8: break;                      // Register Access Ready
   case 10: break;                      // Receive Ready      
   case 12:
     I2CDRB = 0x5A;                     // TX data
     while (I2CBUSY & I2CDCTL);         // I2C ready?
     _BIC_SR_IRQ(CPUOFF);               // Clear LPM0      
     break;                             // Transmit Ready
   
   case 14: break;                      // General Call
   case 16: break;                      // Start Condition
 }
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -