![](/media/cache/img/default_profile.jpg.50x50_q85.jpg)
repo time
Dependencies: mbed MAX14720 MAX30205 USBDevice
HspGuiSourceV301/HSPGui/CustomControls/PrimitivesView.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.ComponentModel; |
darienf | 20:6d2af70c92ab | 39 | using System.Drawing; |
darienf | 20:6d2af70c92ab | 40 | using System.Data; |
darienf | 20:6d2af70c92ab | 41 | using System.Linq; |
darienf | 20:6d2af70c92ab | 42 | using System.Text; |
darienf | 20:6d2af70c92ab | 43 | using System.Windows.Forms; |
darienf | 20:6d2af70c92ab | 44 | using System.Globalization; |
darienf | 20:6d2af70c92ab | 45 | |
darienf | 20:6d2af70c92ab | 46 | namespace HealthSensorPlatform.CustomControls |
darienf | 20:6d2af70c92ab | 47 | { |
darienf | 20:6d2af70c92ab | 48 | public partial class PrimitivesView : UserControl |
darienf | 20:6d2af70c92ab | 49 | { |
darienf | 20:6d2af70c92ab | 50 | public PrimitivesView() |
darienf | 20:6d2af70c92ab | 51 | { |
darienf | 20:6d2af70c92ab | 52 | InitializeComponent(); |
darienf | 20:6d2af70c92ab | 53 | } |
darienf | 20:6d2af70c92ab | 54 | |
darienf | 20:6d2af70c92ab | 55 | public RPCSupport.RPCClient rpcClient { get; set; } |
darienf | 20:6d2af70c92ab | 56 | public RPCSupport.Devices.I2cDevice i2cDevice { get; set; } |
darienf | 20:6d2af70c92ab | 57 | public RPCSupport.Devices.SpiDevice spiDevice { get; set; } |
darienf | 20:6d2af70c92ab | 58 | public RPCSupport.Devices.MAX30101 max30101 { get; set; } |
darienf | 20:6d2af70c92ab | 59 | public RPCSupport.Devices.MAX30205 max30205 { get; set; } |
darienf | 20:6d2af70c92ab | 60 | public RPCSupport.Devices.MAX30001 max30001 { get; set; } |
darienf | 20:6d2af70c92ab | 61 | public RPCSupport.Devices.LIS2HD lis2hd { get; set; } |
darienf | 20:6d2af70c92ab | 62 | |
darienf | 20:6d2af70c92ab | 63 | private void PrimitivesView_Load(object sender, EventArgs e) |
darienf | 20:6d2af70c92ab | 64 | { |
darienf | 20:6d2af70c92ab | 65 | |
darienf | 20:6d2af70c92ab | 66 | } |
darienf | 20:6d2af70c92ab | 67 | |
darienf | 20:6d2af70c92ab | 68 | private void btnRawRpcEnter_Click(object sender, EventArgs e) |
darienf | 20:6d2af70c92ab | 69 | { |
darienf | 20:6d2af70c92ab | 70 | String request = tbCommandLine.Text + "\r\n"; |
darienf | 20:6d2af70c92ab | 71 | String reply = rpcClient.RawRpcCall(request, true); |
darienf | 20:6d2af70c92ab | 72 | //txt_Status.Text += request; |
darienf | 20:6d2af70c92ab | 73 | //txt_Status.Text += reply + "\r\n"; |
darienf | 20:6d2af70c92ab | 74 | } |
darienf | 20:6d2af70c92ab | 75 | |
darienf | 20:6d2af70c92ab | 76 | private void btnI2cReadReg_Click(object sender, EventArgs e) |
darienf | 20:6d2af70c92ab | 77 | { |
darienf | 20:6d2af70c92ab | 78 | byte instance; |
darienf | 20:6d2af70c92ab | 79 | byte slaveAddress; |
darienf | 20:6d2af70c92ab | 80 | byte address; |
darienf | 20:6d2af70c92ab | 81 | if (byte.TryParse(tbI2cInstance.Text, NumberStyles.HexNumber, CultureInfo.CurrentCulture, out instance)) |
darienf | 20:6d2af70c92ab | 82 | { |
darienf | 20:6d2af70c92ab | 83 | if (byte.TryParse(tbI2cSlaveAddress.Text, NumberStyles.HexNumber, CultureInfo.CurrentCulture, out slaveAddress)) |
darienf | 20:6d2af70c92ab | 84 | { |
darienf | 20:6d2af70c92ab | 85 | if (byte.TryParse(tbI2cAddress.Text, NumberStyles.HexNumber, CultureInfo.CurrentCulture, out address)) |
darienf | 20:6d2af70c92ab | 86 | { |
darienf | 20:6d2af70c92ab | 87 | byte value = i2cDevice.ReadReg(instance, slaveAddress, address); |
darienf | 20:6d2af70c92ab | 88 | tbI2cReadData.Text = value.ToString("X2"); |
darienf | 20:6d2af70c92ab | 89 | } |
darienf | 20:6d2af70c92ab | 90 | } |
darienf | 20:6d2af70c92ab | 91 | } |
darienf | 20:6d2af70c92ab | 92 | } |
darienf | 20:6d2af70c92ab | 93 | |
darienf | 20:6d2af70c92ab | 94 | private void btnI2cWriteReg_Click(object sender, EventArgs e) |
darienf | 20:6d2af70c92ab | 95 | { |
darienf | 20:6d2af70c92ab | 96 | byte instance; |
darienf | 20:6d2af70c92ab | 97 | byte slaveAddress; |
darienf | 20:6d2af70c92ab | 98 | byte address; |
darienf | 20:6d2af70c92ab | 99 | byte data; |
darienf | 20:6d2af70c92ab | 100 | if (byte.TryParse(tbI2cInstance.Text, NumberStyles.HexNumber, CultureInfo.CurrentCulture, out instance)) |
darienf | 20:6d2af70c92ab | 101 | { |
darienf | 20:6d2af70c92ab | 102 | if (byte.TryParse(tbI2cSlaveAddress.Text, NumberStyles.HexNumber, CultureInfo.CurrentCulture, out slaveAddress)) |
darienf | 20:6d2af70c92ab | 103 | { |
darienf | 20:6d2af70c92ab | 104 | if (byte.TryParse(tbI2cAddress.Text, NumberStyles.HexNumber, CultureInfo.CurrentCulture, out address)) |
darienf | 20:6d2af70c92ab | 105 | { |
darienf | 20:6d2af70c92ab | 106 | if (byte.TryParse(tbI2cWriteData.Text, NumberStyles.HexNumber, CultureInfo.CurrentCulture, out data)) |
darienf | 20:6d2af70c92ab | 107 | { |
darienf | 20:6d2af70c92ab | 108 | i2cDevice.WriteReg(instance, slaveAddress, address, data); |
darienf | 20:6d2af70c92ab | 109 | } |
darienf | 20:6d2af70c92ab | 110 | } |
darienf | 20:6d2af70c92ab | 111 | } |
darienf | 20:6d2af70c92ab | 112 | } |
darienf | 20:6d2af70c92ab | 113 | } |
darienf | 20:6d2af70c92ab | 114 | |
darienf | 20:6d2af70c92ab | 115 | private void btnMAX30101ReadReg_Click(object sender, EventArgs e) |
darienf | 20:6d2af70c92ab | 116 | { |
darienf | 20:6d2af70c92ab | 117 | byte address; |
darienf | 20:6d2af70c92ab | 118 | if (byte.TryParse(tbMAX30101Address.Text, NumberStyles.HexNumber, CultureInfo.CurrentCulture, out address)) |
darienf | 20:6d2af70c92ab | 119 | { |
darienf | 20:6d2af70c92ab | 120 | byte value = max30101.ReadReg(address); |
darienf | 20:6d2af70c92ab | 121 | tbMAX30101ReadData.Text = value.ToString("X2"); |
darienf | 20:6d2af70c92ab | 122 | } |
darienf | 20:6d2af70c92ab | 123 | } |
darienf | 20:6d2af70c92ab | 124 | |
darienf | 20:6d2af70c92ab | 125 | private void btnSpiWriteReg_Click(object sender, EventArgs e) |
darienf | 20:6d2af70c92ab | 126 | { |
darienf | 20:6d2af70c92ab | 127 | byte data; |
darienf | 20:6d2af70c92ab | 128 | byte address; |
darienf | 20:6d2af70c92ab | 129 | if (byte.TryParse(tbMAX30101WriteData.Text, NumberStyles.HexNumber, CultureInfo.CurrentCulture, out data)) |
darienf | 20:6d2af70c92ab | 130 | { |
darienf | 20:6d2af70c92ab | 131 | if (byte.TryParse(tbMAX30101Address.Text, NumberStyles.HexNumber, CultureInfo.CurrentCulture, out address)) |
darienf | 20:6d2af70c92ab | 132 | { |
darienf | 20:6d2af70c92ab | 133 | max30101.WriteReg(address, data); |
darienf | 20:6d2af70c92ab | 134 | } |
darienf | 20:6d2af70c92ab | 135 | } |
darienf | 20:6d2af70c92ab | 136 | } |
darienf | 20:6d2af70c92ab | 137 | |
darienf | 20:6d2af70c92ab | 138 | private void btnMAX30205ReadReg_Click(object sender, EventArgs e) |
darienf | 20:6d2af70c92ab | 139 | { |
darienf | 20:6d2af70c92ab | 140 | byte address; |
darienf | 20:6d2af70c92ab | 141 | if (byte.TryParse(tbMAX30205Address.Text, NumberStyles.HexNumber, CultureInfo.CurrentCulture, out address)) |
darienf | 20:6d2af70c92ab | 142 | { |
darienf | 20:6d2af70c92ab | 143 | byte value = max30205.ReadReg(address); |
darienf | 20:6d2af70c92ab | 144 | tbMAX30205ReadData.Text = value.ToString("X2"); |
darienf | 20:6d2af70c92ab | 145 | } |
darienf | 20:6d2af70c92ab | 146 | } |
darienf | 20:6d2af70c92ab | 147 | |
darienf | 20:6d2af70c92ab | 148 | private void btnMAX30205WriteReg_Click(object sender, EventArgs e) |
darienf | 20:6d2af70c92ab | 149 | { |
darienf | 20:6d2af70c92ab | 150 | byte data; |
darienf | 20:6d2af70c92ab | 151 | byte address; |
darienf | 20:6d2af70c92ab | 152 | if (byte.TryParse(tbMAX30205WriteData.Text, NumberStyles.HexNumber, CultureInfo.CurrentCulture, out data)) |
darienf | 20:6d2af70c92ab | 153 | { |
darienf | 20:6d2af70c92ab | 154 | if (byte.TryParse(tbMAX30205Address.Text, NumberStyles.HexNumber, CultureInfo.CurrentCulture, out address)) |
darienf | 20:6d2af70c92ab | 155 | { |
darienf | 20:6d2af70c92ab | 156 | max30205.WriteReg(address, data); |
darienf | 20:6d2af70c92ab | 157 | } |
darienf | 20:6d2af70c92ab | 158 | } |
darienf | 20:6d2af70c92ab | 159 | } |
darienf | 20:6d2af70c92ab | 160 | |
darienf | 20:6d2af70c92ab | 161 | private void btnLIS2HDReadReg_Click(object sender, EventArgs e) |
darienf | 20:6d2af70c92ab | 162 | { |
darienf | 20:6d2af70c92ab | 163 | byte address; |
darienf | 20:6d2af70c92ab | 164 | if (byte.TryParse(tbLIS2HDAddress.Text, NumberStyles.HexNumber, CultureInfo.CurrentCulture, out address)) |
darienf | 20:6d2af70c92ab | 165 | { |
darienf | 20:6d2af70c92ab | 166 | byte value = lis2hd.ReadReg(address); |
darienf | 20:6d2af70c92ab | 167 | tbLIS2HDReadData.Text = value.ToString("X2"); |
darienf | 20:6d2af70c92ab | 168 | } |
darienf | 20:6d2af70c92ab | 169 | } |
darienf | 20:6d2af70c92ab | 170 | |
darienf | 20:6d2af70c92ab | 171 | private void btnLIS2HDWriteReg_Click(object sender, EventArgs e) |
darienf | 20:6d2af70c92ab | 172 | { |
darienf | 20:6d2af70c92ab | 173 | byte data; |
darienf | 20:6d2af70c92ab | 174 | byte address; |
darienf | 20:6d2af70c92ab | 175 | if (byte.TryParse(tbLIS2HDWriteData.Text, NumberStyles.HexNumber, CultureInfo.CurrentCulture, out data)) |
darienf | 20:6d2af70c92ab | 176 | { |
darienf | 20:6d2af70c92ab | 177 | if (byte.TryParse(tbLIS2HDAddress.Text, NumberStyles.HexNumber, CultureInfo.CurrentCulture, out address)) |
darienf | 20:6d2af70c92ab | 178 | { |
darienf | 20:6d2af70c92ab | 179 | lis2hd.WriteReg(address, data); |
darienf | 20:6d2af70c92ab | 180 | } |
darienf | 20:6d2af70c92ab | 181 | } |
darienf | 20:6d2af70c92ab | 182 | } |
darienf | 20:6d2af70c92ab | 183 | |
darienf | 20:6d2af70c92ab | 184 | private void btnSpiReadReg_Click(object sender, EventArgs e) |
darienf | 20:6d2af70c92ab | 185 | { |
darienf | 20:6d2af70c92ab | 186 | |
darienf | 20:6d2af70c92ab | 187 | } |
darienf | 20:6d2af70c92ab | 188 | |
darienf | 20:6d2af70c92ab | 189 | private void btnI2cWriteData_Click(object sender, EventArgs e) |
darienf | 20:6d2af70c92ab | 190 | { |
darienf | 20:6d2af70c92ab | 191 | |
darienf | 20:6d2af70c92ab | 192 | } |
darienf | 20:6d2af70c92ab | 193 | |
darienf | 20:6d2af70c92ab | 194 | private void btnShowHideRpcLog_Click(object sender, EventArgs e) |
darienf | 20:6d2af70c92ab | 195 | { |
darienf | 20:6d2af70c92ab | 196 | if (rpcClient.IsRpcLogShown() == false) |
darienf | 20:6d2af70c92ab | 197 | { |
darienf | 20:6d2af70c92ab | 198 | rpcClient.ShowRpcLog(true); |
darienf | 20:6d2af70c92ab | 199 | btnShowHideRpcLog.Text = "Hide RPC Log"; |
darienf | 20:6d2af70c92ab | 200 | } |
darienf | 20:6d2af70c92ab | 201 | else |
darienf | 20:6d2af70c92ab | 202 | { |
darienf | 20:6d2af70c92ab | 203 | rpcClient.ShowRpcLog(false); |
darienf | 20:6d2af70c92ab | 204 | btnShowHideRpcLog.Text = "Show RPC Log"; |
darienf | 20:6d2af70c92ab | 205 | } |
darienf | 20:6d2af70c92ab | 206 | } |
darienf | 20:6d2af70c92ab | 207 | |
darienf | 20:6d2af70c92ab | 208 | private void btnMAX30001ReadReg_Click(object sender, EventArgs e) |
darienf | 20:6d2af70c92ab | 209 | { |
darienf | 20:6d2af70c92ab | 210 | byte address; |
darienf | 20:6d2af70c92ab | 211 | if (byte.TryParse(tbMAX30001Address.Text, NumberStyles.HexNumber, CultureInfo.CurrentCulture, out address)) |
darienf | 20:6d2af70c92ab | 212 | { |
darienf | 20:6d2af70c92ab | 213 | int value = max30001.ReadReg(address); |
darienf | 20:6d2af70c92ab | 214 | tbMAX30001ReadData.Text = value.ToString("X4"); |
darienf | 20:6d2af70c92ab | 215 | } |
darienf | 20:6d2af70c92ab | 216 | } |
darienf | 20:6d2af70c92ab | 217 | |
darienf | 20:6d2af70c92ab | 218 | private void btnMAX30001WriteReg_Click(object sender, EventArgs e) |
darienf | 20:6d2af70c92ab | 219 | { |
darienf | 20:6d2af70c92ab | 220 | int data; |
darienf | 20:6d2af70c92ab | 221 | byte address; |
darienf | 20:6d2af70c92ab | 222 | if (int.TryParse(tbMAX30001WriteData.Text, NumberStyles.HexNumber, CultureInfo.CurrentCulture, out data)) |
darienf | 20:6d2af70c92ab | 223 | { |
darienf | 20:6d2af70c92ab | 224 | if (byte.TryParse(tbMAX30001Address.Text, NumberStyles.HexNumber, CultureInfo.CurrentCulture, out address)) |
darienf | 20:6d2af70c92ab | 225 | { |
darienf | 20:6d2af70c92ab | 226 | max30001.WriteReg(address, data); |
darienf | 20:6d2af70c92ab | 227 | } |
darienf | 20:6d2af70c92ab | 228 | } |
darienf | 20:6d2af70c92ab | 229 | } |
darienf | 20:6d2af70c92ab | 230 | |
darienf | 20:6d2af70c92ab | 231 | /* |
darienf | 20:6d2af70c92ab | 232 | |
darienf | 20:6d2af70c92ab | 233 | void LogRpcRequest(string request) |
darienf | 20:6d2af70c92ab | 234 | { |
darienf | 20:6d2af70c92ab | 235 | txt_Status.Text += request; |
darienf | 20:6d2af70c92ab | 236 | } |
darienf | 20:6d2af70c92ab | 237 | |
darienf | 20:6d2af70c92ab | 238 | void LogRpcReply(string reply) |
darienf | 20:6d2af70c92ab | 239 | { |
darienf | 20:6d2af70c92ab | 240 | txt_Status.Text += reply + "\r\n"; |
darienf | 20:6d2af70c92ab | 241 | } |
darienf | 20:6d2af70c92ab | 242 | |
darienf | 20:6d2af70c92ab | 243 | private void txt_Status_TextChanged(object sender, EventArgs e) |
darienf | 20:6d2af70c92ab | 244 | { |
darienf | 20:6d2af70c92ab | 245 | //Scroll to the bottom of the textbox when text is added |
darienf | 20:6d2af70c92ab | 246 | txt_Status.SelectionStart = txt_Status.Text.Length; |
darienf | 20:6d2af70c92ab | 247 | txt_Status.ScrollToCaret(); |
darienf | 20:6d2af70c92ab | 248 | txt_Status.Refresh(); |
darienf | 20:6d2af70c92ab | 249 | } |
darienf | 20:6d2af70c92ab | 250 | |
darienf | 20:6d2af70c92ab | 251 | private void btn_Clear_Click(object sender, EventArgs e) |
darienf | 20:6d2af70c92ab | 252 | { |
darienf | 20:6d2af70c92ab | 253 | //clear the status box |
darienf | 20:6d2af70c92ab | 254 | txt_Status.Text = ""; |
darienf | 20:6d2af70c92ab | 255 | } |
darienf | 20:6d2af70c92ab | 256 | */ |
darienf | 20:6d2af70c92ab | 257 | |
darienf | 20:6d2af70c92ab | 258 | } |
darienf | 20:6d2af70c92ab | 259 | } |