Merge pull request #15702 from s-hadinger/zigbee_flasher_fix

Zigbee flasher fix compilation
This commit is contained in:
s-hadinger 2022-05-26 19:32:54 +02:00 committed by GitHub
commit d1b1a236d4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -281,7 +281,7 @@ class cc2652_flasher
var b = bytes("21")
b.add(addr, -4)
b.add(sz, -4)
if self.debug print("cmd_download",b)
if self.debug print("cmd_download",b) end
return self.send(b, true)
end
@ -292,7 +292,7 @@ class cc2652_flasher
if sz > 128 raise "value_error", "len is bigger than 128" end
var b = bytes("24")
b += data
if self.debug print("cmd_send_data",b)
if self.debug print("cmd_send_data",b) end
return self.send(b, true)
end