This is the latest working repository used in our demo video for the Maxim to display temperature readings on Bluetooth
hspguisourcev301/HspGuiSourceV301/EcgViewTest/EcgTest.cs@5:bc128a16232f, 2021-05-02 (annotated)
- Committer:
- darienf
- Date:
- Sun May 02 23:09:04 2021 +0000
- Revision:
- 5:bc128a16232f
- Parent:
- 3:36de8b9e4b1a
This is the program that was last used, that has the working temperature and some comments
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
darienf | 3:36de8b9e4b1a | 1 | /******************************************************************************* |
darienf | 3:36de8b9e4b1a | 2 | * Copyright (C) 2016 Maxim Integrated Products, Inc., All rights Reserved. |
darienf | 3:36de8b9e4b1a | 3 | * |
darienf | 3:36de8b9e4b1a | 4 | * This software is protected by copyright laws of the United States and |
darienf | 3:36de8b9e4b1a | 5 | * of foreign countries. This material may also be protected by patent laws |
darienf | 3:36de8b9e4b1a | 6 | * and technology transfer regulations of the United States and of foreign |
darienf | 3:36de8b9e4b1a | 7 | * countries. This software is furnished under a license agreement and/or a |
darienf | 3:36de8b9e4b1a | 8 | * nondisclosure agreement and may only be used or reproduced in accordance |
darienf | 3:36de8b9e4b1a | 9 | * with the terms of those agreements. Dissemination of this information to |
darienf | 3:36de8b9e4b1a | 10 | * any party or parties not specified in the license agreement and/or |
darienf | 3:36de8b9e4b1a | 11 | * nondisclosure agreement is expressly prohibited. |
darienf | 3:36de8b9e4b1a | 12 | * |
darienf | 3:36de8b9e4b1a | 13 | * The above copyright notice and this permission notice shall be included |
darienf | 3:36de8b9e4b1a | 14 | * in all copies or substantial portions of the Software. |
darienf | 3:36de8b9e4b1a | 15 | * |
darienf | 3:36de8b9e4b1a | 16 | * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS |
darienf | 3:36de8b9e4b1a | 17 | * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF |
darienf | 3:36de8b9e4b1a | 18 | * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. |
darienf | 3:36de8b9e4b1a | 19 | * IN NO EVENT SHALL MAXIM INTEGRATED BE LIABLE FOR ANY CLAIM, DAMAGES |
darienf | 3:36de8b9e4b1a | 20 | * OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, |
darienf | 3:36de8b9e4b1a | 21 | * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR |
darienf | 3:36de8b9e4b1a | 22 | * OTHER DEALINGS IN THE SOFTWARE. |
darienf | 3:36de8b9e4b1a | 23 | * |
darienf | 3:36de8b9e4b1a | 24 | * Except as contained in this notice, the name of Maxim Integrated |
darienf | 3:36de8b9e4b1a | 25 | * Products, Inc. shall not be used except as stated in the Maxim Integrated |
darienf | 3:36de8b9e4b1a | 26 | * Products, Inc. Branding Policy. |
darienf | 3:36de8b9e4b1a | 27 | * |
darienf | 3:36de8b9e4b1a | 28 | * The mere transfer of this software does not imply any licenses |
darienf | 3:36de8b9e4b1a | 29 | * of trade secrets, proprietary technology, copyrights, patents, |
darienf | 3:36de8b9e4b1a | 30 | * trademarks, maskwork rights, or any other form of intellectual |
darienf | 3:36de8b9e4b1a | 31 | * property whatsoever. Maxim Integrated Products, Inc. retains all |
darienf | 3:36de8b9e4b1a | 32 | * ownership rights. |
darienf | 3:36de8b9e4b1a | 33 | ******************************************************************************* |
darienf | 3:36de8b9e4b1a | 34 | */ |
darienf | 3:36de8b9e4b1a | 35 | |
darienf | 3:36de8b9e4b1a | 36 | using System; |
darienf | 3:36de8b9e4b1a | 37 | using NUnit.Framework; |
darienf | 3:36de8b9e4b1a | 38 | using HealthSensorPlatform.CustomControls; |
darienf | 3:36de8b9e4b1a | 39 | using RPCSupport.Streaming; |
darienf | 3:36de8b9e4b1a | 40 | using System.Windows.Forms; |
darienf | 3:36de8b9e4b1a | 41 | using System.Collections.Generic; |
darienf | 3:36de8b9e4b1a | 42 | using System.Linq; |
darienf | 3:36de8b9e4b1a | 43 | using System.Text; |
darienf | 3:36de8b9e4b1a | 44 | using System.Threading.Tasks; |
darienf | 3:36de8b9e4b1a | 45 | |
darienf | 3:36de8b9e4b1a | 46 | using HealthSensorPlatform.Presenter; |
darienf | 3:36de8b9e4b1a | 47 | |
darienf | 3:36de8b9e4b1a | 48 | namespace EcgViewTest |
darienf | 3:36de8b9e4b1a | 49 | { |
darienf | 3:36de8b9e4b1a | 50 | [TestFixture] |
darienf | 3:36de8b9e4b1a | 51 | public partial class EcgTest |
darienf | 3:36de8b9e4b1a | 52 | { |
darienf | 3:36de8b9e4b1a | 53 | /* |
darienf | 3:36de8b9e4b1a | 54 | [Test] |
darienf | 3:36de8b9e4b1a | 55 | public void CalculationTest() |
darienf | 3:36de8b9e4b1a | 56 | { |
darienf | 3:36de8b9e4b1a | 57 | double[] result; |
darienf | 3:36de8b9e4b1a | 58 | |
darienf | 3:36de8b9e4b1a | 59 | Form form = new Form(); |
darienf | 3:36de8b9e4b1a | 60 | EcgView ecgView = new EcgView(); |
darienf | 3:36de8b9e4b1a | 61 | int[] ecgData = new int[] { 0, 1000 << 6, 226759, 159111, 8388544, 8388608}; |
darienf | 3:36de8b9e4b1a | 62 | |
darienf | 3:36de8b9e4b1a | 63 | form.Controls.Add(ecgView); |
darienf | 3:36de8b9e4b1a | 64 | result = ecgView.UpdateChart(EcgView.StreamDataType.Ecg, ecgData); |
darienf | 3:36de8b9e4b1a | 65 | |
darienf | 3:36de8b9e4b1a | 66 | // millivolts |
darienf | 3:36de8b9e4b1a | 67 | Assert.AreEqual(0, result[0], 1e-3); |
darienf | 3:36de8b9e4b1a | 68 | Assert.AreEqual(0.38147, result[1], 1e-3); |
darienf | 3:36de8b9e4b1a | 69 | Assert.AreEqual(1.351547, result[2], 1e-3); |
darienf | 3:36de8b9e4b1a | 70 | Assert.AreEqual(0.948334, result[3], 1e-2); |
darienf | 3:36de8b9e4b1a | 71 | Assert.AreEqual(49.99962, result[4], 1e-2); |
darienf | 3:36de8b9e4b1a | 72 | Assert.AreEqual(-50, result[5], 1e-2); |
darienf | 3:36de8b9e4b1a | 73 | } |
darienf | 3:36de8b9e4b1a | 74 | |
darienf | 3:36de8b9e4b1a | 75 | [Test] |
darienf | 3:36de8b9e4b1a | 76 | public void CalculationTest1() |
darienf | 3:36de8b9e4b1a | 77 | { |
darienf | 3:36de8b9e4b1a | 78 | double[] result; |
darienf | 3:36de8b9e4b1a | 79 | |
darienf | 3:36de8b9e4b1a | 80 | Form form = new Form(); |
darienf | 3:36de8b9e4b1a | 81 | EcgView ecgView = new EcgView(); |
darienf | 3:36de8b9e4b1a | 82 | int[] ecgData = new int[] { 226759, 159111, 8388544, 8388608 }; |
darienf | 3:36de8b9e4b1a | 83 | |
darienf | 3:36de8b9e4b1a | 84 | form.Controls.Add(ecgView); |
darienf | 3:36de8b9e4b1a | 85 | result = ecgView.UpdateChart(EcgView.StreamDataType.Ecg, ecgData); |
darienf | 3:36de8b9e4b1a | 86 | |
darienf | 3:36de8b9e4b1a | 87 | // milliovolts |
darienf | 3:36de8b9e4b1a | 88 | Assert.AreEqual(1.351547, result[0], 1e-3); |
darienf | 3:36de8b9e4b1a | 89 | |
darienf | 3:36de8b9e4b1a | 90 | } |
darienf | 3:36de8b9e4b1a | 91 | */ |
darienf | 3:36de8b9e4b1a | 92 | |
darienf | 3:36de8b9e4b1a | 93 | [Test] |
darienf | 3:36de8b9e4b1a | 94 | public void EcgCalculationTest() |
darienf | 3:36de8b9e4b1a | 95 | { |
darienf | 3:36de8b9e4b1a | 96 | EcgView ecgView = new EcgView(); |
darienf | 3:36de8b9e4b1a | 97 | StreamPresenter sp = new StreamPresenter(ecgView); |
darienf | 3:36de8b9e4b1a | 98 | double[] result; |
darienf | 3:36de8b9e4b1a | 99 | int[] ecgData = new int[] { 0 | 7, 1000 << 6 | 7, 226759, 159119 | 7, 8388547 | 7, 8388607 | 7 }; |
darienf | 3:36de8b9e4b1a | 100 | |
darienf | 3:36de8b9e4b1a | 101 | result = sp.ProcessEcg(ecgData); |
darienf | 3:36de8b9e4b1a | 102 | |
darienf | 3:36de8b9e4b1a | 103 | // millivolts |
darienf | 3:36de8b9e4b1a | 104 | Assert.AreEqual(0, result[0], 1e-3); |
darienf | 3:36de8b9e4b1a | 105 | Assert.AreEqual(ecgEquation(ecgData[1] >> 6), result[1], 1e-3); |
darienf | 3:36de8b9e4b1a | 106 | Assert.AreEqual(ecgEquation(ecgData[2] >> 6), result[2], 1e-3); |
darienf | 3:36de8b9e4b1a | 107 | Assert.AreEqual(ecgEquation(ecgData[3] >> 6), result[3], 1e-2); |
darienf | 3:36de8b9e4b1a | 108 | Assert.AreEqual(ecgEquation(ecgData[4] >> 6), result[4], 1e-2); |
darienf | 3:36de8b9e4b1a | 109 | Assert.AreEqual(ecgEquation(ecgData[5] >> 6), result[5], 1e-2); |
darienf | 3:36de8b9e4b1a | 110 | } |
darienf | 3:36de8b9e4b1a | 111 | |
darienf | 3:36de8b9e4b1a | 112 | double ecgEquation(double data) |
darienf | 3:36de8b9e4b1a | 113 | { |
darienf | 3:36de8b9e4b1a | 114 | return 1000 * 7.62939453125e-6 * data / 20; |
darienf | 3:36de8b9e4b1a | 115 | } |
darienf | 3:36de8b9e4b1a | 116 | |
darienf | 3:36de8b9e4b1a | 117 | /* |
darienf | 3:36de8b9e4b1a | 118 | |
darienf | 3:36de8b9e4b1a | 119 | [TestCase(0x80, 60)] |
darienf | 3:36de8b9e4b1a | 120 | [TestCase(0xff, 30.118)] |
darienf | 3:36de8b9e4b1a | 121 | [TestCase(0x01, 7680)] |
darienf | 3:36de8b9e4b1a | 122 | [TestCase(0xaa, 45.176)] |
darienf | 3:36de8b9e4b1a | 123 | public void RToRCalculationTest(int rToR, double bpm) |
darienf | 3:36de8b9e4b1a | 124 | { |
darienf | 3:36de8b9e4b1a | 125 | double result; |
darienf | 3:36de8b9e4b1a | 126 | |
darienf | 3:36de8b9e4b1a | 127 | EcgView ecgView = new EcgView(); |
darienf | 3:36de8b9e4b1a | 128 | InitArgs.EcgInitStart ecgInit = new InitArgs.EcgInitStart(); |
darienf | 3:36de8b9e4b1a | 129 | |
darienf | 3:36de8b9e4b1a | 130 | ecgView.ecgArgs = ecgInit; |
darienf | 3:36de8b9e4b1a | 131 | |
darienf | 3:36de8b9e4b1a | 132 | result = ecgView.RToRBeatsPerMinute(rToR); |
darienf | 3:36de8b9e4b1a | 133 | |
darienf | 3:36de8b9e4b1a | 134 | Assert.AreEqual(bpm, result, 1e-2); |
darienf | 3:36de8b9e4b1a | 135 | } |
darienf | 3:36de8b9e4b1a | 136 | |
darienf | 3:36de8b9e4b1a | 137 | [TestCase(0x80, 58.594)] |
darienf | 3:36de8b9e4b1a | 138 | [TestCase(0xff, 29.412)] |
darienf | 3:36de8b9e4b1a | 139 | [TestCase(0x01, 7500)] |
darienf | 3:36de8b9e4b1a | 140 | [TestCase(0xaa, 44.1176)] |
darienf | 3:36de8b9e4b1a | 141 | public void RToRCalculationTest1(int rToR, double bpm) |
darienf | 3:36de8b9e4b1a | 142 | { |
darienf | 3:36de8b9e4b1a | 143 | double result; |
darienf | 3:36de8b9e4b1a | 144 | |
darienf | 3:36de8b9e4b1a | 145 | EcgView ecgView = new EcgView(); |
darienf | 3:36de8b9e4b1a | 146 | InitArgs.EcgInitStart ecgInit = new InitArgs.EcgInitStart(); |
darienf | 3:36de8b9e4b1a | 147 | |
darienf | 3:36de8b9e4b1a | 148 | ecgView.ecgArgs = ecgInit; |
darienf | 3:36de8b9e4b1a | 149 | |
darienf | 3:36de8b9e4b1a | 150 | ecgView.FrequencyMasterField = 1; |
darienf | 3:36de8b9e4b1a | 151 | |
darienf | 3:36de8b9e4b1a | 152 | result = ecgView.RToRBeatsPerMinute(rToR); |
darienf | 3:36de8b9e4b1a | 153 | |
darienf | 3:36de8b9e4b1a | 154 | Assert.AreEqual(bpm, result, 1e-2); |
darienf | 3:36de8b9e4b1a | 155 | } |
darienf | 3:36de8b9e4b1a | 156 | |
darienf | 3:36de8b9e4b1a | 157 | [TestCase(0x80, 58.594)] |
darienf | 3:36de8b9e4b1a | 158 | [TestCase(0xff, 29.412)] |
darienf | 3:36de8b9e4b1a | 159 | [TestCase(0x01, 7500)] |
darienf | 3:36de8b9e4b1a | 160 | [TestCase(0xaa, 44.1176)] |
darienf | 3:36de8b9e4b1a | 161 | public void RToRCalculationTest2(int rToR, double bpm) |
darienf | 3:36de8b9e4b1a | 162 | { |
darienf | 3:36de8b9e4b1a | 163 | double result; |
darienf | 3:36de8b9e4b1a | 164 | |
darienf | 3:36de8b9e4b1a | 165 | EcgView ecgView = new EcgView(); |
darienf | 3:36de8b9e4b1a | 166 | InitArgs.EcgInitStart ecgInit = new InitArgs.EcgInitStart(); |
darienf | 3:36de8b9e4b1a | 167 | |
darienf | 3:36de8b9e4b1a | 168 | ecgView.ecgArgs = ecgInit; |
darienf | 3:36de8b9e4b1a | 169 | |
darienf | 3:36de8b9e4b1a | 170 | ecgView.FrequencyMasterField = 2; |
darienf | 3:36de8b9e4b1a | 171 | |
darienf | 3:36de8b9e4b1a | 172 | result = ecgView.RToRBeatsPerMinute(rToR); |
darienf | 3:36de8b9e4b1a | 173 | |
darienf | 3:36de8b9e4b1a | 174 | Assert.AreEqual(bpm, result, 1e-2); |
darienf | 3:36de8b9e4b1a | 175 | } |
darienf | 3:36de8b9e4b1a | 176 | |
darienf | 3:36de8b9e4b1a | 177 | [TestCase(0x80, 58.535)] |
darienf | 3:36de8b9e4b1a | 178 | [TestCase(0xff, 29.382)] |
darienf | 3:36de8b9e4b1a | 179 | [TestCase(0x01, 7492.5)] |
darienf | 3:36de8b9e4b1a | 180 | [TestCase(0xaa, 44.0735)] |
darienf | 3:36de8b9e4b1a | 181 | public void RToRCalculationTest3(int rToR, double bpm) |
darienf | 3:36de8b9e4b1a | 182 | { |
darienf | 3:36de8b9e4b1a | 183 | double result; |
darienf | 3:36de8b9e4b1a | 184 | |
darienf | 3:36de8b9e4b1a | 185 | EcgView ecgView = new EcgView(); |
darienf | 3:36de8b9e4b1a | 186 | InitArgs.EcgInitStart ecgInit = new InitArgs.EcgInitStart(); |
darienf | 3:36de8b9e4b1a | 187 | |
darienf | 3:36de8b9e4b1a | 188 | ecgView.ecgArgs = ecgInit; |
darienf | 3:36de8b9e4b1a | 189 | |
darienf | 3:36de8b9e4b1a | 190 | ecgView.FrequencyMasterField = 3; |
darienf | 3:36de8b9e4b1a | 191 | |
darienf | 3:36de8b9e4b1a | 192 | result = ecgView.RToRBeatsPerMinute(rToR); |
darienf | 3:36de8b9e4b1a | 193 | |
darienf | 3:36de8b9e4b1a | 194 | Assert.AreEqual(bpm, result, 1e-2); |
darienf | 3:36de8b9e4b1a | 195 | } |
darienf | 3:36de8b9e4b1a | 196 | */ |
darienf | 3:36de8b9e4b1a | 197 | } |
darienf | 3:36de8b9e4b1a | 198 | } |