Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
IDataLoggingView.cs
00001 /******************************************************************************* 00002 * Copyright (C) 2016 Maxim Integrated Products, Inc., All rights Reserved. 00003 * 00004 * This software is protected by copyright laws of the United States and 00005 * of foreign countries. This material may also be protected by patent laws 00006 * and technology transfer regulations of the United States and of foreign 00007 * countries. This software is furnished under a license agreement and/or a 00008 * nondisclosure agreement and may only be used or reproduced in accordance 00009 * with the terms of those agreements. Dissemination of this information to 00010 * any party or parties not specified in the license agreement and/or 00011 * nondisclosure agreement is expressly prohibited. 00012 * 00013 * The above copyright notice and this permission notice shall be included 00014 * in all copies or substantial portions of the Software. 00015 * 00016 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS 00017 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF 00018 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. 00019 * IN NO EVENT SHALL MAXIM INTEGRATED BE LIABLE FOR ANY CLAIM, DAMAGES 00020 * OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, 00021 * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR 00022 * OTHER DEALINGS IN THE SOFTWARE. 00023 * 00024 * Except as contained in this notice, the name of Maxim Integrated 00025 * Products, Inc. shall not be used except as stated in the Maxim Integrated 00026 * Products, Inc. Branding Policy. 00027 * 00028 * The mere transfer of this software does not imply any licenses 00029 * of trade secrets, proprietary technology, copyrights, patents, 00030 * trademarks, maskwork rights, or any other form of intellectual 00031 * property whatsoever. Maxim Integrated Products, Inc. retains all 00032 * ownership rights. 00033 ******************************************************************************* 00034 */ 00035 00036 using System; 00037 namespace HealthSensorPlatform.CustomControls 00038 { 00039 public interface IDataLoggingView 00040 { 00041 int AccelSampleRate { get; } 00042 InitArgs.BIOZInitStart BioZArgs { get; set; } 00043 void BioZFunction(bool enable); 00044 bool Connected { get; set; } 00045 InitArgs.EcgInitStart EcgArgs { get; set; } 00046 bool EnableAccelerometer { get; set; } 00047 bool EnableBioz { get; set; } 00048 bool EnableEcg { get; set; } 00049 bool EnableFMSTR { get; } 00050 bool EnableOpticalHR { get; set; } 00051 bool EnableOpticalMulti { get; set; } 00052 bool EnableOpticalSpO2 { get; set; } 00053 bool EnablePace { get; set; } 00054 bool EnablePressure { get; set; } 00055 bool EnableRToR { get; set; } 00056 bool EnableTemperature1 { get; set; } 00057 bool EnableTemperature2 { get; set; } 00058 InitArgs.FMSTRInitStart FMSTRArgs { get; set; } 00059 InitArgs.HRModeInitStart HRModeArgs { get; set; } 00060 event EventHandler<EventArgs> LogDownloadStart; 00061 event DataLoggingView.LoggingParametersHandler LoggingParametersChanged; 00062 event EventHandler<EventArgs> MissionErase; 00063 event EventHandler<EventArgs> MissionRead; 00064 event EventHandler<EventArgs> MissionWrite; 00065 InitArgs.MultiModeInitStart MultiModeArgs { get; set; } 00066 InitArgs.PACEInitStart PaceArgs { get; set; } 00067 void PaceFunction(bool enable); 00068 bool ProcessGuiElements(); 00069 RPCSupport.RPCClient RPCClient { set; } 00070 InitArgs.RToRInitStart RToRArgs { get; set; } 00071 InitArgs.SpO2HRModeInitStart SpO2HRModeArgs { get; set; } 00072 void UpdateArgs(); 00073 void UpdateGuiElements(HealthSensorPlatform.Model.Mission missionSettings); 00074 bool ValidateGuiElements(); 00075 } 00076 }
Generated on Tue Jul 12 2022 21:52:39 by
1.7.2