I2C模块有些不理解

2019-07-31 15:04发布

#include <msp430.h>


unsigned char TXByteCtr;
unsigned char RXByteCtr;

unsigned char second;

unsigned char read=0;

int main(void)
{
  WDTCTL = WDTPW + WDTHOLD;                 // Stop WDT
  P1SEL |= BIT6 + BIT7;                     // Assign I2C pins to USCI_B0
  P1SEL2|= BIT6 + BIT7;                     // Assign I2C pins to USCI_B0
  UCB0CTL1 |= UCSWRST;                      // Enable SW reset
  UCB0CTL0 = UCMST + UCMODE_3 + UCSYNC;     // I2C Master, synchronous mode
  UCB0CTL1 = UCSSEL_2 + UCSWRST;            // Use SMCLK, keep SW reset
  UCB0BR0 = 12;                             // fSCL = SMCLK/12 = ~100kHz
  UCB0BR1 = 0;
  UCB0I2CSA = 0xD0>>1;                         // Slave Address is 048h
  UCB0CTL1 &= ~UCSWRST;                     // Clear SW reset, resume operation


  while (1)
  {
    IE2 |= UCB0TXIE;                          // Enable TX interrupt
    IE2 &= ~UCB0RXIE;
    TXByteCtr = 1;                          // Load TX byte counter
    while (UCB0CTL1 & UCTXSTP);             // Ensure stop condition got sent
    UCB0CTL1 |= UCTR + UCTXSTT;             // I2C TX, start condition
    __bis_SR_register(CPUOFF + GIE);        // Enter LPM0 w/ interrupts
                                            // Remain in LPM0 until all data
                                            // is TX'd

    IE2 |= UCB0RXIE;                          
    IE2 &= ~UCB0TXIE;
    RXByteCtr = 1;                          
    while (UCB0CTL1 & UCTXSTP);
    UCB0CTL1 &= ~UCTR;
    UCB0CTL1 |= UCTXSTT;
    __bis_SR_register(CPUOFF + GIE);        



  }
}

//------------------------------------------------------------------------------
// The USCIAB0TX_ISR is structured such that it can be used to transmit any
// number of bytes by pre-loading TXByteCtr with the byte count. Also, TXData
// points to the next byte to transmit.
//------------------------------------------------------------------------------
#pragma vector = USCIAB0TX_VECTOR
__interrupt void USCIAB0TX_ISR(void)
{
  if (TXByteCtr)                            // Check TX byte counter
  {
    UCB0TXBUF = 0x00;                 // Load TX buffer
    TXByteCtr--;                            // Decrement TX byte counter
  }
  else
  {
    UCB0CTL1 |= UCTXSTP;                    // I2C stop condition
    IFG2 &= ~UCB0TXIFG;                     // Clear USCI_B0 TX int flag
    __bic_SR_register_on_exit(CPUOFF);      // Exit LPM0
  }
}


#pragma vector = USCIAB0RX_VECTOR
__interrupt void USCIAB0RX_ISR(void)
{
  if (RXByteCtr)                            // Check TX byte counter
  {
    second=UCB0RXBUF;                 // Load TX buffer
    RXByteCtr--;                            // Decrement TX byte counter
  }
  else
  {
    UCB0CTL1 |= UCTXSTP;                    // I2C stop condition
    IFG2 &= ~UCB0RXIFG;                     // Clear USCI_B0 TX int flag
    __bic_SR_register_on_exit(CPUOFF);      // Exit LPM0
  }
}
友情提示: 此问题已得到解决,问题已经关闭,关闭后问题禁止继续编辑,回答。
该问题目前已经被作者或者管理员关闭, 无法添加新回复
5条回答
shibalihuandao
1楼-- · 2019-07-31 18:56
 精彩回答 2  元偷偷看……
i1mcu
2楼-- · 2019-07-31 22:14
i1mcu
3楼-- · 2019-07-31 23:27
bestray
4楼-- · 2019-08-01 03:55
bigplay
5楼-- · 2019-08-01 04:17
中断向量是因为I2C模式收发共用一个中断。因为I2C是一个半双工通信协议,也就是不会同时收发,所以一个中断向量和中断子程序就够了。
另外,你的程序调通没有。 我的tmp102一直卡在NACK上了,而且用CCS的例子进行两个单片机之间的通信也是,搞了好多天了,郁闷死了。

一周热门 更多>