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.
Diff: max32630fthr.cpp
- Revision:
- 5:8e424775234a
- Parent:
- 3:09e3dbb49561
- Child:
- 11:e821831283e2
diff -r 09e3dbb49561 -r 8e424775234a max32630fthr.cpp
--- a/max32630fthr.cpp Tue Dec 13 21:28:57 2016 +0000
+++ b/max32630fthr.cpp Fri Dec 16 00:57:36 2016 +0000
@@ -38,11 +38,17 @@
#include "max32630fthr.h"
//******************************************************************************
-MAX32630FTHR::MAX32630FTHR() : i2c(P5_7, P6_0), max14690(&i2c)
+MAX32630FTHR::MAX32630FTHR() : i2c(P5_7, P6_0), max14690(i2c)
{
}
//******************************************************************************
+MAX32630FTHR::MAX32630FTHR(vio_t vio) : i2c(P5_7, P6_0), max14690(i2c)
+{
+ init(vio);
+}
+
+//******************************************************************************
MAX32630FTHR::~MAX32630FTHR()
{
}