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.

Revision:
0:213903402306
Child:
1:6d19e8abca69
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/I2C_FmPlus.h	Tue Dec 02 01:17:19 2014 +0000
@@ -0,0 +1,26 @@
+/** 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