Skip to content

Commit

Permalink
Use # as message start symnbol
Browse files Browse the repository at this point in the history
  • Loading branch information
olegv142 committed Apr 29, 2024
1 parent 3734c85 commit 35c4692
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/ble_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ def read_resp(com, tout=1):
try:
while True:
s = random_str(random.randrange(1, max_len))
msg = s + '_' + s + '#'
msg = '#' + s + '_' + s
com.write(msg)
resp = read_resp(com)
total_bytes += len(msg) + len(resp)
Expand Down

0 comments on commit 35c4692

Please sign in to comment.