I2C fast mode plus support library. This library works on mbed-11U24's p28&p27 only.

Dependents:   I2C_FmPlus_Hello

A sample code for I2C Fast mode plus operation.

Warning!

This code works on mbed-LPC11U24 only.

Import programI2C_FmPlus_Hello

Sample code for "I2C_FmPlus" library. I2C fast mode plus support library. This library works on mbed-11U24's p28&p27 only.

I2C_FmPlus.h

Committer:
okano
Date:
2014-12-02
Revision:
0:213903402306
Child:
1:6d19e8abca69

File content as of revision 0:213903402306:

/** I2C_FmPlus library
 *
 *  @class   I2C_FmPlus
 *  @author  tedd
 *  @version 0.9
 *  @date    13-Jul-2012
 *
 *  Released under the MIT License: http://mbed.org/license/mit
 *
 */

#ifndef     MBED_I2C_FMPLUS
#define     MBED_I2C_FMPLUS

#include    "mbed.h"

class I2C_FmPlus : public I2C {
public:
    I2C_FmPlus( PinName sda, PinName scl, const char *name = NULL );
    void scl_setting( char sclh, char scll );
private:
    
}
;

#endif  //  MBED_I2C_FMPLUS