RTOS enabled i2c-driver based on the official i2c-C-api.

Dependencies:   mbed-rtos

Fork of mbed-RtosI2cDriver by Helmut Schmücker

I2cRtosDriver

Overview

  • Based on RTOS
    • Less busy wait waste of CPU cycles
    • ... but some waste of CPU cycles by context switches
    • Frees up to 80% of CPU resources
  • Fixes the bug described in https://mbed.org/forum/bugs-suggestions/topic/4128/
  • Spends minimal time in interrupt context
  • Supports I2C Master and Slave mode
  • Interface compatible to official I2C lib
  • Supports LPC1768 and LPC11U24.
  • Reuses parts of the official I2C implementation
  • The test and example programs work quite well and the results look promising. But this is by no means a thoroughly regression tested library. There might be some surprises left.
  • If you want to avoid the RTOS overhead MODI2C might be a better choice.

Usage

  • In existing projects simply replace in the I2C interface class declaration the official type by one of the adapters I2CMasterRtos or I2CSlaveRtos described below. The behavior should be the same.
  • You can also use the I2CDriver interface directly.
  • You can create several instances of I2CMasterRtos, I2CSlaveRtos and I2CDriver. The interface classes are lightweight and work in parallel.
  • See also the tests/examples in I2CDriverTest01.h - I2CDriverTest05.h
  • The I2CDriver class is the central interface
    • I2CDriver provides a "fat" API for I2C master and slave access
    • It supports on the fly changes between master and slave mode.
    • All requests are blocking. Other threads might do their work while the calling thread waits for the i2c requests to be completed.
    • It ensures mutual exclusive access to the I2C HW.
      • This is realized by a static RTOS mutex for each I2C channel. The mutex is taken by the calling thread on any call of an I2CDriver-function.
      • Thus accesses are prioritized automatically by the priority of the calling user threads.
      • Once having access to the interface the requests are performed with high priority and cannot be interrupted by other threads.
      • Optionally the interface can be locked manually. Useful if one wants to perform a sequence of commands without interruption.
  • I2CMasterRtos and I2CSlaveRtos provide an interface compatible to the official mbed I2C interface. Additionally
    • the constructors provide parameters for defining the frequency and the slave address
    • I2CMasterRtos provides a function to read data from a given slave register
    • In contrast to the original interface the I2CSlaveRtos::receive() function is blocking, i.e it returns, when the master sends a request to the listening slave. There is no need to poll the receive status in a loop. Optionally a timeout value can be passed to the function.
    • The stop function provides a timeout mechanism and returns the status. Thus if someone on the bus inhibits the creation of a stop condition by keeping the scl or the sda line low the mbed master won't get freezed.
    • The interface adapters are implemented as object adapters, i.e they hold an I2CDriver-instance, to which they forward the user requests by simple inline functions. The overhead is negligible.

Design

The i2c read and write sequences have been realized in an interrupt service routine. The communicaton between the calling thread and the ISR is realized by a simple static transfer struct and a semaphore ... see i2cRtos_api.c
The start and stop functions still use the busy wait approach. They are not entered that frequently and usually they take less than 12µs at 100kHz bus speed. At 400kHz even less time is consumed. Thus there wouldn't be much benefit if one triggers the whole interrupt/task wait/switch sequence for that short period of time.

Performance

The following performance data have been measured with the small test applications in I2CDriverTest01.h and I2CDriverTest04.h . In these applications a high priority thread, triggered at a rate of 1kHz, reads on each trigger a data packet of given size with given I2C bus speed from a SRF08 ultra sonic ranger or a MPU6050 accelerometer/gyro. At the same time the main thread - running at a lower priority - counts in an endless loop adjacent increments of the mbed's µs-ticker API and calculates a duty cycle from this. These duty cycle measurements are shown in the table below together with the time measured for one read sequence (write address+register; write address and read x byte of data). The measurements have been performed with the ISR/RTOS approach used by this driver and with the busy wait approach used by the official mbed I2C implementation. The i2c implementation can be selected via #define PREFIX in I2CDriver.cpp.

  • The time for one read cycle is almost the same for both approaches
  • At full load the duty cycle of the low priority thread drops almost to zero for the busy wait approach, whereas with the RTOS/ISR enabled driver it stays at 80%-90% on the LPC1768 and above 65% on the LPC11U24.
  • => Especially at low bus speeds and/or high data transfer loads the driver is able to free a significant amount of CPU time.
LPC17681byte/ms4byte/ms6byte/ms1byte/ms6byte/ms12byte/ms25byte/ms
SRF08@ 100kHz@ 100kHz@ 100kHz@ 400kHz@ 400kHz@ 400kHz@ 400kHz
rtos/ISRDC[%]91.791.090.593.391.990.386.8
t[µs]421714910141314518961
busy waitDC[%]57.127.78.185.868.748.23.8
t[µs]415710907128299503949
LPC17681byte/ms4byte/ms7byte/ms1byte/ms6byte/ms12byte/ms36byte/ms
MPU6050@ 100kHz@ 100kHz@ 100kHz@ 400kHz@ 400kHz@ 400kHz@ 400kHz
rtos/ISRDC[%]91.590.789.393.091.690.084.2
t[µs]415687959133254398977
busy waitDC[%]57.730.53.386.574.359.71.2
t[µs]408681953121243392974
LPC11U241byte/ms6byte/ms1byte/ms6byte/ms23byte/ms
SRF08@ 100kHz@ 100kHz@ 400kHz@ 400kHz@ 400kHz
rtos/ISRDC[%]79.277.581.178.771.4
t[µs]474975199374978
busy waitDC[%]51.82.480.5633.3
t[µs]442937156332928
LPC11U241byte/ms6byte/ms1byte/ms6byte/ms32byte/ms
MPU6050@ 100kHz@ 100kHz@ 400kHz@ 400kHz@ 400kHz
rtos/ISRDC[%]79.176.881.078.667.1
t[µs]466922188316985
busy waitDC[%]52.87.281.769.87.4
t[µs]433893143268895
Committer:
humlet
Date:
Fri Apr 19 21:33:29 2013 +0000
Revision:
3:967dde37e712
Child:
4:eafa7efcd771
refactored, compiles and crashes

Who changed what in which revision?

UserRevisionLine numberNew contents of line
humlet 3:967dde37e712 1 #ifndef I2CSLAVERTOS_H
humlet 3:967dde37e712 2 #define I2CSLAVERTOS_H
humlet 3:967dde37e712 3
humlet 3:967dde37e712 4 #include "I2CDriver.h"
humlet 3:967dde37e712 5
humlet 3:967dde37e712 6 namespace mbed
humlet 3:967dde37e712 7 {
humlet 3:967dde37e712 8
humlet 3:967dde37e712 9 /// I2C master interface to the RTOS-I2CDriver.
humlet 3:967dde37e712 10 /// The interface is compatible to the original mbed I2C class.
humlet 3:967dde37e712 11 class I2CSlaveRtos
humlet 3:967dde37e712 12 {
humlet 3:967dde37e712 13 I2CDriver m_drv;
humlet 3:967dde37e712 14
humlet 3:967dde37e712 15 public:
humlet 3:967dde37e712 16
humlet 3:967dde37e712 17 enum RxStatus {
humlet 3:967dde37e712 18 NoData = 0,
humlet 3:967dde37e712 19 ReadAddressed = 1,
humlet 3:967dde37e712 20 WriteGeneral = 2,
humlet 3:967dde37e712 21 WriteAddressed = 3
humlet 3:967dde37e712 22 };
humlet 3:967dde37e712 23
humlet 3:967dde37e712 24 /** Create an I2C Slave interface, connected to the specified pins.
humlet 3:967dde37e712 25 *
humlet 3:967dde37e712 26 * @param sda I2C data line pin
humlet 3:967dde37e712 27 * @param scl I2C clock line pin
humlet 3:967dde37e712 28 */
humlet 3:967dde37e712 29 I2CSlaveRtos(PinName sda, PinName scl, int freq=100000, int address=42)
humlet 3:967dde37e712 30 :m_drv(sda,scl,100000,address) {}
humlet 3:967dde37e712 31
humlet 3:967dde37e712 32 /** Set the frequency of the I2C interface
humlet 3:967dde37e712 33 *
humlet 3:967dde37e712 34 * @param hz The bus frequency in hertz
humlet 3:967dde37e712 35 */
humlet 3:967dde37e712 36 void frequency(int hz) {
humlet 3:967dde37e712 37 m_drv.frequency(hz);
humlet 3:967dde37e712 38 }
humlet 3:967dde37e712 39
humlet 3:967dde37e712 40 /** Checks to see if this I2C Slave has been addressed.
humlet 3:967dde37e712 41 *
humlet 3:967dde37e712 42 * @returns
humlet 3:967dde37e712 43 * A status indicating if the device has been addressed, and how
humlet 3:967dde37e712 44 * - NoData - the slave has not been addressed
humlet 3:967dde37e712 45 * - ReadAddressed - the master has requested a read from this slave
humlet 3:967dde37e712 46 * - WriteAddressed - the master is writing to this slave
humlet 3:967dde37e712 47 * - WriteGeneral - the master is writing to all slave
humlet 3:967dde37e712 48 */
humlet 3:967dde37e712 49 int receive(void) {
humlet 3:967dde37e712 50 return m_drv.receiveSlave();
humlet 3:967dde37e712 51 }
humlet 3:967dde37e712 52
humlet 3:967dde37e712 53 /** Read from an I2C master.
humlet 3:967dde37e712 54 *
humlet 3:967dde37e712 55 * @param data pointer to the byte array to read data in to
humlet 3:967dde37e712 56 * @param length maximum number of bytes to read
humlet 3:967dde37e712 57 *
humlet 3:967dde37e712 58 * @returns
humlet 3:967dde37e712 59 * 0 on success,
humlet 3:967dde37e712 60 * non-0 otherwise
humlet 3:967dde37e712 61 */
humlet 3:967dde37e712 62 int read(char *data, int length) {
humlet 3:967dde37e712 63 return m_drv.readSlave(data, length);
humlet 3:967dde37e712 64 }
humlet 3:967dde37e712 65
humlet 3:967dde37e712 66 /** Read a single byte from an I2C master.
humlet 3:967dde37e712 67 *
humlet 3:967dde37e712 68 * @returns
humlet 3:967dde37e712 69 * the byte read
humlet 3:967dde37e712 70 */
humlet 3:967dde37e712 71 int read(void) {
humlet 3:967dde37e712 72 return m_drv.readSlave();
humlet 3:967dde37e712 73 }
humlet 3:967dde37e712 74
humlet 3:967dde37e712 75 /** Write to an I2C master.
humlet 3:967dde37e712 76 *
humlet 3:967dde37e712 77 * @param data pointer to the byte array to be transmitted
humlet 3:967dde37e712 78 * @param length the number of bytes to transmite
humlet 3:967dde37e712 79 *
humlet 3:967dde37e712 80 * @returns
humlet 3:967dde37e712 81 * 0 on success,
humlet 3:967dde37e712 82 * non-0 otherwise
humlet 3:967dde37e712 83 */
humlet 3:967dde37e712 84 int write(const char *data, int length) {
humlet 3:967dde37e712 85 return m_drv.writeSlave(data, length);
humlet 3:967dde37e712 86 }
humlet 3:967dde37e712 87
humlet 3:967dde37e712 88 /** Write a single byte to an I2C master.
humlet 3:967dde37e712 89 *
humlet 3:967dde37e712 90 * @data the byte to write
humlet 3:967dde37e712 91 *
humlet 3:967dde37e712 92 * @returns
humlet 3:967dde37e712 93 * '1' if an ACK was received,
humlet 3:967dde37e712 94 * '0' otherwise
humlet 3:967dde37e712 95 */
humlet 3:967dde37e712 96 int write(int data) {
humlet 3:967dde37e712 97 return m_drv.writeSlave(data);
humlet 3:967dde37e712 98 }
humlet 3:967dde37e712 99
humlet 3:967dde37e712 100 /** Sets the I2C slave address.
humlet 3:967dde37e712 101 *
humlet 3:967dde37e712 102 * @param address The address to set for the slave (ignoring the least
humlet 3:967dde37e712 103 * signifcant bit). If set to 0, the slave will only respond to the
humlet 3:967dde37e712 104 * general call address.
humlet 3:967dde37e712 105 */
humlet 3:967dde37e712 106 void address(int address) {
humlet 3:967dde37e712 107 m_drv.addressSlave(address);
humlet 3:967dde37e712 108 }
humlet 3:967dde37e712 109
humlet 3:967dde37e712 110
humlet 3:967dde37e712 111 /** Reset the I2C slave back into the known ready receiving state.
humlet 3:967dde37e712 112 */
humlet 3:967dde37e712 113 void stop(void){
humlet 3:967dde37e712 114 m_drv.stopSlave();
humlet 3:967dde37e712 115 }
humlet 3:967dde37e712 116 };
humlet 3:967dde37e712 117 }
humlet 3:967dde37e712 118
humlet 3:967dde37e712 119 #endif