From: Roman Bazalevsky Date: Tue, 31 Dec 2019 14:16:37 +0000 (+0300) Subject: Проверка контрольной сумму для MHZ-19. X-Git-Url: https://git.rvb.name/weathermon.git/commitdiff_plain/d16665cbaa8fa6699e66d11c8bc019b06af6d44a Проверка контрольной сумму для MHZ-19. --- diff --git a/bin/weathermon-iio b/bin/weathermon-iio index 9298f6f..d288edf 100755 --- a/bin/weathermon-iio +++ b/bin/weathermon-iio @@ -11,6 +11,19 @@ require "wm_util" io.stdout:setvbuf('no') +function dump(o) + if type(o) == 'table' then + local s = '{ ' + for k,v in pairs(o) do + if type(k) ~= 'number' then k = '"'..k..'"' end + s = s .. '['..k..'] = ' .. dump(v) .. ',' + end + return s .. '} ' + else + return tostring(o) + end +end + function get_device_list(config_name) local devices @@ -81,9 +94,26 @@ end function get_mhz(record) local p = record["rs232"] + p:read(9,100) p:write(string.fromhex("ff0186000000000079")) local e, s = p:read(9,1000) - return s:byte(3)*256+s:byte(4) + if (e == 0) and (s:len() == 9) and (s:byte(1) == 255) then + local crc = 0 + for i = 2, 8 do + crc = crc + s:byte(i) + if (crc>=256) then + crc = crc - 256 + end + end + crc = 255 - crc + crc = crc + 1; + if crc == s:byte(9) then + return s:byte(3)*256+s:byte(4) + end + end + + return nil + end function init_serial_device(device,subsystem,parameters)