📄 onewirecontainer1d.java
字号:
/*--------------------------------------------------------------------------- * Copyright (C) 1999,2000 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.adapter.*;import java.util.Vector;import java.util.Enumeration;/** * <P> 1-Wire container for 512 byte memory with external counters, DS2423. This container * encapsulates the functionality of the 1-Wire family * type <B>1D</B> (hex)</P> * * <P> This 1-Wire device is primarily used as a counter with memory. </P> * * <P> Each counter is assosciated with a memory page. The counters for pages * 12 and 13 are incremented with a write to the memory on that page. The counters * for pages 14 and 15 are externally triggered. See the method * {@link #readCounter(int) readCounter} to read a counter directly. Note that the * the counters may also be read with the <CODE> PagedMemoryBank </CODE> interface * as 'extra' information on a page read. </P> * * <H3> Features </H3> * <UL> * <LI> 4096 bits (512 bytes) of read/write nonvolatile memory * <LI> 256-bit (32-byte) scratchpad ensures integrity of data * transfer * <LI> Memory partitioned into 256-bit (32-byte) pages for * packetizing data * <LI> Data integrity assured with strict read/write * protocols * <LI> Overdrive mode boosts communication to * 142 kbits per second * <LI> Four 32-bit read-only non rolling-over page * write cycle counters * <LI> Active-low external trigger inputs for two of * the counters with on-chip debouncing * compatible with reed and Wiegand switches * <LI> 32 factory-preset tamper-detect bits to * indicate physical intrusion * <LI> On-chip 16-bit CRC generator for * safeguarding data transfers * <LI> Operating temperature range from -40°C to * +70°C * <LI> Over 10 years of data retention * </UL> * * <H3> Memory </H3> * * <P> The memory can be accessed through the objects that are returned * from the {@link #getMemoryBanks() getMemoryBanks} method. </P> * * The following is a list of the MemoryBank instances that are returned: * * <UL> * <LI> <B> Scratchpad Ex </B> * <UL> * <LI> <I> Implements </I> {@link com.dalsemi.onewire.container.MemoryBank MemoryBank}, * {@link com.dalsemi.onewire.container.PagedMemoryBank PagedMemoryBank} * <LI> <I> Size </I> 32 starting at physical address 0 * <LI> <I> Features</I> Read/Write not-general-purpose volatile * <LI> <I> Pages</I> 1 pages of length 32 bytes * <LI> <I> Extra information for each page</I> Target address, offset, length 3 * </UL> * <LI> <B> Main Memory </B> * <UL> * <LI> <I> Implements </I> {@link com.dalsemi.onewire.container.MemoryBank MemoryBank}, * {@link com.dalsemi.onewire.container.PagedMemoryBank PagedMemoryBank} * <LI> <I> Size </I> 384 starting at physical address 0 * <LI> <I> Features</I> Read/Write general-purpose non-volatile * <LI> <I> Pages</I> 12 pages of length 32 bytes giving 29 bytes Packet data payload * <LI> <I> Page Features </I> page-device-CRC * </UL> * <LI> <B> Memory with write cycle counter </B> * <UL> * <LI> <I> Implements </I> {@link com.dalsemi.onewire.container.MemoryBank MemoryBank}, * {@link com.dalsemi.onewire.container.PagedMemoryBank PagedMemoryBank} * <LI> <I> Size </I> 64 starting at physical address 384 * <LI> <I> Features</I> Read/Write general-purpose non-volatile * <LI> <I> Pages</I> 2 pages of length 32 bytes giving 29 bytes Packet data payload * <LI> <I> Page Features </I> page-device-CRC * <LI> <I> Extra information for each page</I> Write cycle counter, length 8 * </UL> * <LI> <B> Memory with externally triggered counter </B> * <UL> * <LI> <I> Implements </I> {@link com.dalsemi.onewire.container.MemoryBank MemoryBank}, * {@link com.dalsemi.onewire.container.PagedMemoryBank PagedMemoryBank} * <LI> <I> Size </I> 64 starting at physical address 448 * <LI> <I> Features</I> Read/Write general-purpose non-volatile * <LI> <I> Pages</I> 2 pages of length 32 bytes giving 29 bytes Packet data payload * <LI> <I> Page Features </I> page-device-CRC * <LI> <I> Extra information for each page</I> Externally triggered counter, length 8 * </UL> * </UL> * * <H3> Usage </H3> * * <DL> * <DD> <H4> Example</H4> * Read the two external counters of this containers instance 'owd': * <PRE> <CODE> * System.out.print("Counter on page 14: " + owd.readCounter(14)); * System.out.print("Counter on page 15: " + owd.readCounter(15)); * </CODE> </PRE> * <DD> See the usage example in * {@link com.dalsemi.onewire.container.OneWireContainer OneWireContainer} * to enumerate the MemoryBanks. * <DD> See the usage examples in * {@link com.dalsemi.onewire.container.MemoryBank MemoryBank} and * {@link com.dalsemi.onewire.container.PagedMemoryBank PagedMemoryBank} * for bank specific operations. * </DL> * * <H3> DataSheet </H3> * <DL> * <DD><A HREF="http://pdfserv.maxim-ic.com/arpdf/DS2422-DS2423.pdf"> http://pdfserv.maxim-ic.com/arpdf/DS2422-DS2423.pdf</A> * </DL> * * @see com.dalsemi.onewire.container.MemoryBank * @see com.dalsemi.onewire.container.PagedMemoryBank * * @version 0.00, 28 Aug 2000 * @author DS */public class OneWireContainer1D extends OneWireContainer{ //-------- //-------- Static Final Variables //-------- /** * DS2423 read memory command */ private static final byte READ_MEMORY_COMMAND = ( byte ) 0xA5; //-------- //-------- Variables //-------- /** * Internal buffer */ private byte[] buffer = new byte [14]; //-------- //-------- Constructors //-------- /** * Create an empty container that is not complete until after a call * to <code>setupContainer</code>. <p> * * This is one of the methods to construct a container. The others are * through creating a OneWireContainer with parameters. * * @see #setupContainer(com.dalsemi.onewire.adapter.DSPortAdapter,byte[]) super.setupContainer() */ public OneWireContainer1D () { super(); } /** * Create a container with the provided adapter instance * and the address of the iButton or 1-Wire device.<p> * * This is one of the methods to construct a container. The other is * through creating a OneWireContainer with NO parameters. * * @param sourceAdapter adapter instance used to communicate with * this iButton * @param newAddress {@link com.dalsemi.onewire.utils.Address Address} * of this 1-Wire device * * @see #OneWireContainer1D() OneWireContainer1D * @see com.dalsemi.onewire.utils.Address utils.Address */ public OneWireContainer1D (DSPortAdapter sourceAdapter, byte[] newAddress) { super(sourceAdapter, newAddress); } /** * Create a container with the provided adapter instance * and the address of the iButton or 1-Wire device.<p> *
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -