Skip to content
Snippets Groups Projects

Write log file

Merged Kien Le requested to merge feature-write_log_file into master
All threads resolved!
4 files
+ 25
2
Compare changes
  • Side-by-side
  • Inline
Files
4
@@ -51,6 +51,7 @@ class GeneralData():
include_mp456uvw: bool = False,
rt130_waveform_data_req: bool = False,
rt130_log_files: List[Path] = [],
include_masspos_in_soh_messages: bool = False,
creator_thread: Optional[QtCore.QThread] = None,
notification_signal: Optional[QtCore.Signal] = None,
pause_signal: Optional[QtCore.Signal] = None,
@@ -72,6 +73,8 @@ class GeneralData():
:param include_mp456uvw: if mass position channels 4,5,6 are requested
:param rt130_waveform_data_req: flag for RT130 to read waveform data
:param rt130_log_files: list of paths to log files chosen by the user
:param include_masspos_in_soh_messages: whether to include mass
position data in the displayed SOH messages of an RT130 data set
:param creator_thread: the thread the current DataTypeModel instance is
being created in. If None, the DataTypeModel instance is being
created in the main thread
@@ -94,6 +97,7 @@ class GeneralData():
self.include_mp456uvw = include_mp456uvw
self.rt130_waveform_data_req = rt130_waveform_data_req
self.rt130_log_files = rt130_log_files
self.include_masspos_in_soh_messages = include_masspos_in_soh_messages
self.on_unittest = on_unittest
if creator_thread is None:
err_msg = (
Loading