#324 fixed alarm sounder lag

This commit is contained in:
Mikayla Fischler
2023-08-26 19:01:22 -04:00
parent 17698b7fb4
commit 2ed28cf74d
6 changed files with 8 additions and 5 deletions

View File

@@ -31,7 +31,7 @@ local sna_rtu = require("rtu.dev.sna_rtu")
local sps_rtu = require("rtu.dev.sps_rtu")
local turbinev_rtu = require("rtu.dev.turbinev_rtu")
local RTU_VERSION = "v1.6.1"
local RTU_VERSION = "v1.6.2"
local RTU_UNIT_TYPE = types.RTU_UNIT_TYPE
local RTU_UNIT_HW_STATE = databus.RTU_UNIT_HW_STATE

View File

@@ -73,7 +73,7 @@ function threads.thread__main(smem)
-- re-compute output if needed, then play audio if available
if sounder.stream.is_recompute_needed() then
sounder.stream.compute_buffer()
if sounder.stream.has_next_block() then sounder.play() else sounder.stop() end
if sounder.stream.any_active() then sounder.play() else sounder.stop() end
end
end