1-Wire® library for mbed. Complete 1-Wire library that supports our silicon masters along with a bit-bang master on the MAX32600MBED platform with one common interface for mbed. Slave support has also been included and more slaves will be added as time permits.

Dependents:   MAXREFDES131_Qt_Demo MAX32630FTHR_iButton_uSD_Logger MAX32630FTHR_DS18B20_uSD_Logger MAXREFDES130_131_Demo ... more

Superseded by MaximInterface.

Committer:
j3
Date:
Wed Mar 16 19:10:19 2016 +0000
Revision:
16:883becbd85f8
Parent:
14:7b2886a50321
Child:
17:b646b1e3970b
Updated DS2480B files

Who changed what in which revision?

UserRevisionLine numberNew contents of line
j3 3:644fc630f958 1 /******************************************************************//**
j3 3:644fc630f958 2 * @file ds2480b.cpp
j3 3:644fc630f958 3 *
j3 3:644fc630f958 4 * @author Justin Jordan
j3 3:644fc630f958 5 *
j3 3:644fc630f958 6 * @version 0.0.0
j3 3:644fc630f958 7 *
j3 3:644fc630f958 8 * Started: 31JAN16
j3 3:644fc630f958 9 *
j3 3:644fc630f958 10 * Updated:
j3 3:644fc630f958 11 *
j3 3:644fc630f958 12 * @brief Source file for DS2480B Async Serial to 1-wire master
j3 3:644fc630f958 13 ***********************************************************************
j3 3:644fc630f958 14 * Copyright (C) 2016 Maxim Integrated Products, Inc., All Rights Reserved.
j3 3:644fc630f958 15 *
j3 3:644fc630f958 16 * Permission is hereby granted, free of charge, to any person obtaining a
j3 3:644fc630f958 17 * copy of this software and associated documentation files (the "Software"),
j3 3:644fc630f958 18 * to deal in the Software without restriction, including without limitation
j3 3:644fc630f958 19 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
j3 3:644fc630f958 20 * and/or sell copies of the Software, and to permit persons to whom the
j3 3:644fc630f958 21 * Software is furnished to do so, subject to the following conditions:
j3 3:644fc630f958 22 *
j3 3:644fc630f958 23 * The above copyright notice and this permission notice shall be included
j3 3:644fc630f958 24 * in all copies or substantial portions of the Software.
j3 3:644fc630f958 25 *
j3 3:644fc630f958 26 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
j3 3:644fc630f958 27 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
j3 3:644fc630f958 28 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
j3 3:644fc630f958 29 * IN NO EVENT SHALL MAXIM INTEGRATED BE LIABLE FOR ANY CLAIM, DAMAGES
j3 3:644fc630f958 30 * OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
j3 3:644fc630f958 31 * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
j3 3:644fc630f958 32 * OTHER DEALINGS IN THE SOFTWARE.
j3 3:644fc630f958 33 *
j3 3:644fc630f958 34 * Except as contained in this notice, the name of Maxim Integrated
j3 3:644fc630f958 35 * Products, Inc. shall not be used except as stated in the Maxim Integrated
j3 3:644fc630f958 36 * Products, Inc. Branding Policy.
j3 3:644fc630f958 37 *
j3 3:644fc630f958 38 * The mere transfer of this software does not imply any licenses
j3 3:644fc630f958 39 * of trade secrets, proprietary technology, copyrights, patents,
j3 3:644fc630f958 40 * trademarks, maskwork rights, or any other form of intellectual
j3 3:644fc630f958 41 * property whatsoever. Maxim Integrated Products, Inc. retains all
j3 3:644fc630f958 42 * ownership rights.
j3 3:644fc630f958 43 **********************************************************************/
j3 3:644fc630f958 44
j3 3:644fc630f958 45
j3 3:644fc630f958 46 #include "ds2480b.h"
j3 3:644fc630f958 47
j3 3:644fc630f958 48
j3 3:644fc630f958 49 //*********************************************************************
j3 16:883becbd85f8 50 Ds2480b::Ds2480b(Serial &p_serial)
j3 16:883becbd85f8 51 :_p_serial(&p_serial), _serial_owner(false)
j3 3:644fc630f958 52 {
j3 3:644fc630f958 53 }
j3 3:644fc630f958 54
j3 3:644fc630f958 55
j3 3:644fc630f958 56 //*********************************************************************
j3 3:644fc630f958 57 Ds2480b::Ds2480b(PinName tx, PinName rx, uint32_t baud)
j3 16:883becbd85f8 58 :_p_serial(new Serial(tx, rx)), _serial_owner(true)
j3 3:644fc630f958 59 {
j3 3:644fc630f958 60 _p_serial->baud(baud);
j3 3:644fc630f958 61 }
j3 3:644fc630f958 62
j3 3:644fc630f958 63
j3 3:644fc630f958 64 //*********************************************************************
j3 3:644fc630f958 65 Ds2480b::~Ds2480b()
j3 3:644fc630f958 66 {
j3 3:644fc630f958 67 if(_serial_owner)
j3 3:644fc630f958 68 {
j3 3:644fc630f958 69 delete _p_serial;
j3 3:644fc630f958 70 }
j3 3:644fc630f958 71 }
j3 3:644fc630f958 72
j3 3:644fc630f958 73
j3 3:644fc630f958 74 //*********************************************************************
j3 14:7b2886a50321 75 bool Ds2480b::OWInitMaster()
j3 14:7b2886a50321 76 {
j3 14:7b2886a50321 77 bool rtn_val = false;
j3 14:7b2886a50321 78
j3 14:7b2886a50321 79 return(rtn_val);
j3 14:7b2886a50321 80 }
j3 14:7b2886a50321 81
j3 14:7b2886a50321 82
j3 14:7b2886a50321 83 //*********************************************************************
j3 3:644fc630f958 84 bool Ds2480b::OWReset()
j3 3:644fc630f958 85 {
j3 13:d1bdb03703de 86 bool rtn_val = false;
j3 3:644fc630f958 87
j3 3:644fc630f958 88 //TODO
j3 3:644fc630f958 89
j3 3:644fc630f958 90 return rtn_val;
j3 3:644fc630f958 91 }
j3 3:644fc630f958 92
j3 3:644fc630f958 93
j3 3:644fc630f958 94 //*********************************************************************
j3 3:644fc630f958 95 uint8_t Ds2480b::OWTouchBit(uint8_t sendbit)
j3 3:644fc630f958 96 {
j3 13:d1bdb03703de 97 uint8_t rtn_val = 0;
j3 3:644fc630f958 98
j3 3:644fc630f958 99 //TODO
j3 3:644fc630f958 100
j3 3:644fc630f958 101 return(rtn_val);
j3 3:644fc630f958 102 }
j3 3:644fc630f958 103
j3 3:644fc630f958 104
j3 3:644fc630f958 105
j3 3:644fc630f958 106 //*********************************************************************
j3 3:644fc630f958 107 bool Ds2480b::OWWriteByte(uint8_t sendbyte)
j3 3:644fc630f958 108 {
j3 13:d1bdb03703de 109 bool rtn_val = false;
j3 3:644fc630f958 110
j3 3:644fc630f958 111 //TODO
j3 3:644fc630f958 112
j3 3:644fc630f958 113 return rtn_val;
j3 3:644fc630f958 114 }
j3 3:644fc630f958 115
j3 3:644fc630f958 116
j3 3:644fc630f958 117 //*********************************************************************
j3 3:644fc630f958 118 uint8_t Ds2480b::OWReadByte(void)
j3 3:644fc630f958 119 {
j3 13:d1bdb03703de 120 uint8_t rtn_val = 0;
j3 3:644fc630f958 121
j3 3:644fc630f958 122 //TODO
j3 3:644fc630f958 123
j3 3:644fc630f958 124 return(rtn_val);
j3 3:644fc630f958 125 }
j3 3:644fc630f958 126
j3 3:644fc630f958 127
j3 3:644fc630f958 128 //*********************************************************************
j3 3:644fc630f958 129 bool Ds2480b::OWSearch(void)
j3 3:644fc630f958 130 {
j3 13:d1bdb03703de 131 bool rtn_val = false;
j3 3:644fc630f958 132
j3 3:644fc630f958 133 //TODO
j3 3:644fc630f958 134
j3 3:644fc630f958 135 return rtn_val;
j3 3:644fc630f958 136 }
j3 3:644fc630f958 137
j3 3:644fc630f958 138
j3 3:644fc630f958 139 //*********************************************************************
j3 5:ce108eeb878d 140 uint8_t Ds2480b::OWSpeed(OW_SPEED new_speed)
j3 3:644fc630f958 141 {
j3 13:d1bdb03703de 142 uint8_t rtn_val = 0;
j3 3:644fc630f958 143
j3 3:644fc630f958 144 //TODO
j3 3:644fc630f958 145
j3 3:644fc630f958 146 return(rtn_val);
j3 3:644fc630f958 147 }
j3 3:644fc630f958 148
j3 3:644fc630f958 149
j3 3:644fc630f958 150 //*********************************************************************
j3 5:ce108eeb878d 151 uint8_t Ds2480b::OWLevel(OW_LEVEL new_level)
j3 3:644fc630f958 152 {
j3 13:d1bdb03703de 153 uint8_t rtn_val = 0;
j3 3:644fc630f958 154
j3 3:644fc630f958 155 //TODO
j3 3:644fc630f958 156
j3 3:644fc630f958 157 return(rtn_val);
j3 3:644fc630f958 158 }
j3 3:644fc630f958 159
j3 3:644fc630f958 160
j3 3:644fc630f958 161 //*********************************************************************
j3 3:644fc630f958 162 bool Ds2480b::OWWriteBytePower(uint8_t sendbyte)
j3 3:644fc630f958 163 {
j3 13:d1bdb03703de 164 bool rtn_val = false;
j3 3:644fc630f958 165
j3 3:644fc630f958 166 //TODO
j3 3:644fc630f958 167
j3 3:644fc630f958 168 return rtn_val;
j3 3:644fc630f958 169 }
j3 3:644fc630f958 170
j3 3:644fc630f958 171
j3 3:644fc630f958 172 //*********************************************************************
j3 3:644fc630f958 173 bool Ds2480b::OWReadBitPower(uint8_t applyPowerResponse)
j3 3:644fc630f958 174 {
j3 13:d1bdb03703de 175 bool rtn_val = false;
j3 3:644fc630f958 176
j3 3:644fc630f958 177 //TODO
j3 3:644fc630f958 178
j3 3:644fc630f958 179 return rtn_val;
j3 3:644fc630f958 180 }