1966 views|2 replies

3836

Posts

19

Resources
The OP
 

MSP430 communication resources IIC communication [Copy link]

1. IIC Description

The above figure shows that there should be at least one microcontroller in the IIC bus topology. The controller communicates with other associated devices through the SCL and SDA lines of the IIC bus. Based on the traditional serial bus communication mechanism, IIC bus communication is also achieved through the cooperation of SDA and SCL, and the transmission rate includes three categories: standard (100kps), fast (400kps), and high-speed (3.4Mbps).

2. IIC bus timing

Startup timing: When SCL is high, the falling edge of SDA indicates start.

Stop timing: When SCL is high, the rising edge of SDA indicates stop.

※From this, we can see that data transmission should occur when SCL is at a low level, and not during a high level. Further, we can see that the SDA level is read when SCL is at a high level.

The content of the data frame includes the start and stop signals, the 7-bit or 10-bit slave address, the transmission direction flag, the data bit (8 bits), an ACK bit (acknowledgement signal) after each byte of data, and then the end signal to end the data frame. In general, it is "start--address (7 or 10 bits)--R/W--data--ACK--data--ACK--....--stop"

3. I2C circuit structure diagram


The data sheet describes that the USCI module is in reset state after PUC or manual setting of the UCSWRST bit. If it is to work in I2C mode, UCMODEx should be set to 11. After setting, just clear the UCSWRST bit to make the USCI work.

4. Some main configuration statements of IIC

UCB0CTL1 |= UCSWRST; //Enable software reset, first turn off USCI_B0 mode for initialization //settings

UCB0CTL0 = UCMST + UCMODE_3 +UCSYNC; //I2C master, synchronous mode

UCB0BR0 = 12; //12 division

UCB0BR1 = 0;

UCB0I2CSA = 0x4e; //Set slave mode

UCB0CTL1 &= ~UCSWRST; // Clear software reset

This post is from Microcontroller MCU

Latest reply

IIC communication is used in many places.   Details Published on 2019-6-5 15:37
 

164

Posts

0

Resources
2
 

Thanks for sharing!

This post is from Microcontroller MCU
 
 

2618

Posts

0

Resources
3
 

IIC communication is used in many places.

This post is from Microcontroller MCU
 
 
 

Guess Your Favourite
Just looking around
Find a datasheet?

EEWorld Datasheet Technical Support

EEWorld
subscription
account

EEWorld
service
account

Automotive
development
circle

Copyright © 2005-2024 EEWORLD.com.cn, Inc. All rights reserved 京B2-20211791 京ICP备10001474号-1 电信业务审批[2006]字第258号函 京公网安备 11010802033920号
快速回复 返回顶部 Return list