Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Subsystems/cmdGui/MiniCmdUtil.py
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ def assemble_payload(self):
items = param.split("=") # e.g. ["--uint16", "2"]
if "--string" not in param: # non-string param
data_type = items[0].strip("-") # Remove "--" prefix
data_val = int(items[1])
data_val = int(items[1], 0)
for key in self.dataTypes: # Loop thru dictionary keys
if data_type in key: # Check if e.g. "uint16" in key tuple
# Get the TypeSignature tuple
Expand Down