From 06de1ec262495b701dfc685a753036a38e753f77 Mon Sep 17 00:00:00 2001 From: Alan Johnston Date: Fri, 14 Feb 2025 16:34:15 -0500 Subject: [PATCH] Update fc_block_decode.py try adding csv string to index --- groundstation/fc_block_decode.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/groundstation/fc_block_decode.py b/groundstation/fc_block_decode.py index 226efd24..05d1605b 100644 --- a/groundstation/fc_block_decode.py +++ b/groundstation/fc_block_decode.py @@ -162,6 +162,11 @@ if __name__ == "__main__": with open(html_dir + "index.html", "w") as html_file: html_file.write(head_string) html_file.write(telem_string) + with open(html_dir + "/images/telem.csv.txt", "r") as csv_file: + csv_file.read(old_tlm_string) + html_file.write(old_tlm_string) + html_file.write(tlm_string) + html_file.write("\n") html_file.write(foot_string) else: print("Payload not an image!")