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 NUnit.Framework;
darienf 20:6d2af70c92ab 38 using HealthSensorPlatform.CustomControls;
darienf 20:6d2af70c92ab 39 using RPCSupport.Streaming;
darienf 20:6d2af70c92ab 40 using System.Windows.Forms;
darienf 20:6d2af70c92ab 41 using System.Collections.Generic;
darienf 20:6d2af70c92ab 42 using System.Linq;
darienf 20:6d2af70c92ab 43 using System.Text;
darienf 20:6d2af70c92ab 44 using System.Threading.Tasks;
darienf 20:6d2af70c92ab 45
darienf 20:6d2af70c92ab 46 using HealthSensorPlatform.Presenter;
darienf 20:6d2af70c92ab 47
darienf 20:6d2af70c92ab 48 namespace EcgViewTest
darienf 20:6d2af70c92ab 49 {
darienf 20:6d2af70c92ab 50 [TestFixture]
darienf 20:6d2af70c92ab 51 public partial class EcgTest
darienf 20:6d2af70c92ab 52 {
darienf 20:6d2af70c92ab 53 /*
darienf 20:6d2af70c92ab 54 [Test]
darienf 20:6d2af70c92ab 55 public void CalculationTest()
darienf 20:6d2af70c92ab 56 {
darienf 20:6d2af70c92ab 57 double[] result;
darienf 20:6d2af70c92ab 58
darienf 20:6d2af70c92ab 59 Form form = new Form();
darienf 20:6d2af70c92ab 60 EcgView ecgView = new EcgView();
darienf 20:6d2af70c92ab 61 int[] ecgData = new int[] { 0, 1000 << 6, 226759, 159111, 8388544, 8388608};
darienf 20:6d2af70c92ab 62
darienf 20:6d2af70c92ab 63 form.Controls.Add(ecgView);
darienf 20:6d2af70c92ab 64 result = ecgView.UpdateChart(EcgView.StreamDataType.Ecg, ecgData);
darienf 20:6d2af70c92ab 65
darienf 20:6d2af70c92ab 66 // millivolts
darienf 20:6d2af70c92ab 67 Assert.AreEqual(0, result[0], 1e-3);
darienf 20:6d2af70c92ab 68 Assert.AreEqual(0.38147, result[1], 1e-3);
darienf 20:6d2af70c92ab 69 Assert.AreEqual(1.351547, result[2], 1e-3);
darienf 20:6d2af70c92ab 70 Assert.AreEqual(0.948334, result[3], 1e-2);
darienf 20:6d2af70c92ab 71 Assert.AreEqual(49.99962, result[4], 1e-2);
darienf 20:6d2af70c92ab 72 Assert.AreEqual(-50, result[5], 1e-2);
darienf 20:6d2af70c92ab 73 }
darienf 20:6d2af70c92ab 74
darienf 20:6d2af70c92ab 75 [Test]
darienf 20:6d2af70c92ab 76 public void CalculationTest1()
darienf 20:6d2af70c92ab 77 {
darienf 20:6d2af70c92ab 78 double[] result;
darienf 20:6d2af70c92ab 79
darienf 20:6d2af70c92ab 80 Form form = new Form();
darienf 20:6d2af70c92ab 81 EcgView ecgView = new EcgView();
darienf 20:6d2af70c92ab 82 int[] ecgData = new int[] { 226759, 159111, 8388544, 8388608 };
darienf 20:6d2af70c92ab 83
darienf 20:6d2af70c92ab 84 form.Controls.Add(ecgView);
darienf 20:6d2af70c92ab 85 result = ecgView.UpdateChart(EcgView.StreamDataType.Ecg, ecgData);
darienf 20:6d2af70c92ab 86
darienf 20:6d2af70c92ab 87 // milliovolts
darienf 20:6d2af70c92ab 88 Assert.AreEqual(1.351547, result[0], 1e-3);
darienf 20:6d2af70c92ab 89
darienf 20:6d2af70c92ab 90 }
darienf 20:6d2af70c92ab 91 */
darienf 20:6d2af70c92ab 92
darienf 20:6d2af70c92ab 93 [Test]
darienf 20:6d2af70c92ab 94 public void EcgCalculationTest()
darienf 20:6d2af70c92ab 95 {
darienf 20:6d2af70c92ab 96 EcgView ecgView = new EcgView();
darienf 20:6d2af70c92ab 97 StreamPresenter sp = new StreamPresenter(ecgView);
darienf 20:6d2af70c92ab 98 double[] result;
darienf 20:6d2af70c92ab 99 int[] ecgData = new int[] { 0 | 7, 1000 << 6 | 7, 226759, 159119 | 7, 8388547 | 7, 8388607 | 7 };
darienf 20:6d2af70c92ab 100
darienf 20:6d2af70c92ab 101 result = sp.ProcessEcg(ecgData);
darienf 20:6d2af70c92ab 102
darienf 20:6d2af70c92ab 103 // millivolts
darienf 20:6d2af70c92ab 104 Assert.AreEqual(0, result[0], 1e-3);
darienf 20:6d2af70c92ab 105 Assert.AreEqual(ecgEquation(ecgData[1] >> 6), result[1], 1e-3);
darienf 20:6d2af70c92ab 106 Assert.AreEqual(ecgEquation(ecgData[2] >> 6), result[2], 1e-3);
darienf 20:6d2af70c92ab 107 Assert.AreEqual(ecgEquation(ecgData[3] >> 6), result[3], 1e-2);
darienf 20:6d2af70c92ab 108 Assert.AreEqual(ecgEquation(ecgData[4] >> 6), result[4], 1e-2);
darienf 20:6d2af70c92ab 109 Assert.AreEqual(ecgEquation(ecgData[5] >> 6), result[5], 1e-2);
darienf 20:6d2af70c92ab 110 }
darienf 20:6d2af70c92ab 111
darienf 20:6d2af70c92ab 112 double ecgEquation(double data)
darienf 20:6d2af70c92ab 113 {
darienf 20:6d2af70c92ab 114 return 1000 * 7.62939453125e-6 * data / 20;
darienf 20:6d2af70c92ab 115 }
darienf 20:6d2af70c92ab 116
darienf 20:6d2af70c92ab 117 /*
darienf 20:6d2af70c92ab 118
darienf 20:6d2af70c92ab 119 [TestCase(0x80, 60)]
darienf 20:6d2af70c92ab 120 [TestCase(0xff, 30.118)]
darienf 20:6d2af70c92ab 121 [TestCase(0x01, 7680)]
darienf 20:6d2af70c92ab 122 [TestCase(0xaa, 45.176)]
darienf 20:6d2af70c92ab 123 public void RToRCalculationTest(int rToR, double bpm)
darienf 20:6d2af70c92ab 124 {
darienf 20:6d2af70c92ab 125 double result;
darienf 20:6d2af70c92ab 126
darienf 20:6d2af70c92ab 127 EcgView ecgView = new EcgView();
darienf 20:6d2af70c92ab 128 InitArgs.EcgInitStart ecgInit = new InitArgs.EcgInitStart();
darienf 20:6d2af70c92ab 129
darienf 20:6d2af70c92ab 130 ecgView.ecgArgs = ecgInit;
darienf 20:6d2af70c92ab 131
darienf 20:6d2af70c92ab 132 result = ecgView.RToRBeatsPerMinute(rToR);
darienf 20:6d2af70c92ab 133
darienf 20:6d2af70c92ab 134 Assert.AreEqual(bpm, result, 1e-2);
darienf 20:6d2af70c92ab 135 }
darienf 20:6d2af70c92ab 136
darienf 20:6d2af70c92ab 137 [TestCase(0x80, 58.594)]
darienf 20:6d2af70c92ab 138 [TestCase(0xff, 29.412)]
darienf 20:6d2af70c92ab 139 [TestCase(0x01, 7500)]
darienf 20:6d2af70c92ab 140 [TestCase(0xaa, 44.1176)]
darienf 20:6d2af70c92ab 141 public void RToRCalculationTest1(int rToR, double bpm)
darienf 20:6d2af70c92ab 142 {
darienf 20:6d2af70c92ab 143 double result;
darienf 20:6d2af70c92ab 144
darienf 20:6d2af70c92ab 145 EcgView ecgView = new EcgView();
darienf 20:6d2af70c92ab 146 InitArgs.EcgInitStart ecgInit = new InitArgs.EcgInitStart();
darienf 20:6d2af70c92ab 147
darienf 20:6d2af70c92ab 148 ecgView.ecgArgs = ecgInit;
darienf 20:6d2af70c92ab 149
darienf 20:6d2af70c92ab 150 ecgView.FrequencyMasterField = 1;
darienf 20:6d2af70c92ab 151
darienf 20:6d2af70c92ab 152 result = ecgView.RToRBeatsPerMinute(rToR);
darienf 20:6d2af70c92ab 153
darienf 20:6d2af70c92ab 154 Assert.AreEqual(bpm, result, 1e-2);
darienf 20:6d2af70c92ab 155 }
darienf 20:6d2af70c92ab 156
darienf 20:6d2af70c92ab 157 [TestCase(0x80, 58.594)]
darienf 20:6d2af70c92ab 158 [TestCase(0xff, 29.412)]
darienf 20:6d2af70c92ab 159 [TestCase(0x01, 7500)]
darienf 20:6d2af70c92ab 160 [TestCase(0xaa, 44.1176)]
darienf 20:6d2af70c92ab 161 public void RToRCalculationTest2(int rToR, double bpm)
darienf 20:6d2af70c92ab 162 {
darienf 20:6d2af70c92ab 163 double result;
darienf 20:6d2af70c92ab 164
darienf 20:6d2af70c92ab 165 EcgView ecgView = new EcgView();
darienf 20:6d2af70c92ab 166 InitArgs.EcgInitStart ecgInit = new InitArgs.EcgInitStart();
darienf 20:6d2af70c92ab 167
darienf 20:6d2af70c92ab 168 ecgView.ecgArgs = ecgInit;
darienf 20:6d2af70c92ab 169
darienf 20:6d2af70c92ab 170 ecgView.FrequencyMasterField = 2;
darienf 20:6d2af70c92ab 171
darienf 20:6d2af70c92ab 172 result = ecgView.RToRBeatsPerMinute(rToR);
darienf 20:6d2af70c92ab 173
darienf 20:6d2af70c92ab 174 Assert.AreEqual(bpm, result, 1e-2);
darienf 20:6d2af70c92ab 175 }
darienf 20:6d2af70c92ab 176
darienf 20:6d2af70c92ab 177 [TestCase(0x80, 58.535)]
darienf 20:6d2af70c92ab 178 [TestCase(0xff, 29.382)]
darienf 20:6d2af70c92ab 179 [TestCase(0x01, 7492.5)]
darienf 20:6d2af70c92ab 180 [TestCase(0xaa, 44.0735)]
darienf 20:6d2af70c92ab 181 public void RToRCalculationTest3(int rToR, double bpm)
darienf 20:6d2af70c92ab 182 {
darienf 20:6d2af70c92ab 183 double result;
darienf 20:6d2af70c92ab 184
darienf 20:6d2af70c92ab 185 EcgView ecgView = new EcgView();
darienf 20:6d2af70c92ab 186 InitArgs.EcgInitStart ecgInit = new InitArgs.EcgInitStart();
darienf 20:6d2af70c92ab 187
darienf 20:6d2af70c92ab 188 ecgView.ecgArgs = ecgInit;
darienf 20:6d2af70c92ab 189
darienf 20:6d2af70c92ab 190 ecgView.FrequencyMasterField = 3;
darienf 20:6d2af70c92ab 191
darienf 20:6d2af70c92ab 192 result = ecgView.RToRBeatsPerMinute(rToR);
darienf 20:6d2af70c92ab 193
darienf 20:6d2af70c92ab 194 Assert.AreEqual(bpm, result, 1e-2);
darienf 20:6d2af70c92ab 195 }
darienf 20:6d2af70c92ab 196 */
darienf 20:6d2af70c92ab 197 }
darienf 20:6d2af70c92ab 198 }