repo time
Dependencies: mbed MAX14720 MAX30205 USBDevice
HspGuiSourceV301/HSPGui/PaceChannel.cs@20:6d2af70c92ab, 2021-04-06 (annotated)
- Committer:
- darienf
- Date:
- Tue Apr 06 06:41:40 2021 +0000
- Revision:
- 20:6d2af70c92ab
another repo
Who changed what in which revision?
User | Revision | Line number | New 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 | namespace HealthSensorPlatform |
darienf | 20:6d2af70c92ab | 42 | { |
darienf | 20:6d2af70c92ab | 43 | |
darienf | 20:6d2af70c92ab | 44 | public partial class HspForm |
darienf | 20:6d2af70c92ab | 45 | { |
darienf | 20:6d2af70c92ab | 46 | List<RegisterField> paceChannelField = new List<RegisterField>(); |
darienf | 20:6d2af70c92ab | 47 | |
darienf | 20:6d2af70c92ab | 48 | void initalizePaceChannelFields() |
darienf | 20:6d2af70c92ab | 49 | { |
darienf | 20:6d2af70c92ab | 50 | // Pace Channel |
darienf | 20:6d2af70c92ab | 51 | string[] aoutLbwOptions = { "Max (~100 kHz)*", "Limited (16 kHz)" }; |
darienf | 20:6d2af70c92ab | 52 | string[] aoutOptions = { "Disabled*", "INA Output", "PGA Output", "Pace Input" }; |
darienf | 20:6d2af70c92ab | 53 | string[] polOptions = { "Non-Inverted*", "Inverted" }; |
darienf | 20:6d2af70c92ab | 54 | string[] gainOptions = { "540 / 50.625 / 202.50*", |
darienf | 20:6d2af70c92ab | 55 | "270 / 50.625 / 101.25", |
darienf | 20:6d2af70c92ab | 56 | "240 / 22.5 / 90", |
darienf | 20:6d2af70c92ab | 57 | "120 / 22.5 / 45", |
darienf | 20:6d2af70c92ab | 58 | " 60 / 5.625 / 22.5", |
darienf | 20:6d2af70c92ab | 59 | " 30 / 5.625 / 11.25", |
darienf | 20:6d2af70c92ab | 60 | " 26.4 / 5.625 / 22.5", |
darienf | 20:6d2af70c92ab | 61 | " 13.2 / 5.625 / 11.25" |
darienf | 20:6d2af70c92ab | 62 | }; |
darienf | 20:6d2af70c92ab | 63 | string[] gnDiffOffOptions = { "Differentiator*", "Sample and Hold" }; |
darienf | 20:6d2af70c92ab | 64 | string[] dacpOptions = new string[16]; |
darienf | 20:6d2af70c92ab | 65 | for (int i = 0; i < dacpOptions.Length; i++) |
darienf | 20:6d2af70c92ab | 66 | { |
darienf | 20:6d2af70c92ab | 67 | dacpOptions[i] = (22.5 * i).ToString() + " mV"; |
darienf | 20:6d2af70c92ab | 68 | } |
darienf | 20:6d2af70c92ab | 69 | dacpOptions[5] += "*"; |
darienf | 20:6d2af70c92ab | 70 | string[] dacnOptions = new string[16]; |
darienf | 20:6d2af70c92ab | 71 | for (int i = 0; i < dacnOptions.Length; i++) |
darienf | 20:6d2af70c92ab | 72 | { |
darienf | 20:6d2af70c92ab | 73 | dacnOptions[i] = (-22.5 * i).ToString() + " mV"; |
darienf | 20:6d2af70c92ab | 74 | } |
darienf | 20:6d2af70c92ab | 75 | dacnOptions[5] += "*"; |
darienf | 20:6d2af70c92ab | 76 | |
darienf | 20:6d2af70c92ab | 77 | //RegisterField rateField = new RegisterField { Name = "BIOZ_RATE", Register = 0x18, Index = 23, Width = 1, Descriptions = rateOptions, Label = lblBioZSampleRate, Control = cboBioZSampleRate }; |
darienf | 20:6d2af70c92ab | 78 | RegisterField polField = new RegisterField { Name = "PACE_POL", Register = 0x1A, Index = 23, Width = 1, Descriptions = polOptions, Label = lblPaceInputPolarity, Control = cboPaceInputPolarity, Device = max30001 }; |
darienf | 20:6d2af70c92ab | 79 | RegisterField gnDiffOffField = new RegisterField { Name = "PACE_GN_DIFF_OFF", Register = 0x1A, Index = 19, Width = 1, Descriptions = gnDiffOffOptions, Label = lblPaceDifferentiatorMode, Control = cboPaceDifferentiatorMode, Device = max30001 }; |
darienf | 20:6d2af70c92ab | 80 | RegisterField gainField = new RegisterField { Name = "PACE_GAIN", Register = 0x1A, Index = 16, Width = 3, Descriptions = gainOptions, Label = lblPaceChannelGain, Control = cboPaceChannelGain, Device = max30001 }; |
darienf | 20:6d2af70c92ab | 81 | RegisterField aoutLbwField = new RegisterField { Name = "PACE_AOUT_LBW", Register = 0x1A, Index = 14, Width = 1, Descriptions = aoutLbwOptions, Label = lblPaceBufferBandwidth, Control = cboPaceBufferBandwidth, Device = max30001 }; |
darienf | 20:6d2af70c92ab | 82 | RegisterField aoutField = new RegisterField { Name = "PACE_AOUT", Register = 0x1A, Index = 12, Width = 2, Descriptions = aoutOptions, Label = lblPaceSignalSelection, Control = cboPaceSignalSelection, Device = max30001 }; |
darienf | 20:6d2af70c92ab | 83 | RegisterField dacpField = new RegisterField { Name = "PACE_DACP", Register = 0x1A, Index = 4, Width = 4, Descriptions = dacpOptions, Label = lblPaceDetectorPostiveThreshold, Control = cboPaceDetectorPostiveThreshold, Device = max30001 }; |
darienf | 20:6d2af70c92ab | 84 | RegisterField dacnField = new RegisterField { Name = "PACE_DACN", Register = 0x1A, Index = 0, Width = 4, Descriptions = dacnOptions, Label = lblPaceDetectorNegativeThreshold, Control = cboPaceDetectorNegativeThreshold, Device = max30001 }; |
darienf | 20:6d2af70c92ab | 85 | paceChannelField.Add(polField); |
darienf | 20:6d2af70c92ab | 86 | paceChannelField.Add(gnDiffOffField); |
darienf | 20:6d2af70c92ab | 87 | paceChannelField.Add(gainField); |
darienf | 20:6d2af70c92ab | 88 | paceChannelField.Add(aoutLbwField); |
darienf | 20:6d2af70c92ab | 89 | paceChannelField.Add(aoutField); |
darienf | 20:6d2af70c92ab | 90 | paceChannelField.Add(dacpField); |
darienf | 20:6d2af70c92ab | 91 | paceChannelField.Add(dacnField); |
darienf | 20:6d2af70c92ab | 92 | |
darienf | 20:6d2af70c92ab | 93 | // BioZ Channel |
darienf | 20:6d2af70c92ab | 94 | string[] aHpfOptions = { "250 Hz", "500 Hz", "1000 Hz*", "2000 Hz", "4000 Hz", "8000 Hz", "Bypass" }; |
darienf | 20:6d2af70c92ab | 95 | RegisterField aHpfField = new RegisterField { Name = "BIOZ_AHPF", Register = 0x18, Index = 20, Width = 3, Descriptions = aHpfOptions, Label = lblPaceAnalogHpf, Control = cboPaceAnalogHpf, Device = max30001 }; |
darienf | 20:6d2af70c92ab | 96 | paceChannelField.Add(aHpfField); |
darienf | 20:6d2af70c92ab | 97 | } |
darienf | 20:6d2af70c92ab | 98 | |
darienf | 20:6d2af70c92ab | 99 | void PaceChannelUpdateRegisters() |
darienf | 20:6d2af70c92ab | 100 | { |
darienf | 20:6d2af70c92ab | 101 | internalUpdate = true; |
darienf | 20:6d2af70c92ab | 102 | ReadComboBoxesRegisters(paceChannelField); |
darienf | 20:6d2af70c92ab | 103 | internalUpdate = false; |
darienf | 20:6d2af70c92ab | 104 | } |
darienf | 20:6d2af70c92ab | 105 | |
darienf | 20:6d2af70c92ab | 106 | private CustomControls.InitArgs.PACEInitStart getPaceArgs() |
darienf | 20:6d2af70c92ab | 107 | { |
darienf | 20:6d2af70c92ab | 108 | CustomControls.InitArgs.PACEInitStart paceArgs = new CustomControls.InitArgs.PACEInitStart(); |
darienf | 20:6d2af70c92ab | 109 | |
darienf | 20:6d2af70c92ab | 110 | paceArgs.En_pace = chkEnPace.Checked == true ? 1 : 0; |
darienf | 20:6d2af70c92ab | 111 | paceArgs.Clr_pedge = 0; // TODO default from jerry |
darienf | 20:6d2af70c92ab | 112 | paceArgs.Pol = cboPaceInputPolarity.SelectedIndex; |
darienf | 20:6d2af70c92ab | 113 | paceArgs.Gn_diff_off = cboPaceDifferentiatorMode.SelectedIndex; |
darienf | 20:6d2af70c92ab | 114 | paceArgs.Gain = cboPaceChannelGain.SelectedIndex; |
darienf | 20:6d2af70c92ab | 115 | paceArgs.Aout_lbw = cboPaceBufferBandwidth.SelectedIndex; |
darienf | 20:6d2af70c92ab | 116 | paceArgs.Aout = cboPaceSignalSelection.SelectedIndex; |
darienf | 20:6d2af70c92ab | 117 | paceArgs.Dacp = cboPaceDetectorPostiveThreshold.SelectedIndex; |
darienf | 20:6d2af70c92ab | 118 | paceArgs.Dacn = cboPaceDetectorNegativeThreshold.SelectedIndex; |
darienf | 20:6d2af70c92ab | 119 | |
darienf | 20:6d2af70c92ab | 120 | return paceArgs; |
darienf | 20:6d2af70c92ab | 121 | } |
darienf | 20:6d2af70c92ab | 122 | |
darienf | 20:6d2af70c92ab | 123 | private void setPaceArgs(CustomControls.InitArgs.PACEInitStart paceArgs) |
darienf | 20:6d2af70c92ab | 124 | { |
darienf | 20:6d2af70c92ab | 125 | //paceArgs.En_pace = chkEnPace.Checked == true ? 1 : 0; |
darienf | 20:6d2af70c92ab | 126 | //paceArgs.Clr_pedge = 0; // TODO default from jerry |
darienf | 20:6d2af70c92ab | 127 | cboPaceInputPolarity.SelectedIndex = paceArgs.Pol; |
darienf | 20:6d2af70c92ab | 128 | cboPaceDifferentiatorMode.SelectedIndex = paceArgs.Gn_diff_off; |
darienf | 20:6d2af70c92ab | 129 | cboPaceChannelGain.SelectedIndex = paceArgs.Gain; |
darienf | 20:6d2af70c92ab | 130 | cboPaceBufferBandwidth.SelectedIndex = paceArgs.Aout_lbw; |
darienf | 20:6d2af70c92ab | 131 | cboPaceSignalSelection.SelectedIndex = paceArgs.Aout; |
darienf | 20:6d2af70c92ab | 132 | cboPaceDetectorPostiveThreshold.SelectedIndex = paceArgs.Dacp; |
darienf | 20:6d2af70c92ab | 133 | cboPaceDetectorNegativeThreshold.SelectedIndex = paceArgs.Dacn; |
darienf | 20:6d2af70c92ab | 134 | } |
darienf | 20:6d2af70c92ab | 135 | } |
darienf | 20:6d2af70c92ab | 136 | } |