mirror of https://github.com/arendst/Tasmota.git
This reverts commit 31d98f3666
.
This commit is contained in:
parent
31d98f3666
commit
177de35fbc
|
@ -16,6 +16,7 @@ var globs = "path,ctypes_bytes_dyn,tasmota,ccronexpr,gpio,light,webclient,load,M
|
|||
"lv_clock,lv_clock_icon,lv_signal_arcs,lv_signal_bars,lv_wifi_arcs_icon,lv_wifi_arcs,"
|
||||
"lv_wifi_bars_icon,lv_wifi_bars,"
|
||||
"_lvgl,"
|
||||
"int64"
|
||||
|
||||
for g:string2.split(globs, ",")
|
||||
global.(g) = nil
|
||||
|
|
|
@ -54,10 +54,12 @@ test_TLV(bytes("24012a"), "1 = 42U")
|
|||
test_TLV(bytes("4401002a"), "Matter::0x00000001 = 42U")
|
||||
|
||||
# int64
|
||||
if false # int64 not yet working in local berry
|
||||
test_TLV(bytes("030102000000000000"), "513")
|
||||
test_TLV(bytes("070102000000000000"), "513U")
|
||||
test_TLV(bytes("03FFFFFFFFFFFFFFFF"), "-1")
|
||||
test_TLV(bytes("07FFFFFFFFFFFFFF7F"), "9223372036854775807U")
|
||||
end
|
||||
|
||||
# structure
|
||||
test_TLV(bytes("1518"), "{}")
|
||||
|
|
Loading…
Reference in New Issue