Home
last modified time | relevance | path

Searched refs:hexdata (Results 1 – 2 of 2) sorted by relevance

/Zephyr-latest/scripts/logging/dictionary/
Dlog_parser.py50 hexdata = ''
58 hexdata = ''
62 hexdata += line.strip()
64 if LOG_HEX_SEP not in hexdata:
68 idx = hexdata.index(LOG_HEX_SEP) + len(LOG_HEX_SEP)
69 hexdata = hexdata[idx:]
71 if len(hexdata) % 2 != 0:
73 idx = int(len(hexdata) / 2) * 2
74 hexdata = hexdata[:idx]
77 while idx < len(hexdata):
[all …]
/Zephyr-latest/scripts/build/
Dfile2hex.py50 hexdata = codecs.encode(chunk, 'hex').decode("utf-8")
51 hexlist = map(''.join, zip(*[iter(hexdata)] * 2))