Arduino version , update and tested on NUCLEO-L073RZ

Dependencies:   mbed

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers main.cpp Source File

main.cpp

Go to the documentation of this file.
00001 /** \file main.cpp ******************************************************
00002 *
00003 * Project: MAXREFDES117#
00004 * Filename: main.cpp
00005 * Description: This module contains the Main application for the MAXREFDES117 example program.
00006 *
00007 *
00008 * --------------------------------------------------------------------
00009 *
00010 * This code follows the following naming conventions:
00011 *
00012 * char              ch_pmod_value
00013 * char (array)      s_pmod_s_string[16]
00014 * float             f_pmod_value
00015 * int32_t           n_pmod_value
00016 * int32_t (array)   an_pmod_value[16]
00017 * int16_t           w_pmod_value
00018 * int16_t (array)   aw_pmod_value[16]
00019 * uint16_t          uw_pmod_value
00020 * uint16_t (array)  auw_pmod_value[16]
00021 * uint8_t           uch_pmod_value
00022 * uint8_t (array)   auch_pmod_buffer[16]
00023 * uint32_t          un_pmod_value
00024 * int32_t *         pn_pmod_value
00025 *
00026 * ------------------------------------------------------------------------- */
00027 /*******************************************************************************
00028 * Copyright (C) 2016 Maxim Integrated Products, Inc., All Rights Reserved.
00029 *
00030 * Permission is hereby granted, free of charge, to any person obtaining a
00031 * copy of this software and associated documentation files (the "Software"),
00032 * to deal in the Software without restriction, including without limitation
00033 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
00034 * and/or sell copies of the Software, and to permit persons to whom the
00035 * Software is furnished to do so, subject to the following conditions:
00036 *
00037 * The above copyright notice and this permission notice shall be included
00038 * in all copies or substantial portions of the Software.
00039 *
00040 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
00041 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
00042 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
00043 * IN NO EVENT SHALL MAXIM INTEGRATED BE LIABLE FOR ANY CLAIM, DAMAGES
00044 * OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
00045 * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
00046 * OTHER DEALINGS IN THE SOFTWARE.
00047 *
00048 * Except as contained in this notice, the name of Maxim Integrated
00049 * Products, Inc. shall not be used except as stated in the Maxim Integrated
00050 * Products, Inc. Branding Policy.
00051 *
00052 * The mere transfer of this software does not imply any licenses
00053 * of trade secrets, proprietary technology, copyrights, patents,
00054 * trademarks, maskwork rights, or any other form of intellectual
00055 * property whatsoever. Maxim Integrated Products, Inc. retains all
00056 * ownership rights.
00057 *******************************************************************************
00058 */
00059 /*!\mainpage Main Page
00060 *
00061 * \section intro_sec Introduction
00062 *
00063 * This is the code documentation for the MAXREFDES117# subsystem reference design.
00064 * 
00065 *  The Files page contains the File List page and the Globals page.
00066 * 
00067 *  The Globals page contains the Functions, Variables, and Macros sub-pages.
00068 *
00069 * \image html MAXREFDES117_Block_Diagram.png "MAXREFDES117# System Block Diagram"
00070 * 
00071 * \image html MAXREFDES117_firmware_Flowchart.png "MAXREFDES117# Firmware Flowchart"
00072 *
00073 */
00074 
00075 // STM32 NUCLEAO-F411RE adaptation C.Dupaty 07-2017
00076 
00077 #include "mbed.h"
00078 #include "algorithm.h"
00079 #include "MAX30102.h"
00080 
00081 #define MAX_BRIGHTNESS 255
00082 
00083 uint32_t aun_ir_buffer[500]; //IR LED sensor data
00084 int32_t n_ir_buffer_length;    //data length
00085 uint32_t aun_red_buffer[500];    //Red LED sensor data
00086 int32_t n_sp02; //SPO2 value
00087 int8_t ch_spo2_valid;   //indicator to show if the SP02 calculation is valid
00088 int32_t n_heart_rate;   //heart rate value
00089 int8_t  ch_hr_valid;    //indicator to show if the heart rate calculation is valid
00090 uint8_t uch_dummy;
00091 
00092 Serial pc(USBTX, USBRX);    //initializes the serial port
00093 
00094 // STM32 version
00095 
00096 PwmOut led(LED1);    //initializes the pwm output that connects to the on board LED
00097 DigitalIn INT(PA_0);  //pin PA_0 connects to the interrupt output pin of the MAX30102
00098                       // interrupt not use here, polling !
00099 void touche(void)
00100 {
00101      //wait until the user presses a key
00102     while(pc.readable()==0)
00103     {
00104         pc.printf("Press any key to continue\n\r");
00105         wait(1);
00106     }
00107     uch_dummy=getchar();
00108 }
00109 
00110 // the setup routine runs once when you press reset:
00111 int main() { 
00112     uint32_t un_min, un_max, un_prev_data;  //variables to calculate the on-board LED brightness that reflects the heartbeats
00113     int i;
00114     int32_t n_brightness;
00115     float f_temp;
00116     float pulse;
00117     
00118     maxim_max30102_reset(); //resets the MAX30102
00119     // initialize serial communication at 115200 bits per second:
00120     pc.baud(115200);
00121     pc.format(8,SerialBase::None,1);
00122     pc.printf("\x1B[2J");  //clear terminal program screen
00123     pc.printf("-------- TEST MAXREFDES117# -----------\n\r");
00124     pc.printf("-----  Version STM32-NUCLEO -----------\n\r");
00125     pc.printf("---------------------------------------\n\r");
00126     wait(1);
00127     touche();
00128     //read and clear status register
00129     maxim_max30102_read_reg(0,&uch_dummy);
00130     maxim_max30102_init();  //initializes the MAX30102
00131     n_brightness=0;
00132     un_min=0x3FFFF;
00133     un_max=0;
00134   
00135     n_ir_buffer_length=500; //buffer length of 100 stores 5 seconds of samples running at 100sps
00136     
00137     //read the first 500 samples, and determine the signal range
00138     for(i=0;i<n_ir_buffer_length;i++)
00139     {
00140         while(INT.read()==1);   //wait until the interrupt pin asserts
00141         
00142         maxim_max30102_read_fifo((aun_red_buffer+i), (aun_ir_buffer+i));  //read from MAX30102 FIFO
00143             
00144         if(un_min>aun_red_buffer[i])
00145             un_min=aun_red_buffer[i];    //update signal min
00146         if(un_max<aun_red_buffer[i])
00147             un_max=aun_red_buffer[i];    //update signal max
00148         pc.printf("red=");
00149         pc.printf("%i", aun_red_buffer[i]);
00150         pc.printf(", ir=");
00151         pc.printf("%i\n\r", aun_ir_buffer[i]);
00152     }
00153     un_prev_data=aun_red_buffer[i];
00154     
00155     
00156     //calculate heart rate and SpO2 after first 500 samples (first 5 seconds of samples)
00157     maxim_heart_rate_and_oxygen_saturation(aun_ir_buffer, n_ir_buffer_length, aun_red_buffer, &n_sp02, &ch_spo2_valid, &n_heart_rate, &ch_hr_valid); 
00158     
00159     //Continuously taking samples from MAX30102.  Heart rate and SpO2 are calculated every 1 second
00160     while(1)
00161     {
00162         i=0;
00163         un_min=0x3FFFF;
00164         un_max=0;
00165         
00166         //dumping the first 100 sets of samples in the memory and shift the last 400 sets of samples to the top
00167         for(i=100;i<500;i++)
00168         {
00169             aun_red_buffer[i-100]=aun_red_buffer[i];
00170             aun_ir_buffer[i-100]=aun_ir_buffer[i];
00171             
00172             //update the signal min and max
00173             if(un_min>aun_red_buffer[i])
00174             un_min=aun_red_buffer[i];
00175             if(un_max<aun_red_buffer[i])
00176             un_max=aun_red_buffer[i];
00177         }
00178         
00179         //take 100 sets of samples before calculating the heart rate.
00180         for(i=400;i<500;i++)
00181         {
00182             un_prev_data=aun_red_buffer[i-1];
00183             while(INT.read()==1);
00184             maxim_max30102_read_fifo((aun_red_buffer+i), (aun_ir_buffer+i));
00185         
00186             if(aun_red_buffer[i]>un_prev_data)
00187             {
00188                 f_temp=aun_red_buffer[i]-un_prev_data;
00189                 f_temp/=(un_max-un_min);
00190                 f_temp*=MAX_BRIGHTNESS;
00191                 n_brightness-=(int)f_temp;
00192                 if(n_brightness<0)
00193                     n_brightness=0;
00194             }
00195             else
00196             {
00197                 f_temp=un_prev_data-aun_red_buffer[i];
00198                 f_temp/=(un_max-un_min);
00199                 f_temp*=MAX_BRIGHTNESS;
00200                 n_brightness+=(int)f_temp;
00201                 if(n_brightness>MAX_BRIGHTNESS)
00202                     n_brightness=MAX_BRIGHTNESS;
00203             }
00204 
00205             pulse=1-(float)n_brightness/256;
00206             led.write(pulse);
00207           
00208              //send samples and calculation result to terminal program through UART
00209             pc.printf("red=%i\t", aun_red_buffer[i]);
00210             pc.printf("ir=%i\t", aun_ir_buffer[i]);
00211             pc.printf("HR=%i\t", n_heart_rate); 
00212             pc.printf("HROK=%i\t", ch_hr_valid);
00213             pc.printf("SpO2=%i\t", n_sp02);
00214             pc.printf("SPO2OK=%i\n\r", ch_spo2_valid);
00215         }
00216         maxim_heart_rate_and_oxygen_saturation(aun_ir_buffer, n_ir_buffer_length, aun_red_buffer, &n_sp02, &ch_spo2_valid, &n_heart_rate, &ch_hr_valid); 
00217        // touche();
00218     }
00219 }
00220