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.
hspguisourcev301/HspGuiSourceV301/HSPGui/Model/FifoStruct.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 System.Collections.Generic; | 
| darienf | 3:36de8b9e4b1a | 38 | using System.Linq; | 
| darienf | 3:36de8b9e4b1a | 39 | using System.Text; | 
| darienf | 3:36de8b9e4b1a | 40 | |
| darienf | 3:36de8b9e4b1a | 41 | namespace HealthSensorPlatform.Model | 
| darienf | 3:36de8b9e4b1a | 42 | { | 
| darienf | 3:36de8b9e4b1a | 43 | public struct EcgFifo | 
| darienf | 3:36de8b9e4b1a | 44 | { | 
| darienf | 3:36de8b9e4b1a | 45 | /// <summary> | 
| darienf | 3:36de8b9e4b1a | 46 | /// ECG in millivolts | 
| darienf | 3:36de8b9e4b1a | 47 | /// </summary> | 
| darienf | 3:36de8b9e4b1a | 48 | public double Data; | 
| darienf | 3:36de8b9e4b1a | 49 | /// <summary> | 
| darienf | 3:36de8b9e4b1a | 50 | /// ECG FIFO raw code | 
| darienf | 3:36de8b9e4b1a | 51 | /// </summary> | 
| darienf | 3:36de8b9e4b1a | 52 | public int Code; | 
| darienf | 3:36de8b9e4b1a | 53 | /// <summary> | 
| darienf | 3:36de8b9e4b1a | 54 | /// ECG_DATA bit field | 
| darienf | 3:36de8b9e4b1a | 55 | /// </summary> | 
| darienf | 3:36de8b9e4b1a | 56 | public int EcgData; | 
| darienf | 3:36de8b9e4b1a | 57 | /// <summary> | 
| darienf | 3:36de8b9e4b1a | 58 | /// PTAG bit field | 
| darienf | 3:36de8b9e4b1a | 59 | /// </summary> | 
| darienf | 3:36de8b9e4b1a | 60 | public int PTag; | 
| darienf | 3:36de8b9e4b1a | 61 | /// <summary> | 
| darienf | 3:36de8b9e4b1a | 62 | /// ETAG bit field | 
| darienf | 3:36de8b9e4b1a | 63 | /// </summary> | 
| darienf | 3:36de8b9e4b1a | 64 | public int ETag; | 
| darienf | 3:36de8b9e4b1a | 65 | } | 
| darienf | 3:36de8b9e4b1a | 66 | |
| darienf | 3:36de8b9e4b1a | 67 | public struct BioZFifo | 
| darienf | 3:36de8b9e4b1a | 68 | { | 
| darienf | 3:36de8b9e4b1a | 69 | /// <summary> | 
| darienf | 3:36de8b9e4b1a | 70 | /// BioZ in Ohms | 
| darienf | 3:36de8b9e4b1a | 71 | /// </summary> | 
| darienf | 3:36de8b9e4b1a | 72 | public double Data; | 
| darienf | 3:36de8b9e4b1a | 73 | /// <summary> | 
| darienf | 3:36de8b9e4b1a | 74 | /// BIOZ FIFO raw code | 
| darienf | 3:36de8b9e4b1a | 75 | /// </summary> | 
| darienf | 3:36de8b9e4b1a | 76 | public int Code; | 
| darienf | 3:36de8b9e4b1a | 77 | /// <summary> | 
| darienf | 3:36de8b9e4b1a | 78 | /// BIOZ_DATA bit field | 
| darienf | 3:36de8b9e4b1a | 79 | /// </summary> | 
| darienf | 3:36de8b9e4b1a | 80 | public int BioZData; | 
| darienf | 3:36de8b9e4b1a | 81 | /// <summary> | 
| darienf | 3:36de8b9e4b1a | 82 | /// BTAG bit field | 
| darienf | 3:36de8b9e4b1a | 83 | /// </summary> | 
| darienf | 3:36de8b9e4b1a | 84 | public int BTag; | 
| darienf | 3:36de8b9e4b1a | 85 | } | 
| darienf | 3:36de8b9e4b1a | 86 | } |