📄 exdisc.c
字号:
/* * FreeModbus Libary: STR71x Demo Application * Copyright (C) 2006 Christian Walter <wolti@sil.at> * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA * * File: $Id: exdisc.c,v 1.4 2006/06/15 15:41:13 wolti Exp $ *//* ----------------------- System includes ----------------------------------*/#include "assert.h"/* ----------------------- Platform includes --------------------------------*/#include "FreeRTOS.h"#include "task.h"#include "queue.h"/* ----------------------- STR71X includes ----------------------------------*/#include "eic.h"/* ----------------------- Modbus includes ----------------------------------*/#include "mb.h"#include "mbutils.h"/* ----------------------- Defines ------------------------------------------*/#define REG_DISC_START 1000#define REG_DISC_SIZE 16/* ----------------------- Static variables ---------------------------------*/static unsigned char ucRegDiscBuf[REG_DISC_SIZE / 8] = { 0, 0 };/* ----------------------- Static functions ---------------------------------*/static void vModbusTask( void *pvParameters );/* ----------------------- Start implementation -----------------------------*/intmain( void ){ EIC_Init( ); EIC_IRQConfig( ENABLE ); ( void )xTaskCreate( vModbusTask, NULL, configMINIMAL_STACK_SIZE, NULL, tskIDLE_PRIORITY, NULL ); vTaskStartScheduler( ); return 0;}static voidvModbusTask( void *pvParameters ){ /* Select either ASCII or RTU Mode. */ ( void )eMBInit( MB_RTU, 0x0A, 0, 38400, MB_PAR_EVEN ); /* Initialise the discrete input registers. */ xMBUtilSetBits( ucRegDiscBuf, 2, 2, 3 ); /* Set bit 2:3 to 11b. */ xMBUtilSetBits( ucRegDiscBuf, 8, 1, 1 ); /* Set bit 8 to 1b. */ /* Enable the Modbus Protocol Stack. */ ( void )eMBEnable( ); for( ;; ) { /* Call the main polling loop of the Modbus protocol stack. */ ( void )eMBPoll( ); }}eMBErrorCodeeMBRegDiscreteCB( UCHAR * pucRegBuffer, USHORT usAddress, USHORT usNDiscrete ){ eMBErrorCode eStatus = MB_ENOERR; short iNDiscrete = ( short )usNDiscrete; unsigned short usBitOffset; /* Check if we have registers mapped at this block. */ if( ( usAddress >= REG_DISC_START ) && ( usAddress + usNDiscrete <= REG_DISC_START + REG_DISC_SIZE ) ) { usBitOffset = ( unsigned short )( usAddress - REG_DISC_START ); while( iNDiscrete > 0 ) { *pucRegBuffer++ = xMBUtilGetBits( ucRegDiscBuf, usBitOffset, ( unsigned char )( iNDiscrete > 8 ? 8 : iNDiscrete ) ); iNDiscrete -= 8; usBitOffset += 8; } } else { eStatus = MB_ENOREG; } return eStatus;}eMBErrorCodeeMBRegCoilsCB( UCHAR * pucRegBuffer, USHORT usAddress, USHORT usNCoils, eMBRegisterMode eMode ){ return MB_ENOREG;}eMBErrorCodeeMBRegInputCB( UCHAR * pucRegBuffer, USHORT usAddress, USHORT usNRegs ){ return MB_ENOREG;}eMBErrorCodeeMBRegHoldingCB( UCHAR * pucRegBuffer, USHORT usAddress, USHORT usNRegs, eMBRegisterMode eMode ){ return MB_ENOREG;}void__assert( const char *pcFile, const char *pcLine, int iLineNumber ){ portENTER_CRITICAL( ); while( 1 );}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -