Port of the FreeModbus Libary for mbed, copied from https://developer.mbed.org/users/cam/code/Modbus/ and upgraded to mbed 5

Dependents:   NUCLEO-F401-printf

Committer:
Rajit Singh
Date:
Wed Aug 16 17:12:19 2017 +0100
Revision:
0:9db3bed8fffd
First commit

Who changed what in which revision?

UserRevisionLine numberNew contents of line
Rajit Singh 0:9db3bed8fffd 1 /*
Rajit Singh 0:9db3bed8fffd 2 * FreeModbus Libary: A portable Modbus implementation for Modbus ASCII/RTU.
Rajit Singh 0:9db3bed8fffd 3 * Copyright (c) 2006 Christian Walter <wolti@sil.at>
Rajit Singh 0:9db3bed8fffd 4 * All rights reserved.
Rajit Singh 0:9db3bed8fffd 5 *
Rajit Singh 0:9db3bed8fffd 6 * Redistribution and use in source and binary forms, with or without
Rajit Singh 0:9db3bed8fffd 7 * modification, are permitted provided that the following conditions
Rajit Singh 0:9db3bed8fffd 8 * are met:
Rajit Singh 0:9db3bed8fffd 9 * 1. Redistributions of source code must retain the above copyright
Rajit Singh 0:9db3bed8fffd 10 * notice, this list of conditions and the following disclaimer.
Rajit Singh 0:9db3bed8fffd 11 * 2. Redistributions in binary form must reproduce the above copyright
Rajit Singh 0:9db3bed8fffd 12 * notice, this list of conditions and the following disclaimer in the
Rajit Singh 0:9db3bed8fffd 13 * documentation and/or other materials provided with the distribution.
Rajit Singh 0:9db3bed8fffd 14 * 3. The name of the author may not be used to endorse or promote products
Rajit Singh 0:9db3bed8fffd 15 * derived from this software without specific prior written permission.
Rajit Singh 0:9db3bed8fffd 16 *
Rajit Singh 0:9db3bed8fffd 17 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
Rajit Singh 0:9db3bed8fffd 18 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
Rajit Singh 0:9db3bed8fffd 19 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
Rajit Singh 0:9db3bed8fffd 20 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
Rajit Singh 0:9db3bed8fffd 21 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
Rajit Singh 0:9db3bed8fffd 22 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
Rajit Singh 0:9db3bed8fffd 23 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
Rajit Singh 0:9db3bed8fffd 24 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
Rajit Singh 0:9db3bed8fffd 25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
Rajit Singh 0:9db3bed8fffd 26 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Rajit Singh 0:9db3bed8fffd 27 *
Rajit Singh 0:9db3bed8fffd 28 * File: $Id: mbfunc.h,v 1.12 2006/12/07 22:10:34 wolti Exp $
Rajit Singh 0:9db3bed8fffd 29 */
Rajit Singh 0:9db3bed8fffd 30
Rajit Singh 0:9db3bed8fffd 31 #ifndef _MB_FUNC_H
Rajit Singh 0:9db3bed8fffd 32 #define _MB_FUNC_H
Rajit Singh 0:9db3bed8fffd 33
Rajit Singh 0:9db3bed8fffd 34 #ifdef __cplusplus
Rajit Singh 0:9db3bed8fffd 35 PR_BEGIN_EXTERN_C
Rajit Singh 0:9db3bed8fffd 36 #endif
Rajit Singh 0:9db3bed8fffd 37 #if MB_FUNC_OTHER_REP_SLAVEID_BUF > 0
Rajit Singh 0:9db3bed8fffd 38 eMBException eMBFuncReportSlaveID( UCHAR * pucFrame, USHORT * usLen );
Rajit Singh 0:9db3bed8fffd 39 #endif
Rajit Singh 0:9db3bed8fffd 40
Rajit Singh 0:9db3bed8fffd 41 #if MB_FUNC_READ_INPUT_ENABLED > 0
Rajit Singh 0:9db3bed8fffd 42 eMBException eMBFuncReadInputRegister( UCHAR * pucFrame, USHORT * usLen );
Rajit Singh 0:9db3bed8fffd 43 #endif
Rajit Singh 0:9db3bed8fffd 44
Rajit Singh 0:9db3bed8fffd 45 #if MB_FUNC_READ_HOLDING_ENABLED > 0
Rajit Singh 0:9db3bed8fffd 46 eMBException eMBFuncReadHoldingRegister( UCHAR * pucFrame, USHORT * usLen );
Rajit Singh 0:9db3bed8fffd 47 #endif
Rajit Singh 0:9db3bed8fffd 48
Rajit Singh 0:9db3bed8fffd 49 #if MB_FUNC_WRITE_HOLDING_ENABLED > 0
Rajit Singh 0:9db3bed8fffd 50 eMBException eMBFuncWriteHoldingRegister( UCHAR * pucFrame, USHORT * usLen );
Rajit Singh 0:9db3bed8fffd 51 #endif
Rajit Singh 0:9db3bed8fffd 52
Rajit Singh 0:9db3bed8fffd 53 #if MB_FUNC_WRITE_MULTIPLE_HOLDING_ENABLED > 0
Rajit Singh 0:9db3bed8fffd 54 eMBException eMBFuncWriteMultipleHoldingRegister( UCHAR * pucFrame, USHORT * usLen );
Rajit Singh 0:9db3bed8fffd 55 #endif
Rajit Singh 0:9db3bed8fffd 56
Rajit Singh 0:9db3bed8fffd 57 #if MB_FUNC_READ_COILS_ENABLED > 0
Rajit Singh 0:9db3bed8fffd 58 eMBException eMBFuncReadCoils( UCHAR * pucFrame, USHORT * usLen );
Rajit Singh 0:9db3bed8fffd 59 #endif
Rajit Singh 0:9db3bed8fffd 60
Rajit Singh 0:9db3bed8fffd 61 #if MB_FUNC_WRITE_COIL_ENABLED > 0
Rajit Singh 0:9db3bed8fffd 62 eMBException eMBFuncWriteCoil( UCHAR * pucFrame, USHORT * usLen );
Rajit Singh 0:9db3bed8fffd 63 #endif
Rajit Singh 0:9db3bed8fffd 64
Rajit Singh 0:9db3bed8fffd 65 #if MB_FUNC_WRITE_MULTIPLE_COILS_ENABLED > 0
Rajit Singh 0:9db3bed8fffd 66 eMBException eMBFuncWriteMultipleCoils( UCHAR * pucFrame, USHORT * usLen );
Rajit Singh 0:9db3bed8fffd 67 #endif
Rajit Singh 0:9db3bed8fffd 68
Rajit Singh 0:9db3bed8fffd 69 #if MB_FUNC_READ_DISCRETE_INPUTS_ENABLED > 0
Rajit Singh 0:9db3bed8fffd 70 eMBException eMBFuncReadDiscreteInputs( UCHAR * pucFrame, USHORT * usLen );
Rajit Singh 0:9db3bed8fffd 71 #endif
Rajit Singh 0:9db3bed8fffd 72
Rajit Singh 0:9db3bed8fffd 73 #if MB_FUNC_READWRITE_HOLDING_ENABLED > 0
Rajit Singh 0:9db3bed8fffd 74 eMBException eMBFuncReadWriteMultipleHoldingRegister( UCHAR * pucFrame, USHORT * usLen );
Rajit Singh 0:9db3bed8fffd 75 #endif
Rajit Singh 0:9db3bed8fffd 76
Rajit Singh 0:9db3bed8fffd 77 #ifdef __cplusplus
Rajit Singh 0:9db3bed8fffd 78 PR_END_EXTERN_C
Rajit Singh 0:9db3bed8fffd 79 #endif
Rajit Singh 0:9db3bed8fffd 80 #endif