porttimer_m.c 3.2 KB
Newer Older
G
Grissiom 已提交
1
/*
2
 * FreeModbus Libary: RT-Thread Port
G
Grissiom 已提交
3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
 * Copyright (C) 2013 Armink <armink.ztl@gmail.com>
 *
 * 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: porttimer_m.c,v 1.60 2013/08/13 15:07:05 Armink add Master Functions$
 */

/* ----------------------- Platform includes --------------------------------*/
#include "port.h"

/* ----------------------- Modbus includes ----------------------------------*/
#include "mb.h"
#include "mb_m.h"
#include "mbport.h"

30
#if MB_MASTER_RTU_ENABLED > 0 || MB_MASTER_ASCII_ENABLED > 0
G
Grissiom 已提交
31 32
/* ----------------------- Variables ----------------------------------------*/
static USHORT usT35TimeOut50us;
33 34 35
static struct rt_timer timer;
static void prvvTIMERExpiredISR(void);
static void timer_timeout_ind(void* parameter);
G
Grissiom 已提交
36 37 38 39 40 41 42

/* ----------------------- static functions ---------------------------------*/
static void prvvTIMERExpiredISR(void);

/* ----------------------- Start implementation -----------------------------*/
BOOL xMBMasterPortTimersInit(USHORT usTimeOut50us)
{
43 44 45 46 47 48 49 50 51 52
    /* backup T35 ticks */
    usT35TimeOut50us = usTimeOut50us;

    rt_timer_init(&timer, "master timer",
                   timer_timeout_ind, /* bind timeout callback function */
                   RT_NULL,
                   (50 * usT35TimeOut50us) / (1000 * 1000 / RT_TICK_PER_SECOND),
                   RT_TIMER_FLAG_ONE_SHOT); /* one shot */

    return TRUE;
G
Grissiom 已提交
53 54 55 56
}

void vMBMasterPortTimersT35Enable()
{
armink_ztl's avatar
armink_ztl 已提交
57 58
    rt_tick_t timer_tick = (50 * usT35TimeOut50us)
            / (1000 * 1000 / RT_TICK_PER_SECOND);
G
Grissiom 已提交
59

60 61
    /* Set current timer mode, don't change it.*/
    vMBMasterSetCurTimerMode(MB_TMODE_T35);
G
Grissiom 已提交
62

armink_ztl's avatar
armink_ztl 已提交
63
    rt_timer_control(&timer, RT_TIMER_CTRL_SET_TIME, &timer_tick);
G
Grissiom 已提交
64

65
    rt_timer_start(&timer);
G
Grissiom 已提交
66 67 68 69
}

void vMBMasterPortTimersConvertDelayEnable()
{
armink_ztl's avatar
armink_ztl 已提交
70
    rt_tick_t timer_tick = MB_MASTER_DELAY_MS_CONVERT * RT_TICK_PER_SECOND / 1000;
G
Grissiom 已提交
71

72 73
    /* Set current timer mode, don't change it.*/
    vMBMasterSetCurTimerMode(MB_TMODE_CONVERT_DELAY);
G
Grissiom 已提交
74

armink_ztl's avatar
armink_ztl 已提交
75
    rt_timer_control(&timer, RT_TIMER_CTRL_SET_TIME, &timer_tick);
G
Grissiom 已提交
76

77
    rt_timer_start(&timer);
G
Grissiom 已提交
78 79 80 81
}

void vMBMasterPortTimersRespondTimeoutEnable()
{
armink_ztl's avatar
armink_ztl 已提交
82
    rt_tick_t timer_tick = MB_MASTER_TIMEOUT_MS_RESPOND * RT_TICK_PER_SECOND / 1000;
G
Grissiom 已提交
83

84 85
    /* Set current timer mode, don't change it.*/
    vMBMasterSetCurTimerMode(MB_TMODE_RESPOND_TIMEOUT);
G
Grissiom 已提交
86

armink_ztl's avatar
armink_ztl 已提交
87
    rt_timer_control(&timer, RT_TIMER_CTRL_SET_TIME, &timer_tick);
G
Grissiom 已提交
88

89
    rt_timer_start(&timer);
G
Grissiom 已提交
90 91 92 93
}

void vMBMasterPortTimersDisable()
{
armink_ztl's avatar
armink_ztl 已提交
94
    rt_timer_stop(&timer);
G
Grissiom 已提交
95 96 97 98
}

void prvvTIMERExpiredISR(void)
{
99
    (void) pxMBMasterPortCBTimerExpired();
G
Grissiom 已提交
100 101
}

102
static void timer_timeout_ind(void* parameter)
G
Grissiom 已提交
103
{
104
    prvvTIMERExpiredISR();
G
Grissiom 已提交
105 106 107
}

#endif