mirror of
https://github.com/armink/FreeModbus_Slave-Master-RTT-STM32.git
synced 2024-09-01 08:09:25 +08:00
2、【增加】Modbus主机写寄存器功能,目前测试暂未通过; 3、【修改】串口2时钟配置错误,导致无法发送数据的Bug; 4、【增加】FreeModbus主机发送数据缓冲区; Signed-off-by: armink <armink.ztl@gmail.com>
46 lines
1.5 KiB
C
46 lines
1.5 KiB
C
/*********************************************************************************************************/
|
||
// Filename : delay_config.h
|
||
// Version : V1.00
|
||
// Programmer(s) : Liuqiuhu
|
||
// funcion : This file is used to configure the delay time
|
||
/*********************************************************************************************************/
|
||
#ifndef __DELAY_CONF_H__
|
||
#define __DELAY_CONF_H__
|
||
|
||
#include"rtconfig.h"
|
||
|
||
#if RT_TICK_PER_SECOND == 1
|
||
#define DELAY_1S (RT_TICK_PER_SECOND)
|
||
#define DELAY_S(X) (X*DELAY_1S)
|
||
|
||
#elif RT_TICK_PER_SECOND == 10
|
||
#define DELAY_100MS(X) (X)
|
||
#define DELAY_S(X) (X*10)
|
||
|
||
#elif RT_TICK_PER_SECOND == 100
|
||
#define DELAY_10MS(X) (X)
|
||
#define DELAY_100MS(X) (X*10)
|
||
#define DELAY_S(X) (X*100)
|
||
|
||
#elif (RT_TICK_PER_SECOND == 1000)
|
||
|
||
#define DELAY_1MS (RT_TICK_PER_SECOND/1000)
|
||
#define DELAY_MS(X) (X*DELAY_1MS)
|
||
#define DELAY_S(X) (X*1000*DELAY_1MS)
|
||
|
||
#elif (RT_TICK_PER_SECOND == 10000)||(RT_TICK_PER_SECOND == 100000)||(RT_TICK_PER_SECOND == 100000)
|
||
#define DELAY_100US(X) (X*RT_TICK_PER_SECOND/10000)
|
||
#define DELAY_1MS (RT_TICK_PER_SECOND/1000)
|
||
#define DELAY_MS(X) (X*DELAY_1MS)
|
||
#define DELAY_S(X) (X*1000*DELAY_1MS)
|
||
|
||
#endif
|
||
|
||
#define DELAY_SYS_RUN_LED DELAY_MS(500) //ϵͳָʾ<D6B8><CABE><EFBFBD><EFBFBD>ʱ500ms
|
||
#define DELAY_SYS_SLEEP_LED DELAY_MS(1000) //ϵͳָʾ<D6B8><CABE><EFBFBD><EFBFBD>ʱ1s
|
||
#define DELAY_MB_SLAVE_POLL DELAY_MS(10) //Modbus<75>ӻ<EFBFBD><D3BB><EFBFBD>ѵʱ<D1B5><CAB1>
|
||
#define DELAY_MB_MASTER_POLL DELAY_MS(10) //Modbus<75><73><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ѵʱ<D1B5><CAB1>
|
||
|
||
#endif
|
||
|