mbframe.h
上传用户:kongshuqi
上传日期:2013-10-09
资源大小:59k
文件大小:3k
源码类别:

通讯编程

开发平台:

Visual C++

  1.  /*
  2.   * FreeModbus Libary: A portable Modbus implementation for Modbus ASCII/RTU.
  3.   * Copyright (C) 2006 Christian Walter <wolti@sil.at>
  4.   *
  5.   * This library is free software; you can redistribute it and/or
  6.   * modify it under the terms of the GNU Lesser General Public
  7.   * License as published by the Free Software Foundation; either
  8.   * version 2.1 of the License, or (at your option) any later version.
  9.   *
  10.   * This library is distributed in the hope that it will be useful,
  11.   * but WITHOUT ANY WARRANTY; without even the implied warranty of
  12.   * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  13.   * Lesser General Public License for more details.
  14.   *
  15.   * You should have received a copy of the GNU Lesser General Public
  16.   * License along with this library; if not, write to the Free Software
  17.   * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
  18.   *
  19.   * File: $Id: mbframe.h,v 1.8 2006/06/25 00:12:28 wolti Exp $
  20.   */
  21. #ifndef _MB_FRAME_H
  22. #define _MB_FRAME_H
  23. #ifdef __cplusplus
  24. PR_BEGIN_EXTERN_C
  25. #endif
  26. /*!
  27.  * Constants which defines the format of a modbus frame. The example is
  28.  * shown for a Modbus RTU/ASCII frame. Note that the Modbus PDU is not
  29.  * dependent on the underlying transport.
  30.  *
  31.  * <code>
  32.  * <------------------------ MODBUS SERIAL LINE PDU (1) ------------------->
  33.  *              <----------- MODBUS PDU (1') ---------------->
  34.  *  +-----------+---------------+----------------------------+-------------+
  35.  *  | Address   | Function Code | Data                       | CRC/LRC     |
  36.  *  +-----------+---------------+----------------------------+-------------+
  37.  *  |           |               |                                   |
  38.  * (2)        (3/2')           (3')                                (4)
  39.  *
  40.  * (1)  ... MB_SER_PDU_SIZE_MAX = 256
  41.  * (2)  ... MB_SER_PDU_ADDR_OFF = 0
  42.  * (3)  ... MB_SER_PDU_PDU_OFF  = 1
  43.  * (4)  ... MB_SER_PDU_SIZE_CRC = 2
  44.  *
  45.  * (1') ... MB_PDU_SIZE_MAX     = 253
  46.  * (2') ... MB_PDU_FUNC_OFF     = 0
  47.  * (3') ... MB_PDU_DATA_OFF     = 1
  48.  * </code>
  49.  */
  50. /* ----------------------- Defines ------------------------------------------*/
  51. #define MB_PDU_SIZE_MAX     253 /*!< Maximum size of a PDU. */
  52. #define MB_PDU_SIZE_MIN     1   /*!< Function Code */
  53. #define MB_PDU_FUNC_OFF     0   /*!< Offset of function code in PDU. */
  54. #define MB_PDU_DATA_OFF     1   /*!< Offset for response data in PDU. */
  55. /* ----------------------- Prototypes  0-------------------------------------*/
  56. typedef void    ( *pvMBFrameStart ) ( void );
  57. typedef void    ( *pvMBFrameStop ) ( void );
  58. typedef eMBErrorCode( *peMBFrameReceive ) ( UCHAR * pucRcvAddress,
  59.                                             UCHAR ** pucFrame,
  60.                                             USHORT * pusLength );
  61. typedef eMBErrorCode( *peMBFrameSend ) ( UCHAR slaveAddress,
  62.                                          const UCHAR * pucFrame,
  63.                                          USHORT usLength );
  64. typedef void( *pvMBFrameClose ) ( void );
  65. #ifdef __cplusplus
  66. PR_END_EXTERN_C
  67. #endif
  68. #endif