2384|1

7

帖子

0

TA的资源

一粒金砂(初级)

楼主
 

关于MSP430通过硬件I2C接口连接从器件ADT7420的问题 [复制链接]

我将MSP430F5529作为主接收器件,ADT7420温度传感器作为从发送器件,连接在P4.1以及P4.2。在SDA以及scl上都加了上拉电阻10K。程序是例程里的,就改了一个从器件地址。问题是程序执行之后示波器根本没有SCL时钟线的波形,因为从器件也没有响应,Start位也没有变为0。求各位大牛能不能帮我解惑。
 
点赞 关注

回复
举报

7

帖子

0

TA的资源

一粒金砂(初级)

沙发
 
  1. #include <msp430.h>


  2.    unsigned char *PRxData;                     // Pointer to RX data
  3.    unsigned char RXByteCtr;
  4.    volatile unsigned char RxBuffer[128];       // Allocate 128 byte of RAM


  5.    int main(void)
  6.    {
  7.      WDTCTL = WDTPW + WDTHOLD;                 // Stop WDT
  8.      P4SEL|=BIT1+BIT2;                             // Assign I2C pins to USCI_B1
  9.      UCB1CTL1 |= UCSWRST;                      // Enable SW reset
  10.      UCB1CTL0 = UCMST + UCMODE_3 + UCSYNC;     // I2C Master, synchronous mode
  11.      UCB1CTL1 = UCSSEL_2 + UCSWRST;            // Use SMCLK, keep SW reset
  12.      UCB1BR0 = 12;                             // fSCL = SMCLK/12 = ~100kHz
  13.      UCB1BR1 = 0;
  14.      UCB1I2CSA = 0x49;                         // Slave Address is 048h
  15.      UCB1CTL1 &= ~UCSWRST;                     // Clear SW reset, resume operation
  16.      UCB1IE |= UCRXIE;                         // Enable RX interrupt


  17.      while (1)
  18.      {
  19.        PRxData = (unsigned char *)RxBuffer;    // Start of RX buffer
  20.        RXByteCtr = 5;                          // Load RX byte counter
  21.        while (UCB1CTL1 & UCTXSTP);             // Ensure stop condition got sent
  22.        UCB1CTL1 |= UCTXSTT;                    // I2C start condition


  23.        __bis_SR_register(LPM0_bits + GIE);     // Enter LPM0, enable interrupts
  24.                                                // Remain in LPM0 until all data
  25.                                                // is RX'd
  26.        __no_operation();                       // Set breakpoint >>here<< and
  27.      }                                         // read out the RxBuffer buffer
  28.    }


  29.    //-------------------------------------------------------------------------------
  30.    // The USCI_B0 data ISR is used to move received data from the I2C slave
  31.    // to the MSP430 memory. It is structured such that it can be used to receive
  32.    // any 2+ number of bytes by pre-loading RXByteCtr with the byte count.
  33.    //-------------------------------------------------------------------------------
  34.    #pragma vector = USCI_B1_VECTOR
  35.    __interrupt void USCI_B1_ISR(void)
  36.    {
  37.      switch(__even_in_range(UCB0IV,12))
  38.      {
  39.      case  0: break;                           // Vector  0: No interrupts
  40.      case  2: break;                           // Vector  2: ALIFG
  41.      case  4: break;                           // Vector  4: NACKIFG
  42.      case  6: break;                           // Vector  6: STTIFG
  43.      case  8: break;                           // Vector  8: STPIFG
  44.      case 10:                                  // Vector 10: RXIFG
  45.        RXByteCtr--;                            // Decrement RX byte counter
  46.        if (RXByteCtr)
  47.        {
  48.          *PRxData++ = UCB1RXBUF;               // Move RX data to address PRxData
  49.          if (RXByteCtr == 1)                   // Only one byte left?
  50.            UCB1CTL1 |= UCTXSTP;                // Generate I2C stop condition
  51.        }
  52.        else
  53.        {
  54.          *PRxData = UCB1RXBUF;                 // Move
  55.        }
  56.      }
  57.    }
复制代码


 
 

回复
您需要登录后才可以回帖 登录 | 注册

查找数据手册?

EEWorld Datasheet 技术支持

相关文章 更多>>
关闭
站长推荐上一条 1/7 下一条

 
EEWorld订阅号

 
EEWorld服务号

 
汽车开发圈

About Us 关于我们 客户服务 联系方式 器件索引 网站地图 最新更新 手机版

站点相关: 国产芯 安防电子 汽车电子 手机便携 工业控制 家用电子 医疗电子 测试测量 网络通信 物联网

北京市海淀区中关村大街18号B座15层1530室 电话:(010)82350740 邮编:100190

电子工程世界版权所有 京B2-20211791 京ICP备10001474号-1 电信业务审批[2006]字第258号函 京公网安备 11010802033920号 Copyright © 2005-2025 EEWORLD.com.cn, Inc. All rights reserved
快速回复 返回顶部 返回列表