Merge pull request 'fixed mgm proc output' (#128) from mgm-proc-fix into main

Reviewed-on: #128
This commit is contained in:
Robin Müller 2023-01-26 20:35:26 +01:00
commit e4963fb712
1 changed files with 1 additions and 0 deletions

View File

@ -534,6 +534,7 @@ def handle_mgm_data_processed(pw: PrintWrapper, hk_data: bytes):
mgm_vec = struct.unpack(fmt_str, hk_data[current_idx : current_idx + inc_len])
mgm_vec = [f"{val:8.3f}" for val in mgm_vec]
pw.dlog(f"MGM {i}: {mgm_vec}")
current_idx += inc_len
fmt_str = "!ddd"
inc_len = struct.calcsize(fmt_str)
mgm_vec_tot = struct.unpack(fmt_str, hk_data[current_idx : current_idx + inc_len])