mirror of
https://github.com/DJ2LS/FreeDATA
synced 2024-05-14 08:04:33 +00:00
Correct usage of tempbuffer list.
This commit is contained in:
parent
e4ad7bbb1b
commit
b0742e114a
1 changed files with 2 additions and 1 deletions
|
@ -936,7 +936,8 @@ class DATA:
|
|||
retry=self.tx_n_retry_of_burst,
|
||||
)
|
||||
|
||||
self.enqueue_frame_for_tx(bytearray(tempbuffer), c2_mode=data_mode)
|
||||
for t_buf_item in tempbuffer:
|
||||
self.enqueue_frame_for_tx(t_buf_item, c2_mode=data_mode)
|
||||
|
||||
# After transmission finished, wait for an ACK or RPT frame
|
||||
# burstacktimeout = time.time() + BURST_ACK_TIMEOUT_SECONDS + 100
|
||||
|
|
Loading…
Reference in a new issue