⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 memorybanknvcrcpw.java

📁 这是一个以JAVA编写的程序,本人还没有试过,是一个简单的温度控制系统
💻 JAVA
📖 第 1 页 / 共 2 页
字号:
/*--------------------------------------------------------------------------- * Copyright (C) 2002 Dallas Semiconductor Corporation, All Rights Reserved. * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), * to deal in the Software without restriction, including without limitation * the rights to use, copy, modify, merge, publish, distribute, sublicense, * and/or sell copies of the Software, and to permit persons to whom the * Software is furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included * in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY,  FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. * IN NO EVENT SHALL DALLAS SEMICONDUCTOR BE LIABLE FOR ANY CLAIM, DAMAGES * OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR * OTHER DEALINGS IN THE SOFTWARE. * * Except as contained in this notice, the name of Dallas Semiconductor * shall not be used except as stated in the Dallas Semiconductor * Branding Policy. *--------------------------------------------------------------------------- */package com.dalsemi.onewire.container;// importsimport com.dalsemi.onewire.OneWireException;import com.dalsemi.onewire.adapter.OneWireIOException;import com.dalsemi.onewire.utils.CRC16;import com.dalsemi.onewire.utils.Convert;/** * Memory bank class for the NVRAM with built-in CRC generation and Password * protected memory read/write iButtons and 1-Wire Devices.  An example of * such a devices is the DS1922 Thermochron with 8k or password protected * log memory. * *  @version    1.00, 11 Feb 2002 *  @author     SH */public class MemoryBankNVCRCPW   extends MemoryBankNVCRC{   /**    * Read Memory (with CRC and Password) Command    */   public static final byte READ_MEMORY_CRC_PW_COMMAND = (byte)0x69;   /**    * Scratchpad with Password.  Used as container for password.    */   protected MemoryBankScratchCRCPW scratchpadPW = null;   /**    * Password Container to access the passwords for the memory bank.    */   protected PasswordContainer ibPass = null;   /**    * Enable Provided Power for some Password checking.    */   public boolean enablePower = false;   /**    * Memory bank contstuctor.  Requires reference to the OneWireContainer    * this memory bank resides on.    */   public MemoryBankNVCRCPW(PasswordContainer ibutton, MemoryBankScratchCRCPW scratch)   {      super((OneWireContainer)ibutton, scratch);      ibPass = ibutton;      // initialize attributes of this memory bank      pageAutoCRC          = true;      readContinuePossible = true;      numVerifyBytes       = 0;      scratchpadPW = scratch;   }   /**    * Read a complete memory page with CRC verification provided by the    * device with extra information.  Not supported by all devices.    * See the method 'hasPageAutoCRC()'.    * See the method 'hasExtraInfo()' for a description of the optional    * extra information.    *    * @param  page          page number to read    * @param  readContinue  if 'true' then device read is continued without    *                       re-selecting.  This can only be used if the new    *                       readPagePacket() continious where the last one    *                       stopped and it is inside a    *                       'beginExclusive/endExclusive' block.    * @param  readBuf       byte array to put data read. Must have at least    *                       'getMaxPacketDataLength()' elements.    * @param  offset        offset into readBuf to place data    * @param  extraInfo     byte array to put extra info read into    *    * @throws OneWireIOException    * @throws OneWireException    */   public void readPageCRC (int page, boolean readContinue, byte[] readBuf,                            int offset, byte[] extraInfo)      throws OneWireIOException, OneWireException   {      readPageCRC(page, readContinue, readBuf, offset, extraInfo,                  extraInfoLength);   }   /**    * Read a complete memory page with CRC verification provided by the    * device with extra information.  Not supported by all devices.    * If not extra information available then just call with extraLength=0.    *    * @param  page          page number to read    * @param  readContinue  if 'true' then device read is continued without    *                       re-selecting.  This can only be used if the new    *                       readPagePacket() continious where the last one    *                       stopped and it is inside a    *                       'beginExclusive/endExclusive' block.    * @param  readBuf       byte array to put data read. Must have at least    *                       'getMaxPacketDataLength()' elements.    * @param  offset        offset into readBuf to place data    * @param  extraInfo     byte array to put extra info read into    * @param  extraLength   length of extra information    *    * @throws OneWireIOException    * @throws OneWireException    */   protected void readPageCRC (int page, boolean readContinue,                               byte[] readBuf, int offset, byte[] extraInfo,                               int extraLength)      throws OneWireIOException, OneWireException   {      int    last_crc = 0;      byte[] raw_buf;      // only needs to be implemented if supported by hardware      if (!pageAutoCRC)         throw new OneWireException(            "Read page with CRC not supported in this memory bank");      // attempt to put device at max desired speed      if (!readContinue)         sp.checkSpeed();      // check if read exceeds memory      if (page > numberPages)         throw new OneWireException("Read exceeds memory bank end");      // see if need to access the device      if (!readContinue ||!readContinuePossible)      {         // select the device         if (!ib.adapter.select(ib.address))         {            sp.forceVerify();            throw new OneWireIOException("Device select failed");         }         // build start reading memory block         raw_buf     = new byte [11];         raw_buf [0] = READ_MEMORY_CRC_PW_COMMAND;         int addr = page * pageLength + startPhysicalAddress;         raw_buf [1] = ( byte ) (addr & 0xFF);         raw_buf [2] = ( byte ) (((addr & 0xFFFF) >>> 8) & 0xFF);         if(ibPass.isContainerReadWritePasswordSet())            ibPass.getContainerReadWritePassword(raw_buf, 3);         else            ibPass.getContainerReadOnlyPassword(raw_buf, 3);         // perform CRC16 on first part (without the password)         last_crc = CRC16.compute(raw_buf, 0, 3, last_crc);         // do the first block for command, TA1, TA2, and password         if(enablePower)         {            ib.adapter.dataBlock(raw_buf, 0, 10);            ib.adapter.startPowerDelivery(ib.adapter.CONDITION_AFTER_BYTE);            ib.adapter.putByte(raw_buf[10]);            msWait(10);            ib.adapter.setPowerNormal();         }         else            ib.adapter.dataBlock(raw_buf, 0, 11);      }      // pre-fill with 0xFF      raw_buf = new byte [pageLength + extraLength + 2 + numVerifyBytes];      System.arraycopy(ffBlock, 0, raw_buf, 0, raw_buf.length);      // send block to read data + extra info? + crc      ib.adapter.dataBlock(raw_buf, 0, raw_buf.length);      // check the CRC      if (CRC16.compute(raw_buf, 0, raw_buf.length - numVerifyBytes, last_crc)              != 0x0000B001)      {         sp.forceVerify();         throw new OneWireIOException("Invalid CRC16 read from device.  Password may be incorrect.");      }      // extract the page data      System.arraycopy(raw_buf, 0, readBuf, offset, pageLength);      // optional extract the extra info      if (extraInfo != null)         System.arraycopy(raw_buf, pageLength, extraInfo, 0, extraLength);   }   /**    * Read  memory in the current bank with no CRC checking (device or    * data). The resulting data from this API may or may not be what is on    * the 1-Wire device.  It is recommends that the data contain some kind    * of checking (CRC) like in the readPagePacket() method or have    * the 1-Wire device provide the CRC as in readPageCRC().  readPageCRC()    * however is not supported on all memory types, see 'hasPageAutoCRC()'.    * If neither is an option then this method could be called more    * then once to at least verify that the same thing is read consistantly.    *    * @param  startAddr     starting physical address    * @param  readContinue  if 'true' then device read is continued without    *                       re-selecting.  This can only be used if the new    *                       read() continious where the last one led off    *                       and it is inside a 'beginExclusive/endExclusive'    *                       block.    * @param  readBuf       byte array to place read data into    * @param  offset        offset into readBuf to place data    * @param  len           length in bytes to read    *    * @throws OneWireIOException    * @throws OneWireException    */   public void read (int startAddr, boolean readContinue, byte[] readBuf,                     int offset, int len)      throws OneWireIOException, OneWireException   {      int i;

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -