MAX32620HSP (MAXREFDES100) RPC Example for Graphical User Interface

Dependencies:   USBDevice

Fork of HSP_Release by Jerry Bradshaw

This is an example program for the MAX32620HSP (MAXREFDES100 Health Sensor Platform). It demonstrates all the features of the platform and works with a companion graphical user interface (GUI) to help evaluate/configure/monitor the board. Go to the MAXREFDES100 product page and click on "design resources" to download the companion software. The GUI connects to the board through an RPC interface on a virtual serial port over the USB interface.

The RPC interface provides access to all the features of the board and is available to interface with other development environments such Matlab. This firmware provides realtime data streaming through the RPC interface over USB, and also provides the ability to log the data to flash for untethered battery operation. The data logging settings are configured through the GUI, and the GUI also provides the interface to download logged data.

Details on the RPC interface can be found here: HSP RPC Interface Documentation

Windows

With this program loaded, the MAX32620HSP will appear on your computer as a serial port. On Mac and Linux, this will happen by default. For Windows, you need to install a driver: HSP serial port windows driver

For more details about this platform and how to use it, see the MAXREFDES100 product page.

Revision:
1:9490836294ea
Parent:
0:e4a10ed6eb92
--- a/HSP/Devices/MAX30205/MAX30205/MAX30205.h	Tue Oct 25 15:22:11 2016 +0000
+++ b/HSP/Devices/MAX30205/MAX30205/MAX30205.h	Fri Apr 21 12:12:30 2017 -0500
@@ -36,45 +36,18 @@
 #include "mbed.h"
 
 /**
- * Driver for the MAX30205 on the HSP Platform
- *
- * @code
- * #include <stdio.h>
- * #include "mbed.h"
- * #include "xxx.h"
- *
- * I2C i2c(I2C_SDA, I2C_SCL);
- * xxx xxx(&i2c);
- *
- * int main(void) {
- *	   printf("Initialized xxx\n");
- *     while(1) {
- *         if (xxx.init() != 0) {
- *             printf("Error communicating with xxx\n");
- *         } else {
- *             printf("Initialized xxx\n");
- *             break;
- *         }
- *         wait(1);
- *     }
- *
- *     while(1) {
- *         printf("");
- *         wait(1);
- *     }
- * }
- * @endcode
+ * @brief Driver for the MAX30205 on the HSP Platform
  */
 
 class MAX30205 {
 public:
-  /// MAX30205 Register Addresses
+  ///< MAX30205 Register Addresses
   typedef enum Registers {
-    MAX30205_Temperature = 0x00,
+    MAX30205_Temperature   = 0x00,
     MAX30205_Configuration = 0x01,
-    MAX30205_THYST = 0x02,
-    MAX30205_TOS = 0x03
-  };
+    MAX30205_THYST         = 0x02,
+    MAX30205_TOS           = 0x03
+  } Registers_t;
 
   /**
   * @brief  Constructor using I2C PinNames
@@ -151,11 +124,17 @@
   float toFahrenheit(float temperatureC);
 
 private:
-  /// I2C pointer
+  /**
+   * @brief I2C pointer
+   */
   I2C *i2c;
-  /// Is this object the owner of the I2C object
+  /**
+   * @brief Is this object the owner of the I2C object
+   */
   bool isOwner;
-  /// Device slave address
+  /**
+   * @brief Device slave address
+   */
   int slaveAddress;
 };