Yuji Hosogaya / Mbed 2 deprecated ModbusTCP_Modified

Dependencies:   EthernetNetIf mbed

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers port.h Source File

port.h

00001 /*
00002  * FreeModbus Libary: BARE Port
00003  * Copyright (C) 2006 Christian Walter <wolti@sil.at>
00004  *
00005  * This library is free software; you can redistribute it and/or
00006  * modify it under the terms of the GNU Lesser General Public
00007  * License as published by the Free Software Foundation; either
00008  * version 2.1 of the License, or (at your option) any later version.
00009  *
00010  * This library is distributed in the hope that it will be useful,
00011  * but WITHOUT ANY WARRANTY; without even the implied warranty of
00012  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
00013  * Lesser General Public License for more details.
00014  *
00015  * You should have received a copy of the GNU Lesser General Public
00016  * License along with this library; if not, write to the Free Software
00017  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
00018  *
00019  * File: $Id: port.h,v 1.1 2006/08/22 21:35:13 wolti Exp $
00020  */
00021 
00022 #ifndef _PORT_H
00023 #define _PORT_H
00024 
00025 #include <assert.h>
00026 #include <inttypes.h>
00027 
00028 #define INLINE                      //inline
00029 #define PR_BEGIN_EXTERN_C           //extern "C" {
00030 #define PR_END_EXTERN_C             //}
00031 
00032 #define ENTER_CRITICAL_SECTION( )   
00033 #define EXIT_CRITICAL_SECTION( )    
00034 
00035 typedef uint8_t BOOL;
00036 
00037 typedef unsigned char UCHAR;
00038 typedef char CHAR;
00039 
00040 typedef uint16_t USHORT;
00041 typedef int16_t SHORT;
00042 
00043 typedef uint32_t ULONG;
00044 typedef int32_t LONG;
00045 
00046 #ifndef TRUE
00047 #define TRUE            1
00048 #endif
00049 
00050 #ifndef FALSE
00051 #define FALSE           0
00052 #endif
00053 
00054 #define MB_TCP_DEBUG            1       /* Debug output in TCP module. */
00055 
00056 
00057     typedef enum
00058 {
00059     MB_LOG_ERROR = 0,
00060     MB_LOG_WARN = 1,
00061     MB_LOG_INFO = 2,
00062     MB_LOG_DEBUG = 3
00063 } eMBPortLogLevel;
00064 
00065 #ifdef MB_TCP_DEBUG
00066 void            vMBPortLog( eMBPortLogLevel eLevel, const CHAR * szModule,
00067                             const CHAR * szFmt, ... );
00068 
00069 void prvvMBTCPLogFrame( const CHAR * pucMsg, UCHAR * pucFrame, USHORT usFrameLen );
00070 #endif
00071 
00072 #endif