Skip to content

Commit

Permalink
bug fix, skip empty entries
Browse files Browse the repository at this point in the history
  • Loading branch information
HotNoob committed Nov 13, 2024
1 parent 6777e29 commit 25cf596
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion classes/protocol_settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -452,7 +452,8 @@ def process_row(row):
self._log.warning("Invalid Name : " + str(variable_name) + " reg: " + str(row['register']) + " doc name: " + str(row['documented name']) + " path: " + str(path))



if not variable_name and not row['documented name']: #skip empty entry / no name. todo add more invalidator checks.
return

#region data type
data_type = Data_Type.USHORT
Expand Down

0 comments on commit 25cf596

Please sign in to comment.