We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 61129df commit 792750aCopy full SHA for 792750a
Firmware/tools/atcommander.py
@@ -193,7 +193,7 @@ def get_board_version(self):
193
def get_params_text(self):
194
res = self.__query(ATCommandSet.AT_SHOW_PARAM, ['(S0:.*S14:.*)\r\n'])
195
if res:
196
- return res.group(0)
+ return res.group(0).decode('utf-8')
197
else:
198
return "** Could not access parameters **"
199
0 commit comments