![](/media/cache/img/default_profile.jpg.50x50_q85.jpg)
repo time
Dependencies: mbed MAX14720 MAX30205 USBDevice
HspGuiSourceV301/GuiDLLs/RPCSupport/Devices/MAX30101/MAX30101.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 | using System.Threading; |
darienf | 20:6d2af70c92ab | 41 | |
darienf | 20:6d2af70c92ab | 42 | namespace RPCSupport.Devices |
darienf | 20:6d2af70c92ab | 43 | { |
darienf | 20:6d2af70c92ab | 44 | /* Optical */ |
darienf | 20:6d2af70c92ab | 45 | public class MAX30101 : ClientDevice |
darienf | 20:6d2af70c92ab | 46 | { |
darienf | 20:6d2af70c92ab | 47 | public const string CLASSNAME = "MAX30101"; |
darienf | 20:6d2af70c92ab | 48 | int slaveAddress; |
darienf | 20:6d2af70c92ab | 49 | public MAX30101(RPCClient client, int slaveAddress) |
darienf | 20:6d2af70c92ab | 50 | : base(client) |
darienf | 20:6d2af70c92ab | 51 | { |
darienf | 20:6d2af70c92ab | 52 | this.slaveAddress = slaveAddress; |
darienf | 20:6d2af70c92ab | 53 | } |
darienf | 20:6d2af70c92ab | 54 | public byte ReadReg(byte addr) |
darienf | 20:6d2af70c92ab | 55 | { |
darienf | 20:6d2af70c92ab | 56 | string reply = Call(CLASSNAME, "ReadReg", addr.ToString("X2")); |
darienf | 20:6d2af70c92ab | 57 | return client.pipeline.StringToByte(reply); |
darienf | 20:6d2af70c92ab | 58 | } |
darienf | 20:6d2af70c92ab | 59 | public void WriteReg(byte addr, byte data) |
darienf | 20:6d2af70c92ab | 60 | { |
darienf | 20:6d2af70c92ab | 61 | Call(CLASSNAME, "WriteReg", addr.ToString("X2"), data.ToString("X2")); |
darienf | 20:6d2af70c92ab | 62 | } |
darienf | 20:6d2af70c92ab | 63 | |
darienf | 20:6d2af70c92ab | 64 | private void InitStreaming() |
darienf | 20:6d2af70c92ab | 65 | { |
darienf | 20:6d2af70c92ab | 66 | client.pipeline.Discard(); |
darienf | 20:6d2af70c92ab | 67 | client.streaming.Init(client.pipeline); |
darienf | 20:6d2af70c92ab | 68 | client.streaming.Start(); |
darienf | 20:6d2af70c92ab | 69 | //Call(CLASSNAME, "StreamTest"); |
darienf | 20:6d2af70c92ab | 70 | //CallNoReply(CLASSNAME, "StreamTest"); |
darienf | 20:6d2af70c92ab | 71 | } |
darienf | 20:6d2af70c92ab | 72 | |
darienf | 20:6d2af70c92ab | 73 | public void StopStreaming() |
darienf | 20:6d2af70c92ab | 74 | { |
darienf | 20:6d2af70c92ab | 75 | StopStreaming(true); |
darienf | 20:6d2af70c92ab | 76 | } |
darienf | 20:6d2af70c92ab | 77 | |
darienf | 20:6d2af70c92ab | 78 | public void StopStreaming(bool connected) |
darienf | 20:6d2af70c92ab | 79 | { |
darienf | 20:6d2af70c92ab | 80 | if (connected) |
darienf | 20:6d2af70c92ab | 81 | client.pipeline.SendSingleByte(' '); |
darienf | 20:6d2af70c92ab | 82 | |
darienf | 20:6d2af70c92ab | 83 | client.streaming.Stop(); |
darienf | 20:6d2af70c92ab | 84 | |
darienf | 20:6d2af70c92ab | 85 | if (connected) |
darienf | 20:6d2af70c92ab | 86 | { |
darienf | 20:6d2af70c92ab | 87 | client.pipeline.Discard(); |
darienf | 20:6d2af70c92ab | 88 | Thread.Sleep(500); |
darienf | 20:6d2af70c92ab | 89 | client.pipeline.Discard(); |
darienf | 20:6d2af70c92ab | 90 | } |
darienf | 20:6d2af70c92ab | 91 | } |
darienf | 20:6d2af70c92ab | 92 | |
darienf | 20:6d2af70c92ab | 93 | public void SpO2mode_init(byte fifo_waterlevel_mark, byte sample_avg, byte sample_rate, byte pulse_width, |
darienf | 20:6d2af70c92ab | 94 | byte red_led_current, byte ir_led_current, byte accelRateParameter) |
darienf | 20:6d2af70c92ab | 95 | { |
darienf | 20:6d2af70c92ab | 96 | InitStreaming(); |
darienf | 20:6d2af70c92ab | 97 | CallNoReply(CLASSNAME, "SpO2mode_init", |
darienf | 20:6d2af70c92ab | 98 | fifo_waterlevel_mark.ToString("X2"), |
darienf | 20:6d2af70c92ab | 99 | sample_avg.ToString("X2"), |
darienf | 20:6d2af70c92ab | 100 | sample_rate.ToString("X2"), |
darienf | 20:6d2af70c92ab | 101 | pulse_width.ToString("X2"), |
darienf | 20:6d2af70c92ab | 102 | red_led_current.ToString("X2"), |
darienf | 20:6d2af70c92ab | 103 | ir_led_current.ToString("X2"), |
darienf | 20:6d2af70c92ab | 104 | accelRateParameter.ToString("X2") |
darienf | 20:6d2af70c92ab | 105 | ); |
darienf | 20:6d2af70c92ab | 106 | } |
darienf | 20:6d2af70c92ab | 107 | |
darienf | 20:6d2af70c92ab | 108 | public void HRmode_init(byte fifo_waterlevel_mark, byte sample_avg, byte sample_rate, byte pulse_width, |
darienf | 20:6d2af70c92ab | 109 | byte red_led_current,byte accelRateParameter) |
darienf | 20:6d2af70c92ab | 110 | { |
darienf | 20:6d2af70c92ab | 111 | InitStreaming(); |
darienf | 20:6d2af70c92ab | 112 | CallNoReply(CLASSNAME, "HRmode_init", |
darienf | 20:6d2af70c92ab | 113 | fifo_waterlevel_mark.ToString("X2"), |
darienf | 20:6d2af70c92ab | 114 | sample_avg.ToString("X2"), |
darienf | 20:6d2af70c92ab | 115 | sample_rate.ToString("X2"), |
darienf | 20:6d2af70c92ab | 116 | pulse_width.ToString("X2"), |
darienf | 20:6d2af70c92ab | 117 | red_led_current.ToString("X2"), |
darienf | 20:6d2af70c92ab | 118 | accelRateParameter.ToString("X2") |
darienf | 20:6d2af70c92ab | 119 | ); |
darienf | 20:6d2af70c92ab | 120 | } |
darienf | 20:6d2af70c92ab | 121 | |
darienf | 20:6d2af70c92ab | 122 | public void Multimode_init(byte fifo_waterlevel_mark, byte sample_avg, byte sample_rate, byte pulse_width, |
darienf | 20:6d2af70c92ab | 123 | byte red_led_current, byte ir_led_current, byte green_led_current, |
darienf | 20:6d2af70c92ab | 124 | byte slot_1, byte slot_2, byte slot_3, byte slot_4, byte accelRateParameter) |
darienf | 20:6d2af70c92ab | 125 | { |
darienf | 20:6d2af70c92ab | 126 | InitStreaming(); |
darienf | 20:6d2af70c92ab | 127 | CallNoReply(CLASSNAME, "Multimode_init", |
darienf | 20:6d2af70c92ab | 128 | fifo_waterlevel_mark.ToString("X2"), |
darienf | 20:6d2af70c92ab | 129 | sample_avg.ToString("X2"), |
darienf | 20:6d2af70c92ab | 130 | sample_rate.ToString("X2"), |
darienf | 20:6d2af70c92ab | 131 | pulse_width.ToString("X2"), |
darienf | 20:6d2af70c92ab | 132 | red_led_current.ToString("X2"), |
darienf | 20:6d2af70c92ab | 133 | ir_led_current.ToString("X2"), |
darienf | 20:6d2af70c92ab | 134 | green_led_current.ToString("X2"), |
darienf | 20:6d2af70c92ab | 135 | slot_1.ToString("X2"), |
darienf | 20:6d2af70c92ab | 136 | slot_2.ToString("X2"), |
darienf | 20:6d2af70c92ab | 137 | slot_3.ToString("X2"), |
darienf | 20:6d2af70c92ab | 138 | slot_4.ToString("X2"), |
darienf | 20:6d2af70c92ab | 139 | accelRateParameter.ToString("X2") |
darienf | 20:6d2af70c92ab | 140 | ); |
darienf | 20:6d2af70c92ab | 141 | } |
darienf | 20:6d2af70c92ab | 142 | |
darienf | 20:6d2af70c92ab | 143 | public void SpO2mode_stop() |
darienf | 20:6d2af70c92ab | 144 | { |
darienf | 20:6d2af70c92ab | 145 | SpO2mode_stop(true); |
darienf | 20:6d2af70c92ab | 146 | } |
darienf | 20:6d2af70c92ab | 147 | |
darienf | 20:6d2af70c92ab | 148 | public void SpO2mode_stop(bool connected) |
darienf | 20:6d2af70c92ab | 149 | { |
darienf | 20:6d2af70c92ab | 150 | StopStreaming(connected); |
darienf | 20:6d2af70c92ab | 151 | |
darienf | 20:6d2af70c92ab | 152 | if (connected) |
darienf | 20:6d2af70c92ab | 153 | { |
darienf | 20:6d2af70c92ab | 154 | Call(CLASSNAME, "SpO2mode_stop"); |
darienf | 20:6d2af70c92ab | 155 | System.Threading.Thread.Sleep(250); |
darienf | 20:6d2af70c92ab | 156 | client.pipeline.Discard(); |
darienf | 20:6d2af70c92ab | 157 | } |
darienf | 20:6d2af70c92ab | 158 | } |
darienf | 20:6d2af70c92ab | 159 | |
darienf | 20:6d2af70c92ab | 160 | public void HRmode_stop() |
darienf | 20:6d2af70c92ab | 161 | { |
darienf | 20:6d2af70c92ab | 162 | HRmode_stop(true); |
darienf | 20:6d2af70c92ab | 163 | } |
darienf | 20:6d2af70c92ab | 164 | |
darienf | 20:6d2af70c92ab | 165 | public void HRmode_stop(bool connected) |
darienf | 20:6d2af70c92ab | 166 | { |
darienf | 20:6d2af70c92ab | 167 | StopStreaming(connected); |
darienf | 20:6d2af70c92ab | 168 | |
darienf | 20:6d2af70c92ab | 169 | if (connected) |
darienf | 20:6d2af70c92ab | 170 | { |
darienf | 20:6d2af70c92ab | 171 | Call(CLASSNAME, "HRmode_stop"); |
darienf | 20:6d2af70c92ab | 172 | System.Threading.Thread.Sleep(250); |
darienf | 20:6d2af70c92ab | 173 | client.pipeline.Discard(); |
darienf | 20:6d2af70c92ab | 174 | } |
darienf | 20:6d2af70c92ab | 175 | } |
darienf | 20:6d2af70c92ab | 176 | |
darienf | 20:6d2af70c92ab | 177 | public void Multimode_stop() |
darienf | 20:6d2af70c92ab | 178 | { |
darienf | 20:6d2af70c92ab | 179 | Multimode_stop(true); |
darienf | 20:6d2af70c92ab | 180 | } |
darienf | 20:6d2af70c92ab | 181 | |
darienf | 20:6d2af70c92ab | 182 | public void Multimode_stop(bool connected) |
darienf | 20:6d2af70c92ab | 183 | { |
darienf | 20:6d2af70c92ab | 184 | StopStreaming(connected); |
darienf | 20:6d2af70c92ab | 185 | |
darienf | 20:6d2af70c92ab | 186 | if (connected) |
darienf | 20:6d2af70c92ab | 187 | { |
darienf | 20:6d2af70c92ab | 188 | Call(CLASSNAME, "Multimode_stop"); |
darienf | 20:6d2af70c92ab | 189 | System.Threading.Thread.Sleep(250); |
darienf | 20:6d2af70c92ab | 190 | client.pipeline.Discard(); |
darienf | 20:6d2af70c92ab | 191 | } |
darienf | 20:6d2af70c92ab | 192 | } |
darienf | 20:6d2af70c92ab | 193 | |
darienf | 20:6d2af70c92ab | 194 | } |
darienf | 20:6d2af70c92ab | 195 | } |
darienf | 20:6d2af70c92ab | 196 | |
darienf | 20:6d2af70c92ab | 197 |