diff options
| author | Cristian Maglie <c.maglie@bug.st> | 2014-07-02 15:37:30 +0200 | 
|---|---|---|
| committer | Cristian Maglie <c.maglie@bug.st> | 2014-07-02 15:37:30 +0200 | 
| commit | cb4ae51b425568c7d404798ec4010660c46a5638 (patch) | |
| tree | 52db08fc0ff40d0d9eb90f1d0c5d957cfbc9ec65 /libraries/Wire/Wire.h | |
| parent | e7c3527a99e44416e97fe22534875df1ca5df9c0 (diff) | |
| parent | 5216e551a5b90f8744a4a7e18e531da16d1261ad (diff) | |
Merge pull request #1912 from Lauszus/issues440
Enable user to change the I2C clock frequency by calling setClock in the Wire library
Diffstat (limited to 'libraries/Wire/Wire.h')
| -rw-r--r-- | libraries/Wire/Wire.h | 5 | 
1 files changed, 3 insertions, 2 deletions
diff --git a/libraries/Wire/Wire.h b/libraries/Wire/Wire.h index a93d0f5..732bdc3 100644 --- a/libraries/Wire/Wire.h +++ b/libraries/Wire/Wire.h @@ -49,6 +49,7 @@ class TwoWire : public Stream      void begin();      void begin(uint8_t);      void begin(int); +    void setClock(uint32_t);      void beginTransmission(uint8_t);      void beginTransmission(int);      uint8_t endTransmission(void); @@ -62,10 +63,10 @@ class TwoWire : public Stream      virtual int available(void);      virtual int read(void);      virtual int peek(void); -	virtual void flush(void); +    virtual void flush(void);      void onReceive( void (*)(int) );      void onRequest( void (*)(void) ); -   +      inline size_t write(unsigned long n) { return write((uint8_t)n); }      inline size_t write(long n) { return write((uint8_t)n); }      inline size_t write(unsigned int n) { return write((uint8_t)n); }  | 
