Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependents: ISL1208_HelloWorld
Revision 5:d67ac8351c76, committed 2013-11-12
- Comitter:
- neilt6
- Date:
- Tue Nov 12 21:42:44 2013 +0000
- Parent:
- 4:42dc07f9ffb3
- Child:
- 6:c0635401a37f
- Commit message:
- Minor C++ syntax improvements
Changed in this revision
| ISL1208.cpp | Show annotated file Show diff for this revision Revisions of this file |
| ISL1208.h | Show annotated file Show diff for this revision Revisions of this file |
--- a/ISL1208.cpp Tue Nov 12 17:15:20 2013 +0000
+++ b/ISL1208.cpp Tue Nov 12 21:42:44 2013 +0000
@@ -16,6 +16,8 @@
#include "ISL1208.h"
+const int ISL1208::m_ADDR = (0x6F << 1);
+
ISL1208::ISL1208(PinName sda, PinName scl) : m_I2C(sda, scl)
{
//Set the I2C bus frequency to 400kHz
--- a/ISL1208.h Tue Nov 12 17:15:20 2013 +0000
+++ b/ISL1208.h Tue Nov 12 21:42:44 2013 +0000
@@ -338,7 +338,7 @@
};
//Member constants
- static const int m_ADDR = (0x6F << 1);
+ static const int m_ADDR;
//Member variables
I2C m_I2C;
ISL1208 Real Time Clock