All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.stepfunc.rodbus.DecodeLevel Maven / Gradle / Ivy

There is a newer version: 1.4.0
Show newest version
// This library is provided under the terms of a non-commercial license.
// 
// Please refer to the source repository for details:
// 
// https://github.com/stepfunc/rodbus/blob/master/LICENSE.txt
// 
// Please contact Step Function I/O if you are interested in commercial license:
// 
// [email protected]
package io.stepfunc.rodbus;

import org.joou.*;

/**
 * Controls the decoding of transmitted and received data at the application, transport, and link layer
 */
public final class DecodeLevel
{
    /**
     * Controls the protocol data unit decoding
     * 

Default value is {@link PduDecodeLevel#NOTHING}

*/ public PduDecodeLevel pdu = PduDecodeLevel.NOTHING; /** * Controls the application data unit decoding *

Default value is {@link AduDecodeLevel#NOTHING}

*/ public AduDecodeLevel adu = AduDecodeLevel.NOTHING; /** * Controls the logging of physical layer read/write *

Default value is {@link PhysDecodeLevel#NOTHING}

*/ public PhysDecodeLevel physical = PhysDecodeLevel.NOTHING; }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy