Example Host software for integration of MAX3266x chips (, MAX32664GWEB) equipped with Heart Rate from Wrist Algorithm. This is “stand-alone” software that runs on the MAX32630 low-power microcontroller to display heart rate on the display of the MAXREFDES101 reference design. It is intended provide a simple example of how to initialize and communicate with the sensor hub. Windows and Android communications are not supported.

Dependencies:   Maxim_Sensor_Hub_Communications BMI160 whrmDemoUI max32630hsp3

Fork of Host_Software_MAX32664GWEB_HR_wrist by mehmet gok

Revision:
14:b2e4b71a9980
Parent:
13:3d1a6b947396
Child:
15:c1d7fdf5d55a
diff -r 3d1a6b947396 -r b2e4b71a9980 demoUI/screen/LCDSettings.h
--- a/demoUI/screen/LCDSettings.h	Thu Jan 10 11:06:01 2019 +0300
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,29 +0,0 @@
-#ifndef LCDSETTINGS_H
-#define LCDSETTINGS_H
-
-/** MemoryLCD width in pixels */ 
-#define DISPLAY_WIDTH				(128)
-
-/** MemoryLCD height in pixels */
-#define DISPLAY_HEIGHT				(128)
-
-/** Data type for storing buffer the pixel buffer */
-#if	((DISPLAY_WIDTH % 32) == 0)
-#define	DISPLAY_BUFFER_TYPE			uint32_t
-#define DISPLAY_BUFFER_TYPE_MASK    (0x1F)
-#else
-#define DISPLAY_BUFFER_TYPE			uint8_t
-#define DISPLAY_BUFFER_TYPE_MASK    (0x07)
-#endif
-
-#define DISPLAY_BUFFER_TYPE_SIZE	(sizeof(DISPLAY_BUFFER_TYPE) * 8)
-#define DISPLAY_BUFFER_ELEMENTS 	((DISPLAY_WIDTH*DISPLAY_HEIGHT)/DISPLAY_BUFFER_TYPE_SIZE)
-
-/** Maximum length of a printf to the display */
-#define MAX_PRINTF_CHARS			40
-
-/** Color definitions */
-#define White						0xFFFFFFFF
-#define Black						0x00000000
-
-#endif