Implementation of 1-Wire with added Alarm Search Functionality

Dependents:   Max32630_One_Wire_Interface

Committer:
mfruge
Date:
Tue Aug 13 14:42:37 2019 +0000
Revision:
142:85b71cfd617e
Parent:
140:6f32bf635c9d
Added functions to ROMCommands to add Alarm Search functionality

Who changed what in which revision?

UserRevisionLine numberNew contents of line
j3 4:ca27db159b10 1 /******************************************************************//**
j3 4:ca27db159b10 2 * Copyright (C) 2016 Maxim Integrated Products, Inc., All Rights Reserved.
j3 4:ca27db159b10 3 *
j3 4:ca27db159b10 4 * Permission is hereby granted, free of charge, to any person obtaining a
j3 4:ca27db159b10 5 * copy of this software and associated documentation files (the "Software"),
j3 4:ca27db159b10 6 * to deal in the Software without restriction, including without limitation
j3 4:ca27db159b10 7 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
j3 4:ca27db159b10 8 * and/or sell copies of the Software, and to permit persons to whom the
j3 4:ca27db159b10 9 * Software is furnished to do so, subject to the following conditions:
j3 4:ca27db159b10 10 *
j3 4:ca27db159b10 11 * The above copyright notice and this permission notice shall be included
j3 4:ca27db159b10 12 * in all copies or substantial portions of the Software.
j3 4:ca27db159b10 13 *
j3 4:ca27db159b10 14 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
j3 4:ca27db159b10 15 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
j3 4:ca27db159b10 16 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
j3 4:ca27db159b10 17 * IN NO EVENT SHALL MAXIM INTEGRATED BE LIABLE FOR ANY CLAIM, DAMAGES
j3 4:ca27db159b10 18 * OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
j3 4:ca27db159b10 19 * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
j3 4:ca27db159b10 20 * OTHER DEALINGS IN THE SOFTWARE.
j3 4:ca27db159b10 21 *
j3 4:ca27db159b10 22 * Except as contained in this notice, the name of Maxim Integrated
j3 4:ca27db159b10 23 * Products, Inc. shall not be used except as stated in the Maxim Integrated
j3 4:ca27db159b10 24 * Products, Inc. Branding Policy.
j3 4:ca27db159b10 25 *
j3 4:ca27db159b10 26 * The mere transfer of this software does not imply any licenses
j3 4:ca27db159b10 27 * of trade secrets, proprietary technology, copyrights, patents,
j3 4:ca27db159b10 28 * trademarks, maskwork rights, or any other form of intellectual
j3 4:ca27db159b10 29 * property whatsoever. Maxim Integrated Products, Inc. retains all
j3 4:ca27db159b10 30 * ownership rights.
j3 4:ca27db159b10 31 **********************************************************************/
j3 4:ca27db159b10 32
j3 4:ca27db159b10 33
IanBenzMaxim 86:2ce08ca58b9e 34 #ifndef ONEWIRE_MASTERS_H
IanBenzMaxim 86:2ce08ca58b9e 35 #define ONEWIRE_MASTERS_H
j3 4:ca27db159b10 36
j3 91:e80108bc870a 37
j3 104:3f48daed532b 38 #include "Masters/DS248x/DS2484/DS2484.h"
j3 104:3f48daed532b 39 #include "Masters/DS248x/DS2482EightChannel/DS2482EightChannel.h"
j3 104:3f48daed532b 40 #include "Masters/DS248x/DS2482SingleChannel/DS2482SingleChannel.h"
j3 104:3f48daed532b 41 #include "Masters/DS2480B/DS2480B.h"
j3 104:3f48daed532b 42 #include "Masters/DS2465/DS2465.h"
j3 10:0df2cc66fc47 43
j3 138:5bd0a7a82bb4 44 #if defined(TARGET_MAX32600)
j3 138:5bd0a7a82bb4 45 #include "Masters/TARGET_Maxim/TARGET_MAX32600/OwGpio/OwGpio.h"
j3 138:5bd0a7a82bb4 46 #endif
j3 4:ca27db159b10 47
j3 140:6f32bf635c9d 48 #if defined(TARGET_MAX32620) || defined(TARGET_MAX32625) || defined(TARGET_MAX32630)
j3 140:6f32bf635c9d 49 #include "Masters/TARGET_Maxim/MCU_OWM.h"
j3 140:6f32bf635c9d 50 #endif
j3 140:6f32bf635c9d 51
IanBenzMaxim 86:2ce08ca58b9e 52 #endif /*ONEWIRE_MASTERS_H*/