2013-08-02 14:00:55 +08:00
|
|
|
|
/*********************************************************************************************************/
|
|
|
|
|
// 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
|
2013-08-03 11:39:51 +08:00
|
|
|
|
#define DELAY_MB_SLAVER_POLL DELAY_MS(10) //Modbus<75>ӻ<EFBFBD><D3BB><EFBFBD>ѵʱ<D1B5><CAB1>
|
2013-08-02 14:00:55 +08:00
|
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|