STM32 I2C Lecture 25- Exercise: Introduction
Exercise: Introduction In this article, let’s do the exercise for I2C master (STM) and slave (Arduino) communication. When the button on the master is pressed, the master…
Exercise: Introduction In this article, let’s do the exercise for I2C master (STM) and slave (Arduino) communication. When the button on the master is pressed, the master…
I2C rise time calculation The TRISE timing for the I2C communication must be configured in the I2C driver by programming the TRISE register of the I2C register…
I2C pull up resistance, rise time and bus capacitance discussion Before doing the exercises on I2C, we have to cover some important concepts related to I2C communication.…
Implementation of I2C master sending data API:Part 5 Testing I2C MasterSendData() API: Before testing the code, build the code to check whether we encounter any error or…
Implementation of I2C master sending data API:Part 4 Send data until length becomes 0: Remember that before sending the data, first confirm whether the data register is…
Implementation of I2C master sending data API:Part 3 Send the address of the slave with r/w bit: Next step is to send the address of the slave…