Host software for the MAX30001 ECG, PACE, biopotential, bioimpedance, R-to-R peak sensor. Hosted on the MAX32630FTHR.

Dependencies:   SDFileSystem USBDevice max32630fthr

Fork of MAX30001 SYS EvKit by Emre Eken

MAX30001-MAX32630FTHR ECG Evaluation System

The MAX30001 EVKIT SYS-MBED Evaluation System (EV System) is used to evaluates the MAX30001 sensor, which is an ECG (electrocardiogram), biopotential and bioimpedance analog front end solution for wearable applications. The full evaluation system consists of the MAX32630FTHR board, MAX30001 EVKIT sensor board and the evaluation software. The evaluation kit features ECG, PACE, R-to-R (R-peak timing) detection; bioimpedance (BioZ) AFE; and raw data logging.

The MAX30001 EVKIT evaluation system is assembled, tested and contains the necessary circuitry and connections to evaluate the MAX30001 ECG sensor.

When evaluated as an evaluation system, the MAX32630FTHR board provides the necessary logic rails, master clock, SPI, USB-to-Serial interfaces that are needed to evaluate the MAX30001 sensor board. MAX32630FTHR can be used as an independent development platform.

Communication between the PC and the MAX32630FTHR board is facilitated by a Windows 7, Windows 8 and Windows 10 compatible software that provides a simple and intuitive graphical user interface (GUI).

For more information, visit the wiki pages by clicking the wiki tab above and MAX30001EVSYS product page.

C++ source code, library for the MAX30001 ECG drivers are in the links at the bottom of this page. The sample code includes the ability to log data to the SD card of the MAX32630FTHR.

MAX30001 EVKIT Pinout Connections

/media/uploads/EmreE/max30001_sensor_board_connector_pinout.png

Where to Buy

MAX30001EVSYS-Buy

Committer:
Emre.Eken
Date:
Tue Jul 24 15:22:35 2018 +0300
Revision:
13:6031b0bd9773
Parent:
0:8e4630a71eb1
.hgtags is added.

Who changed what in which revision?

UserRevisionLine numberNew contents of line
Emre.Eken@IST-LT-35101.maxim-ic.internal 0:8e4630a71eb1 1 #ifndef _LOGGING_H_
Emre.Eken@IST-LT-35101.maxim-ic.internal 0:8e4630a71eb1 2 #define _LOGGING_H_
Emre.Eken@IST-LT-35101.maxim-ic.internal 0:8e4630a71eb1 3
Emre.Eken@IST-LT-35101.maxim-ic.internal 0:8e4630a71eb1 4 #include "mbed.h"
Emre.Eken@IST-LT-35101.maxim-ic.internal 0:8e4630a71eb1 5
Emre.Eken@IST-LT-35101.maxim-ic.internal 0:8e4630a71eb1 6 /**
Emre.Eken@IST-LT-35101.maxim-ic.internal 0:8e4630a71eb1 7 * @brief This will read the mission location and if there is something valid,
Emre.Eken@IST-LT-35101.maxim-ic.internal 0:8e4630a71eb1 8 * then run the Logging_ProcessMissionCmds()
Emre.Eken@IST-LT-35101.maxim-ic.internal 0:8e4630a71eb1 9 * @param cmdBuffer buffer
Emre.Eken@IST-LT-35101.maxim-ic.internal 0:8e4630a71eb1 10 */
Emre.Eken@IST-LT-35101.maxim-ic.internal 0:8e4630a71eb1 11 uint32_t Logging_IsMissionDefined(uint8_t *cmdBuffer);
Emre.Eken@IST-LT-35101.maxim-ic.internal 0:8e4630a71eb1 12
Emre.Eken@IST-LT-35101.maxim-ic.internal 0:8e4630a71eb1 13 int8_t Logging_ReadMissionFromSDCard(uint8_t *buffer);
Emre.Eken@IST-LT-35101.maxim-ic.internal 0:8e4630a71eb1 14
Emre.Eken@IST-LT-35101.maxim-ic.internal 0:8e4630a71eb1 15 int8_t Logging_ReadMissionFromFlash(uint8_t *buffer);
Emre.Eken@IST-LT-35101.maxim-ic.internal 0:8e4630a71eb1 16
Emre.Eken@IST-LT-35101.maxim-ic.internal 0:8e4630a71eb1 17 // return the page where mission is defined, Mission specific
Emre.Eken@IST-LT-35101.maxim-ic.internal 0:8e4630a71eb1 18 uint32_t Logging_GetMissionStartPage(void);
Emre.Eken@IST-LT-35101.maxim-ic.internal 0:8e4630a71eb1 19
Emre.Eken@IST-LT-35101.maxim-ic.internal 0:8e4630a71eb1 20 // return the page where the mission definition ends, Mission specific
Emre.Eken@IST-LT-35101.maxim-ic.internal 0:8e4630a71eb1 21 uint32_t Logging_GetMissionEndPage(void);
Emre.Eken@IST-LT-35101.maxim-ic.internal 0:8e4630a71eb1 22
Emre.Eken@IST-LT-35101.maxim-ic.internal 0:8e4630a71eb1 23 // Returns the location where the Writing can start from, for data logging...
Emre.Eken@IST-LT-35101.maxim-ic.internal 0:8e4630a71eb1 24 uint32_t Logging_GetLoggingStartPage(void);
Emre.Eken@IST-LT-35101.maxim-ic.internal 0:8e4630a71eb1 25
Emre.Eken@IST-LT-35101.maxim-ic.internal 0:8e4630a71eb1 26 // Returns the end location available where the Flash ends essentially.... for
Emre.Eken@IST-LT-35101.maxim-ic.internal 0:8e4630a71eb1 27 // data logging.
Emre.Eken@IST-LT-35101.maxim-ic.internal 0:8e4630a71eb1 28 uint32_t Logging_GetLoggingEndPage(void);
Emre.Eken@IST-LT-35101.maxim-ic.internal 0:8e4630a71eb1 29
Emre.Eken@IST-LT-35101.maxim-ic.internal 0:8e4630a71eb1 30 // returns one if the usb is connected, zero if not
Emre.Eken@IST-LT-35101.maxim-ic.internal 0:8e4630a71eb1 31 uint32_t Usb_IsConnected(void);
Emre.Eken@IST-LT-35101.maxim-ic.internal 0:8e4630a71eb1 32
Emre.Eken@IST-LT-35101.maxim-ic.internal 0:8e4630a71eb1 33 void Logging_SetStart(bool state);
Emre.Eken@IST-LT-35101.maxim-ic.internal 0:8e4630a71eb1 34
Emre.Eken@IST-LT-35101.maxim-ic.internal 0:8e4630a71eb1 35 bool Logging_GetStart(void);
Emre.Eken@IST-LT-35101.maxim-ic.internal 0:8e4630a71eb1 36
Emre.Eken@IST-LT-35101.maxim-ic.internal 0:8e4630a71eb1 37 #endif /* _LOGGING_H_ */
Emre.Eken@IST-LT-35101.maxim-ic.internal 0:8e4630a71eb1 38