| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465 | /*  * FreeModbus Libary: A portable Modbus implementation for Modbus ASCII/RTU. * Copyright (c) 2006-2018 Christian Walter <cwalter@embedded-solutions.at> * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * 1. Redistributions of source code must retain the above copyright *    notice, this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright *    notice, this list of conditions and the following disclaimer in the *    documentation and/or other materials provided with the distribution. * 3. The name of the author may not be used to endorse or promote products *    derived from this software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * *//* ----------------------- System includes ----------------------------------*/#include "stdlib.h"#include "string.h"/* ----------------------- Platform includes --------------------------------*/#include "port.h"/* ----------------------- Modbus includes ----------------------------------*/#include "mb.h"#include "mbconfig.h"#include "mbframe.h"#include "mbproto.h"#include "mbfunc.h"#include "mbport.h"#if MB_RTU_ENABLED == 1#include "mbrtu.h"#endif#if MB_ASCII_ENABLED == 1#include "mbascii.h"#endif#if MB_TCP_ENABLED == 1#include "mbtcp.h"#endif#ifndef MB_PORT_HAS_CLOSE#define MB_PORT_HAS_CLOSE 0#endif//#include "tinystdio.h"UCHAR rcvAddress;/* ----------------------- Static variables ---------------------------------*/static UCHAR    ucMBAddress;static eMBMode  eMBCurrentMode;static enum{    STATE_ENABLED,    STATE_DISABLED,    STATE_NOT_INITIALIZED} eMBState = STATE_NOT_INITIALIZED;/* Functions pointer which are initialized in eMBInit( ). Depending on the * mode (RTU or ASCII) the are set to the correct implementations. */static peMBFrameSend peMBFrameSendCur;static pvMBFrameStart pvMBFrameStartCur;static pvMBFrameStop pvMBFrameStopCur;static peMBFrameReceive peMBFrameReceiveCur;static pvMBFrameClose pvMBFrameCloseCur;/* Callback functions required by the porting layer. They are called when * an external event has happend which includes a timeout or the reception * or transmission of a character. */BOOL( *pxMBFrameCBByteReceived ) ( void );BOOL( *pxMBFrameCBTransmitterEmpty ) ( void );BOOL( *pxMBPortCBTimerExpired ) ( void );BOOL( *pxMBFrameCBReceiveFSMCur ) ( void );BOOL( *pxMBFrameCBTransmitFSMCur ) ( void );/* An array of Modbus functions handlers which associates Modbus function * codes with implementing functions. */static xMBFunctionHandler xFuncHandlers[MB_FUNC_HANDLERS_MAX] = {#if MB_FUNC_OTHER_REP_SLAVEID_ENABLED > 0    {MB_FUNC_OTHER_REPORT_SLAVEID, eMBFuncReportSlaveID},#endif#if MB_FUNC_READ_INPUT_ENABLED > 0    {MB_FUNC_READ_INPUT_REGISTER, eMBFuncReadInputRegister},#endif#if MB_FUNC_READ_HOLDING_ENABLED > 0    {MB_FUNC_READ_HOLDING_REGISTER, eMBFuncReadHoldingRegister},#endif#if MB_FUNC_WRITE_MULTIPLE_HOLDING_ENABLED > 0    {MB_FUNC_WRITE_MULTIPLE_REGISTERS, eMBFuncWriteMultipleHoldingRegister},#endif#if MB_FUNC_WRITE_HOLDING_ENABLED > 0    {MB_FUNC_WRITE_REGISTER, eMBFuncWriteHoldingRegister},#endif#if MB_FUNC_READWRITE_HOLDING_ENABLED > 0    {MB_FUNC_READWRITE_MULTIPLE_REGISTERS, eMBFuncReadWriteMultipleHoldingRegister},#endif#if MB_FUNC_READ_COILS_ENABLED > 0    {MB_FUNC_READ_COILS, eMBFuncReadCoils},#endif#if MB_FUNC_WRITE_COIL_ENABLED > 0    {MB_FUNC_WRITE_SINGLE_COIL, eMBFuncWriteCoil},#endif#if MB_FUNC_WRITE_MULTIPLE_COILS_ENABLED > 0    {MB_FUNC_WRITE_MULTIPLE_COILS, eMBFuncWriteMultipleCoils},#endif#if MB_FUNC_READ_DISCRETE_INPUTS_ENABLED > 0    {MB_FUNC_READ_DISCRETE_INPUTS, eMBFuncReadDiscreteInputs},#endif#if MB_FUNC_UPDATE_ENABLED > 0    {MB_FUNC_UPDATE, eMBFuncUpdate},#endif#if MB_FUNC_SET_ADDR_ID_ENABLED > 0    {MB_FUNC_SET_ADDR_ID, eMBFuncSetAddrId},#endif#if MB_FUNC_SET_ADDR_SERIAL_ENABLED > 0    {MB_FUNC_SET_ADDR_SERIAL, eMBFuncSetAddrSerial},#endif#if MB_FUNC_READ_FILE_RECORD_ENABLED > 0     {MB_FUNC_READ_FILE_RECORD, eMBFuncReadFileRecord}  #endif    };/* ----------------------- Start implementation -----------------------------*/eMBErrorCodeeMBInit( eMBMode eMode, UCHAR ucSlaveAddress, UCHAR ucPort, ULONG ulBaudRate,          eMBParity eParity, unsigned int stop_bit ){    eMBErrorCode    eStatus = MB_ENOERR;    /* check preconditions */    if( ( ucSlaveAddress == MB_ADDRESS_BROADCAST ) ||        ( ucSlaveAddress < MB_ADDRESS_MIN ) || ( ucSlaveAddress > MB_ADDRESS_MAX ) )    {        eStatus = MB_EINVAL;    }    else    {        ucMBAddress = ucSlaveAddress;        switch ( eMode )        {#if MB_RTU_ENABLED > 0        case MB_RTU:            pvMBFrameStartCur = eMBRTUStart;            pvMBFrameStopCur = eMBRTUStop;            peMBFrameSendCur = eMBRTUSend;            peMBFrameReceiveCur = eMBRTUReceive;            pvMBFrameCloseCur = MB_PORT_HAS_CLOSE ? vMBPortClose : NULL;            pxMBFrameCBByteReceived = xMBRTUReceiveFSM;            pxMBFrameCBTransmitterEmpty = xMBRTUTransmitFSM;            pxMBPortCBTimerExpired = xMBRTUTimerT35Expired;            eStatus = eMBRTUInit( ucMBAddress, ucPort, ulBaudRate, eParity, stop_bit );            break;#endif#if MB_ASCII_ENABLED > 0        case MB_ASCII:            pvMBFrameStartCur = eMBASCIIStart;            pvMBFrameStopCur = eMBASCIIStop;            peMBFrameSendCur = eMBASCIISend;            peMBFrameReceiveCur = eMBASCIIReceive;            pvMBFrameCloseCur = MB_PORT_HAS_CLOSE ? vMBPortClose : NULL;            pxMBFrameCBByteReceived = xMBASCIIReceiveFSM;            pxMBFrameCBTransmitterEmpty = xMBASCIITransmitFSM;            pxMBPortCBTimerExpired = xMBASCIITimerT1SExpired;            eStatus = eMBASCIIInit( ucMBAddress, ucPort, ulBaudRate, eParity );            break;#endif        default:            eStatus = MB_EINVAL;        }        if( eStatus == MB_ENOERR )        {            if( !xMBPortEventInit(  ) )            {                /* port dependent event module initalization failed. */                eStatus = MB_EPORTERR;            }            else            {                eMBCurrentMode = eMode;                eMBState = STATE_DISABLED;            }        }    }    return eStatus;}#if MB_TCP_ENABLED > 0eMBErrorCodeeMBTCPInit( USHORT ucTCPPort ){    eMBErrorCode    eStatus = MB_ENOERR;    if( ( eStatus = eMBTCPDoInit( ucTCPPort ) ) != MB_ENOERR )    {        eMBState = STATE_DISABLED;    }    else if( !xMBPortEventInit(  ) )    {        /* Port dependent event module initalization failed. */        eStatus = MB_EPORTERR;    }    else    {        pvMBFrameStartCur = eMBTCPStart;        pvMBFrameStopCur = eMBTCPStop;        peMBFrameReceiveCur = eMBTCPReceive;        peMBFrameSendCur = eMBTCPSend;        pvMBFrameCloseCur = MB_PORT_HAS_CLOSE ? vMBTCPPortClose : NULL;        ucMBAddress = MB_TCP_PSEUDO_ADDRESS;        eMBCurrentMode = MB_TCP;        eMBState = STATE_DISABLED;    }    return eStatus;}#endifeMBErrorCodeeMBRegisterCB( UCHAR ucFunctionCode, pxMBFunctionHandler pxHandler ){    int             i;    eMBErrorCode    eStatus;    if( ( 0 < ucFunctionCode ) && ( ucFunctionCode <= 127 ) )    {        ENTER_CRITICAL_SECTION(  );        if( pxHandler != NULL )        {            for( i = 0; i < MB_FUNC_HANDLERS_MAX; i++ )            {                if( ( xFuncHandlers[i].pxHandler == NULL ) ||                    ( xFuncHandlers[i].pxHandler == pxHandler ) )                {                    xFuncHandlers[i].ucFunctionCode = ucFunctionCode;                    xFuncHandlers[i].pxHandler = pxHandler;                    break;                }            }            eStatus = ( i != MB_FUNC_HANDLERS_MAX ) ? MB_ENOERR : MB_ENORES;        }        else        {            for( i = 0; i < MB_FUNC_HANDLERS_MAX; i++ )            {                if( xFuncHandlers[i].ucFunctionCode == ucFunctionCode )                {                    xFuncHandlers[i].ucFunctionCode = 0;                    xFuncHandlers[i].pxHandler = NULL;                    break;                }            }            /* Remove can't fail. */            eStatus = MB_ENOERR;        }        EXIT_CRITICAL_SECTION(  );    }    else    {        eStatus = MB_EINVAL;    }    return eStatus;}eMBErrorCodeeMBClose( void ){    eMBErrorCode    eStatus = MB_ENOERR;    if( eMBState == STATE_DISABLED )    {        if( pvMBFrameCloseCur != NULL )        {            pvMBFrameCloseCur(  );        }    }    else    {        eStatus = MB_EILLSTATE;    }    return eStatus;}eMBErrorCodeeMBEnable( void ){    eMBErrorCode    eStatus = MB_ENOERR;    if( eMBState == STATE_DISABLED )    {        /* Activate the protocol stack. */        pvMBFrameStartCur(  );        eMBState = STATE_ENABLED;    }    else    {        eStatus = MB_EILLSTATE;    }    return eStatus;}eMBErrorCodeeMBDisable( void ){    eMBErrorCode    eStatus;    if( eMBState == STATE_ENABLED )    {        pvMBFrameStopCur(  );        eMBState = STATE_DISABLED;        eStatus = MB_ENOERR;    }    else if( eMBState == STATE_DISABLED )    {        eStatus = MB_ENOERR;    }    else    {        eStatus = MB_EILLSTATE;    }    return eStatus;}eMBErrorCodeeMBPoll( void ){    static UCHAR   *ucMBFrame;    static UCHAR    ucRcvAddress;    static UCHAR    ucFunctionCode;    static USHORT   usLength;    static eMBException eException;    int             i;    eMBErrorCode    eStatus = MB_ENOERR;    eMBEventType    eEvent;    /* Check if the protocol stack is ready. */    if( eMBState != STATE_ENABLED )    {        return MB_EILLSTATE;    }    /* Check if there is a event available. If not return control to caller.     * Otherwise we will handle the event. */    if( xMBPortEventGet( &eEvent ) == TRUE )    {        switch ( eEvent )        {        case EV_READY:            break;        case EV_FRAME_RECEIVED:            eStatus = peMBFrameReceiveCur( &ucRcvAddress, &ucMBFrame, &usLength );            if( eStatus == MB_ENOERR )            {                /* Check if the frame is for us. If not ignore the frame. */                if( ( ucRcvAddress == ucMBAddress ) || ( ucRcvAddress == MB_ADDRESS_BROADCAST ) )                {                    rcvAddress = ucRcvAddress;                    ( void )xMBPortEventPost( EV_EXECUTE );                    //printf("mb_event: EV_EXECUTE\r\n");                }            }            break;        case EV_EXECUTE:            ucFunctionCode = ucMBFrame[MB_PDU_FUNC_OFF];            eException = MB_EX_ILLEGAL_FUNCTION;            for( i = 0; i < MB_FUNC_HANDLERS_MAX; i++ )            {                /* No more function handlers registered. Abort. */                if( xFuncHandlers[i].ucFunctionCode == 0 )                {                    break;                }                else if( xFuncHandlers[i].ucFunctionCode == ucFunctionCode )                {                    eException = xFuncHandlers[i].pxHandler( ucMBFrame, &usLength );                    break;                }            }            /* If the request was not sent to the broadcast address we             * return a reply. */            if( ucRcvAddress != MB_ADDRESS_BROADCAST )            {                if( eException != MB_EX_NONE )                {                    /* An exception occured. Build an error frame. */                    usLength = 0;                    ucMBFrame[usLength++] = ( UCHAR )( ucFunctionCode | MB_FUNC_ERROR );                    ucMBFrame[usLength++] = eException;                }                if( ( eMBCurrentMode == MB_ASCII ) && MB_ASCII_TIMEOUT_WAIT_BEFORE_SEND_MS )                {                    vMBPortTimersDelay( MB_ASCII_TIMEOUT_WAIT_BEFORE_SEND_MS );                }                                eStatus = peMBFrameSendCur( ucMBAddress, ucMBFrame, usLength );            }            break;        case EV_FRAME_SENT:            //printf("recv event: EV_FRAME_SENT\r\n");            break;        }    }    return MB_ENOERR;}//eMBErrorCodeeMBCheckSlaveAddr(UCHAR ucSlaveAddress){    if( ( ucSlaveAddress == MB_ADDRESS_BROADCAST ) ||        ( ucSlaveAddress < MB_ADDRESS_MIN ) || ( ucSlaveAddress > MB_ADDRESS_MAX ) )    {        return MB_EINVAL;    }    else    {        return MB_ENOERR;    }}//eMBErrorCodeeMBSetSlaveAddr(UCHAR ucSlaveAddress){    if( ( ucSlaveAddress == MB_ADDRESS_BROADCAST ) ||        ( ucSlaveAddress < MB_ADDRESS_MIN ) || ( ucSlaveAddress > MB_ADDRESS_MAX ) )    {        return MB_EINVAL;    }    else    {        ucMBAddress = ucSlaveAddress;    }    return MB_ENOERR;}  
 |