Skip to content

Commit

Permalink
fix(tools/esp_prov): Fix incorrect input decoding when using console …
Browse files Browse the repository at this point in the history
…transport

- Closes #14013
  • Loading branch information
Harshal5 committed Jun 24, 2024
1 parent 509015c commit bcad36e
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions tools/esp_prov/transport/transport_console.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
# SPDX-FileCopyrightText: 2018-2022 Espressif Systems (Shanghai) CO LTD
# SPDX-FileCopyrightText: 2018-2024 Espressif Systems (Shanghai) CO LTD
# SPDX-License-Identifier: Apache-2.0
#

from utils import hex_str_to_bytes, str_to_bytes
from utils import str_to_bytes

from .transport import Transport

Expand All @@ -16,4 +15,4 @@ async def send_data(self, path, data, session_id=0):
except Exception as err:
print('error:', err)
return None
return hex_str_to_bytes(resp)
return bytearray.fromhex(resp).decode('latin-1')

0 comments on commit bcad36e

Please sign in to comment.