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

通讯编程

开发平台:

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: mbfunc.h,v 1.10 2006/06/18 09:54:53 wolti Exp $
  20.   */
  21. #ifndef _MB_FUNC_H
  22. #define _MB_FUNC_H
  23. #ifdef __cplusplus
  24. PR_BEGIN_EXTERN_C
  25. #endif
  26. #if MB_FUNC_OTHER_REP_SLAVEID_BUF > 0
  27. eMBException    eMBFuncReportSlaveID( UCHAR * pucFrame, USHORT * usLen );
  28. #endif
  29. #if MB_FUNC_READ_INPUT_ENABLED > 0
  30. eMBException    eMBFuncReadInputRegister( UCHAR * pucFrame, USHORT * usLen );
  31. #endif
  32. #if MB_FUNC_READ_HOLDING_ENABLED > 0
  33. eMBException    eMBFuncReadHoldingRegister( UCHAR * pucFrame, USHORT * usLen );
  34. #endif
  35. #if MB_FUNC_WRITE_HOLDING_ENABLED > 0
  36. eMBException    eMBFuncWriteHoldingRegister( UCHAR * pucFrame, USHORT * usLen );
  37. #endif
  38. #if MB_FUNC_WRITE_MULTIPLE_HOLDING_ENABLED > 0
  39. eMBException    eMBFuncWriteMultipleHoldingRegister( UCHAR * pucFrame,
  40.                                                      USHORT * usLen );
  41. #endif
  42. #if MB_FUNC_READ_COILS_ENABLED > 0
  43. eMBException    eMBFuncReadCoils( UCHAR * pucFrame, USHORT * usLen );
  44. #endif
  45. #if MB_FUNC_WRITE_COIL_ENABLED > 0
  46. eMBException    eMBFuncWriteCoil( UCHAR * pucFrame, USHORT * usLen );
  47. #endif
  48. #if MB_FUNC_WRITE_MULTIPLE_COILS_ENABLED > 0
  49. eMBException    eMBFuncWriteMultipleCoils( UCHAR * pucFrame, USHORT * usLen );
  50. #endif
  51. #if MB_FUNC_READ_DISCRETE_INPUTS_ENABLED > 0
  52. eMBException    eMBFuncReadDiscreteInputs( UCHAR * pucFrame, USHORT * usLen );
  53. #endif
  54. #ifdef __cplusplus
  55. PR_END_EXTERN_C
  56. #endif
  57. #endif