mbproto.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: mbproto.h,v 1.10 2006/06/18 09:54:53 wolti Exp $
  20.   */
  21. #ifndef _MB_PROTO_H
  22. #define _MB_PROTO_H
  23. #ifdef __cplusplus
  24. PR_BEGIN_EXTERN_C
  25. #endif
  26. /* ----------------------- Defines ------------------------------------------*/
  27. #define MB_ADDRESS_BROADCAST    ( 0 )   /*! Modbus broadcast address. */
  28. #define MB_ADDRESS_MIN          ( 1 )   /*! Smallest possible slave address. */
  29. #define MB_ADDRESS_MAX          ( 247 ) /*! Biggest possible slave address. */
  30. #define MB_FUNC_NONE                        (  0 )
  31. #define MB_FUNC_READ_COILS                  (  1 )
  32. #define MB_FUNC_READ_DISCRETE_INPUTS        (  2 )
  33. #define MB_FUNC_WRITE_SINGLE_COIL           (  5 )
  34. #define MB_FUNC_WRITE_MULTIPLE_COILS        ( 15 )
  35. #define MB_FUNC_READ_HOLDING_REGISTER       (  3 )
  36. #define MB_FUNC_READ_INPUT_REGISTER         (  4 )
  37. #define MB_FUNC_WRITE_REGISTER              (  6 )
  38. #define MB_FUNC_WRITE_MULTIPLE_REGISTERS    ( 16 )
  39. #define MB_FUNC_DIAG_READ_EXCEPTION         (  7 )
  40. #define MB_FUNC_DIAG_DIAGNOSTIC             (  8 )
  41. #define MB_FUNC_DIAG_GET_COM_EVENT_CNT      ( 11 )
  42. #define MB_FUNC_DIAG_GET_COM_EVENT_LOG      ( 12 )
  43. #define MB_FUNC_OTHER_REPORT_SLAVEID        ( 17 )
  44. #define MB_FUNC_ERROR                       ( 128 )
  45. /* ----------------------- Type definitions ---------------------------------*/
  46. typedef enum
  47. {
  48.     MB_EX_NONE = 0x00,
  49.     MB_EX_ILLEGAL_FUNCTION = 0x01,
  50.     MB_EX_ILLEGAL_DATA_ADDRESS = 0x02,
  51.     MB_EX_ILLEGAL_DATA_VALUE = 0x03,
  52.     MB_EX_SLAVE_DEVICE_FAILURE = 0x04,
  53.     MB_EX_ACKNOWLEDGE = 0x05,
  54.     MB_EX_SLAVE_BUSY = 0x06,
  55.     MB_EX_MEMORY_PARITY_ERROR = 0x08,
  56.     MB_EX_GATEWAY_PATH_FAILED = 0x0A,
  57.     MB_EX_GATEWAY_TGT_FAILED = 0x0B,
  58. } eMBException;
  59. typedef         eMBException( *pxMBFunctionHandler ) ( UCHAR * pucFrame,
  60.                                                        USHORT * usLen );
  61. typedef struct
  62. {
  63.     UCHAR           ucFunctionCode;
  64.     pxMBFunctionHandler pxHandler;
  65. } xMBFunctionHandler;
  66. #ifdef __cplusplus
  67. PR_END_EXTERN_C
  68. #endif
  69. #endif