PixArt / Mbed 2 deprecated PAT9125_OTS_L476RG

Dependencies:   mbed

Committer:
pixus_mbed
Date:
Fri Oct 20 10:58:39 2017 +0000
Revision:
15:089f1d28d152
Parent:
1:73967d37f487
1. Separate LCD and UART mode.; 2. Configure BTN with default pull-up.; 3. NULL handle.

Who changed what in which revision?

UserRevisionLine numberNew contents of line
pixus_mbed 0:411244c71423 1 #ifndef PAT9125_I2C_H
pixus_mbed 0:411244c71423 2 #define PAT9125_I2C_H
pixus_mbed 0:411244c71423 3 #include "stdint.h"
pixus_mbed 0:411244c71423 4 #include "mbed.h"
pixus_mbed 0:411244c71423 5
pixus_mbed 0:411244c71423 6 class pat9125_i2c : public I2C
pixus_mbed 0:411244c71423 7 {
pixus_mbed 0:411244c71423 8 public:
pixus_mbed 1:73967d37f487 9 pat9125_i2c(PinName sda, PinName scl);
pixus_mbed 0:411244c71423 10 static pat9125_i2c * reset() ;
pixus_mbed 0:411244c71423 11 };
pixus_mbed 0:411244c71423 12
pixus_mbed 0:411244c71423 13 #endif