stephen

    1. 楼主,三篇【msp430趣谈】都认真看了一遍,写的真的很好,我会继续关注的
    2. #include    unsigned char *PRxData;                     // Pointer to RX data    unsigned char RXByteCtr;    volatile unsigned char RxBuffer[128];       // Allocate 128 byte of RAM    int main(void)    {      WDTCTL = WDTPW + WDTHOLD;                 // Stop WDT      P4SEL|=BIT1+BIT2;                             // Assign I2C pins to USCI_B1      UCB1CTL1 |= UCSWRST;                      // Enable SW reset      UCB1CTL0 = UCMST + UCMODE_3 + UCSYNC;     // I2C Master, synchronous mode      UCB1CTL1 = UCSSEL_2 + UCSWRST;            // Use SMCLK, keep SW reset      UCB1BR0 = 12;                             // fSCL = SMCLK/12 = ~100kHz      UCB1BR1 = 0;      UCB1I2CSA = 0x49;                         // Slave Address is 048h      UCB1CTL1 &= ~UCSWRST;                     // Clear SW reset, resume operation      UCB1IE |= UCRXIE;                         // Enable RX interrupt      while (1)      {        PRxData = (unsigned char *)RxBuffer;    // Start of RX buffer        RXByteCtr = 5;                          // Load RX byte counter        while (UCB1CTL1 & UCTXSTP);             // Ensure stop condition got sent        UCB1CTL1 |= UCTXSTT;                    // I2C start condition        __bis_SR_register(LPM0_bits + GIE);     // Enter LPM0, enable interrupts                                                // Remain in LPM0 until all data                                                // is RX'd        __no_operation();                       // Set breakpoint >>here
    3. 滤波器设计基础 312/254153 电子竞赛 2009-09-03
      :lol
    4. 51和MSP430单片机—— 实践篇(各模块讲解) 213/51528 电子竞赛 2009-08-29
      潇 来顶你下

最近访客

< 1/1 >

统计信息

已有59人来访过

  • 芯积分:--
  • 好友:--
  • 主题:3
  • 回复:4

留言

你需要登录后才可以留言 登录 | 注册


现在还没有留言