Implementation of 1-Wire with added Alarm Search Functionality
Dependents: Max32630_One_Wire_Interface
OneWire_Switches/OneWireSwitches.h@4:ca27db159b10, 2016-02-02 (annotated)
- Committer:
- j3
- Date:
- Tue Feb 02 21:34:27 2016 +0000
- Revision:
- 4:ca27db159b10
- Child:
- 17:b646b1e3970b
publishing privately for collaboration with other team members
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
j3 | 4:ca27db159b10 | 1 | /******************************************************************//** |
j3 | 4:ca27db159b10 | 2 | * @file OneWireSwitches.h |
j3 | 4:ca27db159b10 | 3 | * |
j3 | 4:ca27db159b10 | 4 | * @author Justin Jordan |
j3 | 4:ca27db159b10 | 5 | * |
j3 | 4:ca27db159b10 | 6 | * @version 0.0.0 |
j3 | 4:ca27db159b10 | 7 | * |
j3 | 4:ca27db159b10 | 8 | * Started: 31JAN16 |
j3 | 4:ca27db159b10 | 9 | * |
j3 | 4:ca27db159b10 | 10 | * Updated: |
j3 | 4:ca27db159b10 | 11 | * |
j3 | 4:ca27db159b10 | 12 | * @brief Header file for including 1-wire switch devices |
j3 | 4:ca27db159b10 | 13 | *********************************************************************** |
j3 | 4:ca27db159b10 | 14 | * Copyright (C) 2016 Maxim Integrated Products, Inc., All Rights Reserved. |
j3 | 4:ca27db159b10 | 15 | * |
j3 | 4:ca27db159b10 | 16 | * Permission is hereby granted, free of charge, to any person obtaining a |
j3 | 4:ca27db159b10 | 17 | * copy of this software and associated documentation files (the "Software"), |
j3 | 4:ca27db159b10 | 18 | * to deal in the Software without restriction, including without limitation |
j3 | 4:ca27db159b10 | 19 | * the rights to use, copy, modify, merge, publish, distribute, sublicense, |
j3 | 4:ca27db159b10 | 20 | * and/or sell copies of the Software, and to permit persons to whom the |
j3 | 4:ca27db159b10 | 21 | * Software is furnished to do so, subject to the following conditions: |
j3 | 4:ca27db159b10 | 22 | * |
j3 | 4:ca27db159b10 | 23 | * The above copyright notice and this permission notice shall be included |
j3 | 4:ca27db159b10 | 24 | * in all copies or substantial portions of the Software. |
j3 | 4:ca27db159b10 | 25 | * |
j3 | 4:ca27db159b10 | 26 | * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS |
j3 | 4:ca27db159b10 | 27 | * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF |
j3 | 4:ca27db159b10 | 28 | * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. |
j3 | 4:ca27db159b10 | 29 | * IN NO EVENT SHALL MAXIM INTEGRATED BE LIABLE FOR ANY CLAIM, DAMAGES |
j3 | 4:ca27db159b10 | 30 | * OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, |
j3 | 4:ca27db159b10 | 31 | * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR |
j3 | 4:ca27db159b10 | 32 | * OTHER DEALINGS IN THE SOFTWARE. |
j3 | 4:ca27db159b10 | 33 | * |
j3 | 4:ca27db159b10 | 34 | * Except as contained in this notice, the name of Maxim Integrated |
j3 | 4:ca27db159b10 | 35 | * Products, Inc. shall not be used except as stated in the Maxim Integrated |
j3 | 4:ca27db159b10 | 36 | * Products, Inc. Branding Policy. |
j3 | 4:ca27db159b10 | 37 | * |
j3 | 4:ca27db159b10 | 38 | * The mere transfer of this software does not imply any licenses |
j3 | 4:ca27db159b10 | 39 | * of trade secrets, proprietary technology, copyrights, patents, |
j3 | 4:ca27db159b10 | 40 | * trademarks, maskwork rights, or any other form of intellectual |
j3 | 4:ca27db159b10 | 41 | * property whatsoever. Maxim Integrated Products, Inc. retains all |
j3 | 4:ca27db159b10 | 42 | * ownership rights. |
j3 | 4:ca27db159b10 | 43 | **********************************************************************/ |
j3 | 4:ca27db159b10 | 44 | |
j3 | 4:ca27db159b10 | 45 | |
j3 | 4:ca27db159b10 | 46 | #ifndef ONEWIRESWITCHES_H |
j3 | 4:ca27db159b10 | 47 | #define ONEWIRESWITCHES_H |
j3 | 4:ca27db159b10 | 48 | |
j3 | 4:ca27db159b10 | 49 | |
j3 | 4:ca27db159b10 | 50 | #endif /*ONEWIRESWITCHES_H*/ |