repo time

Dependencies:   mbed MAX14720 MAX30205 USBDevice

Committer:
darienf
Date:
Tue Apr 06 06:41:40 2021 +0000
Revision:
20:6d2af70c92ab
another repo

Who changed what in which revision?

UserRevisionLine numberNew contents of line
darienf 20:6d2af70c92ab 1 /*******************************************************************************
darienf 20:6d2af70c92ab 2 * Copyright (C) 2016 Maxim Integrated Products, Inc., All rights Reserved.
darienf 20:6d2af70c92ab 3 *
darienf 20:6d2af70c92ab 4 * This software is protected by copyright laws of the United States and
darienf 20:6d2af70c92ab 5 * of foreign countries. This material may also be protected by patent laws
darienf 20:6d2af70c92ab 6 * and technology transfer regulations of the United States and of foreign
darienf 20:6d2af70c92ab 7 * countries. This software is furnished under a license agreement and/or a
darienf 20:6d2af70c92ab 8 * nondisclosure agreement and may only be used or reproduced in accordance
darienf 20:6d2af70c92ab 9 * with the terms of those agreements. Dissemination of this information to
darienf 20:6d2af70c92ab 10 * any party or parties not specified in the license agreement and/or
darienf 20:6d2af70c92ab 11 * nondisclosure agreement is expressly prohibited.
darienf 20:6d2af70c92ab 12 *
darienf 20:6d2af70c92ab 13 * The above copyright notice and this permission notice shall be included
darienf 20:6d2af70c92ab 14 * in all copies or substantial portions of the Software.
darienf 20:6d2af70c92ab 15 *
darienf 20:6d2af70c92ab 16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
darienf 20:6d2af70c92ab 17 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
darienf 20:6d2af70c92ab 18 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
darienf 20:6d2af70c92ab 19 * IN NO EVENT SHALL MAXIM INTEGRATED BE LIABLE FOR ANY CLAIM, DAMAGES
darienf 20:6d2af70c92ab 20 * OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
darienf 20:6d2af70c92ab 21 * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
darienf 20:6d2af70c92ab 22 * OTHER DEALINGS IN THE SOFTWARE.
darienf 20:6d2af70c92ab 23 *
darienf 20:6d2af70c92ab 24 * Except as contained in this notice, the name of Maxim Integrated
darienf 20:6d2af70c92ab 25 * Products, Inc. shall not be used except as stated in the Maxim Integrated
darienf 20:6d2af70c92ab 26 * Products, Inc. Branding Policy.
darienf 20:6d2af70c92ab 27 *
darienf 20:6d2af70c92ab 28 * The mere transfer of this software does not imply any licenses
darienf 20:6d2af70c92ab 29 * of trade secrets, proprietary technology, copyrights, patents,
darienf 20:6d2af70c92ab 30 * trademarks, maskwork rights, or any other form of intellectual
darienf 20:6d2af70c92ab 31 * property whatsoever. Maxim Integrated Products, Inc. retains all
darienf 20:6d2af70c92ab 32 * ownership rights.
darienf 20:6d2af70c92ab 33 *******************************************************************************
darienf 20:6d2af70c92ab 34 */
darienf 20:6d2af70c92ab 35
darienf 20:6d2af70c92ab 36 using System;
darienf 20:6d2af70c92ab 37 using System.Collections.Generic;
darienf 20:6d2af70c92ab 38 using System.Linq;
darienf 20:6d2af70c92ab 39 using System.Text;
darienf 20:6d2af70c92ab 40
darienf 20:6d2af70c92ab 41 using Maxim.MAX30101GUI;
darienf 20:6d2af70c92ab 42 using HealthSensorPlatform.View;
darienf 20:6d2af70c92ab 43 using HealthSensorPlatform.CustomControls;
darienf 20:6d2af70c92ab 44 using RPCSupport;
darienf 20:6d2af70c92ab 45 using RPCSupport.Streaming;
darienf 20:6d2af70c92ab 46
darienf 20:6d2af70c92ab 47 namespace HealthSensorPlatform.Presenter
darienf 20:6d2af70c92ab 48 {
darienf 20:6d2af70c92ab 49 class OpticalAlgorithmPresenter
darienf 20:6d2af70c92ab 50 {
darienf 20:6d2af70c92ab 51 private MaximAlgorithmClass algorithm;
darienf 20:6d2af70c92ab 52 private IOpticalAlgorithmView view;
darienf 20:6d2af70c92ab 53
darienf 20:6d2af70c92ab 54 private bool streaming;
darienf 20:6d2af70c92ab 55 private int count;
darienf 20:6d2af70c92ab 56
darienf 20:6d2af70c92ab 57 private bool validRed = false;
darienf 20:6d2af70c92ab 58 private bool validGreen = false;
darienf 20:6d2af70c92ab 59 private bool validIR = false;
darienf 20:6d2af70c92ab 60
darienf 20:6d2af70c92ab 61 public OpticalAlgorithmPresenter(RPCClient rpcClient, MaximAlgorithmClass algorithm, IOpticalAlgorithmView view)
darienf 20:6d2af70c92ab 62 {
darienf 20:6d2af70c92ab 63 this.algorithm = algorithm;
darienf 20:6d2af70c92ab 64 this.view = view;
darienf 20:6d2af70c92ab 65
darienf 20:6d2af70c92ab 66 //((OpticalView)view).StreamingStartStop += new OpticalView.StreamingStartStopEventHandler(OnStreamingStartStop);
darienf 20:6d2af70c92ab 67 ((OpticalView)view).StreamingStartStop += new EventHandler<StreamingStartStopEventArgs>(OnStreamingStartStop);
darienf 20:6d2af70c92ab 68 rpcClient.streaming.PartialArrayIntAvailable += new EventHandler<PartialArrayIntAvailableEventArgs>(OnPartialArrayIntAvaible);
darienf 20:6d2af70c92ab 69 algorithm.OnHeartRateSpO2dataAvailable += OnHeartRateSpO2DataAvailable; // view.DisplayAlgorithmResult;
darienf 20:6d2af70c92ab 70 }
darienf 20:6d2af70c92ab 71
darienf 20:6d2af70c92ab 72 public void OnHeartRateSpO2DataAvailable(double heartRateBPM, bool heartRateBPMValid, double heartRateBPMSignalStrength,
darienf 20:6d2af70c92ab 73 double spO2Percent, bool spO2PercentValid, double spO2PercentSignalStrength)
darienf 20:6d2af70c92ab 74 {
darienf 20:6d2af70c92ab 75 view.DisplayAlgorithmResult(heartRateBPM, heartRateBPMValid, heartRateBPMSignalStrength,
darienf 20:6d2af70c92ab 76 spO2Percent, spO2PercentValid, spO2PercentSignalStrength);
darienf 20:6d2af70c92ab 77 }
darienf 20:6d2af70c92ab 78
darienf 20:6d2af70c92ab 79 public void OnStreamingStartStop(object sender, StreamingStartStopEventArgs e)
darienf 20:6d2af70c92ab 80 {
darienf 20:6d2af70c92ab 81 streaming = e.state;
darienf 20:6d2af70c92ab 82 count = 0;
darienf 20:6d2af70c92ab 83 if (streaming)
darienf 20:6d2af70c92ab 84 {
darienf 20:6d2af70c92ab 85 algorithm.Clear();
darienf 20:6d2af70c92ab 86 view.DisplayAlgorithmReset();
darienf 20:6d2af70c92ab 87 switch (((OpticalView)view).ModeConfiguration)
darienf 20:6d2af70c92ab 88 {
darienf 20:6d2af70c92ab 89 case OpticalView.eStreamMode.eHR:
darienf 20:6d2af70c92ab 90 validRed = true;
darienf 20:6d2af70c92ab 91 validIR = false;
darienf 20:6d2af70c92ab 92 validGreen = false;
darienf 20:6d2af70c92ab 93 break;
darienf 20:6d2af70c92ab 94 case OpticalView.eStreamMode.eSPO2:
darienf 20:6d2af70c92ab 95 validRed = true;
darienf 20:6d2af70c92ab 96 validIR = true;
darienf 20:6d2af70c92ab 97 validGreen = false;
darienf 20:6d2af70c92ab 98 break;
darienf 20:6d2af70c92ab 99 case OpticalView.eStreamMode.eMulti:
darienf 20:6d2af70c92ab 100 validRed = true;
darienf 20:6d2af70c92ab 101 validIR = true;
darienf 20:6d2af70c92ab 102 validGreen = true;
darienf 20:6d2af70c92ab 103 break;
darienf 20:6d2af70c92ab 104 }
darienf 20:6d2af70c92ab 105 }
darienf 20:6d2af70c92ab 106 }
darienf 20:6d2af70c92ab 107
darienf 20:6d2af70c92ab 108 public void OnPartialArrayIntAvaible(object sender, PartialArrayIntAvailableEventArgs e)
darienf 20:6d2af70c92ab 109 {
darienf 20:6d2af70c92ab 110 int numSamples;
darienf 20:6d2af70c92ab 111
darienf 20:6d2af70c92ab 112 if (streaming)
darienf 20:6d2af70c92ab 113 {
darienf 20:6d2af70c92ab 114 if ((e.reportID & 0xF0) == PartialArrayIntAvailableEventArgs.PACKET_MAX30101)
darienf 20:6d2af70c92ab 115 {
darienf 20:6d2af70c92ab 116 numSamples = e.array1.Length;
darienf 20:6d2af70c92ab 117
darienf 20:6d2af70c92ab 118 for (int i = 0; i < numSamples; i++)
darienf 20:6d2af70c92ab 119 {
darienf 20:6d2af70c92ab 120 int red = 0, ir = 0, green = 0;
darienf 20:6d2af70c92ab 121
darienf 20:6d2af70c92ab 122 if (e.array1.Length != 0)
darienf 20:6d2af70c92ab 123 {
darienf 20:6d2af70c92ab 124 red = e.array1[i];
darienf 20:6d2af70c92ab 125 }
darienf 20:6d2af70c92ab 126 if (e.array2.Length != 0)
darienf 20:6d2af70c92ab 127 {
darienf 20:6d2af70c92ab 128 ir = e.array2[i];
darienf 20:6d2af70c92ab 129 }
darienf 20:6d2af70c92ab 130 if (e.array3.Length != 0)
darienf 20:6d2af70c92ab 131 {
darienf 20:6d2af70c92ab 132 green = e.array3[i];
darienf 20:6d2af70c92ab 133 }
darienf 20:6d2af70c92ab 134
darienf 20:6d2af70c92ab 135 algorithm.ConsumeRedIRGreenLEDdata(count, ir, red, green, validIR, validRed, validGreen);
darienf 20:6d2af70c92ab 136 count++;
darienf 20:6d2af70c92ab 137 }
darienf 20:6d2af70c92ab 138 }
darienf 20:6d2af70c92ab 139 }
darienf 20:6d2af70c92ab 140 }
darienf 20:6d2af70c92ab 141 }
darienf 20:6d2af70c92ab 142 }