MAX32620HSP ECG with lead off detection
Dependencies: mbed HSP_ECG MAX14720 USBDevice
System/System.h@0:9ead5978d784, 2019-03-28 (annotated)
- Committer:
- douqan93
- Date:
- Thu Mar 28 08:10:23 2019 +0000
- Revision:
- 0:9ead5978d784
MAX32620HSP raw ECG data on serial
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
douqan93 | 0:9ead5978d784 | 1 | /******************************************************************************* |
douqan93 | 0:9ead5978d784 | 2 | * Copyright (C) 2016 Maxim Integrated Products, Inc., All Rights Reserved. |
douqan93 | 0:9ead5978d784 | 3 | * |
douqan93 | 0:9ead5978d784 | 4 | * Permission is hereby granted, free of charge, to any person obtaining a |
douqan93 | 0:9ead5978d784 | 5 | * copy of this software and associated documentation files (the "Software"), |
douqan93 | 0:9ead5978d784 | 6 | * to deal in the Software without restriction, including without limitation |
douqan93 | 0:9ead5978d784 | 7 | * the rights to use, copy, modify, merge, publish, distribute, sublicense, |
douqan93 | 0:9ead5978d784 | 8 | * and/or sell copies of the Software, and to permit persons to whom the |
douqan93 | 0:9ead5978d784 | 9 | * Software is furnished to do so, subject to the following conditions: |
douqan93 | 0:9ead5978d784 | 10 | * |
douqan93 | 0:9ead5978d784 | 11 | * The above copyright notice and this permission notice shall be included |
douqan93 | 0:9ead5978d784 | 12 | * in all copies or substantial portions of the Software. |
douqan93 | 0:9ead5978d784 | 13 | * |
douqan93 | 0:9ead5978d784 | 14 | * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS |
douqan93 | 0:9ead5978d784 | 15 | * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF |
douqan93 | 0:9ead5978d784 | 16 | * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. |
douqan93 | 0:9ead5978d784 | 17 | * IN NO EVENT SHALL MAXIM INTEGRATED BE LIABLE FOR ANY CLAIM, DAMAGES |
douqan93 | 0:9ead5978d784 | 18 | * OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, |
douqan93 | 0:9ead5978d784 | 19 | * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR |
douqan93 | 0:9ead5978d784 | 20 | * OTHER DEALINGS IN THE SOFTWARE. |
douqan93 | 0:9ead5978d784 | 21 | * |
douqan93 | 0:9ead5978d784 | 22 | * Except as contained in this notice, the name of Maxim Integrated |
douqan93 | 0:9ead5978d784 | 23 | * Products, Inc. shall not be used except as stated in the Maxim Integrated |
douqan93 | 0:9ead5978d784 | 24 | * Products, Inc. Branding Policy. |
douqan93 | 0:9ead5978d784 | 25 | * |
douqan93 | 0:9ead5978d784 | 26 | * The mere transfer of this software does not imply any licenses |
douqan93 | 0:9ead5978d784 | 27 | * of trade secrets, proprietary technology, copyrights, patents, |
douqan93 | 0:9ead5978d784 | 28 | * trademarks, maskwork rights, or any other form of intellectual |
douqan93 | 0:9ead5978d784 | 29 | * property whatsoever. Maxim Integrated Products, Inc. retains all |
douqan93 | 0:9ead5978d784 | 30 | * ownership rights. |
douqan93 | 0:9ead5978d784 | 31 | ******************************************************************************* |
douqan93 | 0:9ead5978d784 | 32 | */ |
douqan93 | 0:9ead5978d784 | 33 | #ifndef _SYSTEM_H_ |
douqan93 | 0:9ead5978d784 | 34 | #define _SYSTEM_H_ |
douqan93 | 0:9ead5978d784 | 35 | |
douqan93 | 0:9ead5978d784 | 36 | /** |
douqan93 | 0:9ead5978d784 | 37 | * This issues a reset to the I2C Peripheral |
douqan93 | 0:9ead5978d784 | 38 | */ |
douqan93 | 0:9ead5978d784 | 39 | void I2CM_Init_Reset(uint8_t index, int speed); |
douqan93 | 0:9ead5978d784 | 40 | |
douqan93 | 0:9ead5978d784 | 41 | #endif // _SYSTEM_H_ |