Is your feature request related to a problem? Please describe.
currently when adding new features to the test row settings I need to update the RFSwarmCore.OpenFile function to specifically handle the new key and value from the file.
Describe the solution you'd like
refactor RFSwarmCore.OpenFile so it will automatically read new keys
Additional context
I initially thought I could do for key in filedata[istr].keys(), however this is more complex than it initially sounds as many of the test row items that are read have validation on them, so this validation would still need to happen.
This will require some careful consideration, and will also need to be applied to the monitor rows.
Is your feature request related to a problem? Please describe.
currently when adding new features to the test row settings I need to update the RFSwarmCore.OpenFile function to specifically handle the new key and value from the file.
Describe the solution you'd like
refactor RFSwarmCore.OpenFile so it will automatically read new keys
Additional context
I initially thought I could do
for key in filedata[istr].keys(), however this is more complex than it initially sounds as many of the test row items that are read have validation on them, so this validation would still need to happen.This will require some careful consideration, and will also need to be applied to the monitor rows.