This thread has been locked.
If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.
Hello,
I've recently been working on an I2C driver interface for one of my company's products. The control firmware is built on an MSP430FR5969 and utilizes eUSCI B0 configured for I2C.
I've put a great amount of effort into designing a high-speed non-blocking ISR state machine and so far it is entirely stable up until about 500KHz.
The firmware is configured for master only, and hardware configuration has been verified by our electrical engineering team.
The current issue is that I see the same Receive behavior no matter how the first byte transaction is configured. If I assert a UCTXSTT and react on a UCRX0IFG I receive two bytes, this I am aware is as intended. If I assert both (UCTXSTT | UCTXSTP) at the same time, even before enabling the I2C lines or the interrupts, I always receive one byte after a slave ACK. The User guide mentions that slave data is received following an ACK only if the UCTXSTT is not set; my question is, why am I still clocking in another byte? We have equipment that reacts differently to both Zero-Byte READs *and* WRITEs. How can I implement an entirely non-blocking zero-byte READ with the eUSCI module?
Also, are there any more detailed references on non-blocking I2C with the eUSCI? The TI examples I've been able to find have been severely limited and lack edge-case and error-condition logic. A FSM diagram would be incredible!
After pouring over user guides, forum posts, and datasheets, I expected START -> ADDR/RW -> STOP for *both* Read and Write bits,
Write works as expected, but read *always* results in your second case: START -> ADDR/RW-BYTE0 -> STOP. If I set STT and STP simultaneously I always receive one byte. Right now we're looking into two options.
1. Turn all zero-byte reads into zero-byte writes
2. Block all zero-byte reads.
Ideally we want to implement void reads and void writes
Walter,
Our EE team has designed a custom routing interface for our various communication interfaces. I2C is switched to different boards (each with identical slave address groups). The switching devices reconfigure themselves according to the address and R/W bit sent out, but are not true I2C slaves. These devices act as large multiplexers that pass through data to logic that further processes and routes I2C data.
It seems that the hardware implementation was not thoroughly reviewed, as the designer has made the assumption that void reads and void writes were possible with the MSP430FR5969's eUSCI module. If there is absolutely no way to send a slave address and R/W NACK then we may have to review the design. We'd like to avoid having to reconfigure the eUSCI into GPIOs for every transaction as our process for approving post-fabrication software changes is incredibly lengthy.The GPIO solution has been discussed and is not ideal.
I was also under the impression that the maximum I2C clock speed was 1/4 the MCLK frequency. Is this not true?
Thank you,
Quinn
Hi Quinn,
I'll do some additional digging to make sure, but right now I do not see a way to do a void read. Void write is not a problem.
Quinn Mikelson said:I was also under the impression that the maximum I2C clock speed was 1/4 the MCLK frequency. Is this not true?
Do you have a link to the documentation that mentions this? Below is the datasheet specification that clarifys the maximum I2C SCL frequency.
Walter
**Attention** This is a public forum