PLC bugfix

This commit is contained in:
Mikayla Fischler 2022-04-30 13:44:28 -04:00
parent aeda38fa01
commit 3fe47f99a9
2 changed files with 2 additions and 2 deletions

View File

@ -12,7 +12,7 @@ os.loadAPI("config.lua")
os.loadAPI("plc.lua")
os.loadAPI("threads.lua")
local R_PLC_VERSION = "alpha-v0.4.12"
local R_PLC_VERSION = "alpha-v0.4.13"
local print = util.print
local println = util.println

View File

@ -483,7 +483,7 @@ function thread__setpoint_control(smem)
end
-- delay before next check
last_update = util.adaptive_delay(SETPOINT_CTRL_SLEEP, last_update)
last_update = util.adaptive_delay(SP_CTRL_SLEEP, last_update)
end
end