mirror of
https://github.com/markqvist/Reticulum.git
synced 2025-08-03 12:06:29 -04:00
Implemented progress on resource initiator side. Made MDUs more obvious.
This commit is contained in:
parent
a9c4d0e78d
commit
c9d1c938ff
7 changed files with 34 additions and 15 deletions
|
@ -77,7 +77,7 @@ def hexrep(data, delimit=True):
|
|||
delimiter = ":"
|
||||
if not delimit:
|
||||
delimiter = ""
|
||||
hexrep = delimiter.join("{:02x}".format(ord(c)) for c in data)
|
||||
hexrep = delimiter.join("{:02x}".format(c) for c in data)
|
||||
return hexrep
|
||||
|
||||
def prettyhexrep(data):
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue