12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667 |
- /*
- * FreeModbus Libary: BARE Port
- * Copyright (C) 2006 Christian Walter <wolti@sil.at>
- *
- * This library is free software; you can redistribute it and/or
- * modify it under the terms of the GNU Lesser General Public
- * License as published by the Free Software Foundation; either
- * version 2.1 of the License, or (at your option) any later version.
- *
- * This library 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
- * Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public
- * License along with this library; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
- *
- * File: $Id$
- */
- /* ----------------------- Platform includes --------------------------------*/
- #include "port.h"
- #include "stm32f10x.h"
- /* ----------------------- Modbus includes ----------------------------------*/
- #include "mb.h"
- #include "mbport.h"
- /* ----------------------- static functions ---------------------------------*/
- void prvvTIMERExpiredISR( void );
- /* ----------------------- Start implementation -----------------------------*/
- BOOL
- xMBPortTimersInit( USHORT usTim1Timerout50us )
- {
- return TRUE;
- }
- inline void
- vMBPortTimersEnable( )
- {
- /* Enable the timer with the timeout passed to xMBPortTimersInit( ) */
- TIM_SetCounter(TIM2, 0);
- TIM_ClearITPendingBit(TIM2, TIM_IT_Update);
- TIM_Cmd(TIM2, ENABLE);
- }
- inline void
- vMBPortTimersDisable( )
- {
- /* Disable any pending timers. */
- TIM_SetCounter(TIM2, 0);
- TIM_ClearITPendingBit(TIM2, TIM_IT_Update);
- TIM_Cmd(TIM2, DISABLE);
- }
- /* Create an ISR which is called whenever the timer has expired. This function
- * must then call pxMBPortCBTimerExpired( ) to notify the protocol stack that
- * the timer has expired.
- */
- void prvvTIMERExpiredISR( void )
- {
- ( void )pxMBPortCBTimerExpired( );
- }
|