1、【删除】FreeModbus主从机轮训延时,提升系统实时性。

Signed-off-by: armink <armink.ztl@gmail.com>
This commit is contained in:
armink 2015-04-06 11:13:23 +08:00
parent b48c07303d
commit 59ea5bb1ab
2 changed files with 2 additions and 6 deletions

View File

@ -36,10 +36,8 @@
#endif #endif
#define DELAY_SYS_RUN_LED DELAY_MS(500) //系统指示灯延时500ms #define DELAY_SYS_RUN_LED DELAY_MS(500)
#define DELAY_SYS_SLEEP_LED DELAY_MS(1000) //系统指示灯延时1s #define DELAY_SYS_SLEEP_LED DELAY_MS(1000)
#define DELAY_MB_SLAVE_POLL DELAY_MS(1) //Modbus从机轮训时间
#define DELAY_MB_MASTER_POLL DELAY_MS(1) //Modbus主机轮训时间
#endif #endif

View File

@ -80,7 +80,6 @@ void thread_entry_ModbusSlavePoll(void* parameter)
while (1) while (1)
{ {
eMBPoll(); eMBPoll();
rt_thread_delay(DELAY_MB_SLAVE_POLL);
} }
} }
@ -97,7 +96,6 @@ void thread_entry_ModbusMasterPoll(void* parameter)
while (1) while (1)
{ {
eMBMasterPoll(); eMBMasterPoll();
rt_thread_delay(DELAY_MB_MASTER_POLL);
} }
} }