Skip to content

Commit cd20af4

Browse files
authoredMar 26, 2025··
Fix modulation value retrieval in state of health logging (#213)
1 parent c2997ea commit cd20af4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎lib/pysquared/functions.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,7 @@ def state_of_health(self) -> None:
154154
f"EC:{self.logger.get_error_count()}",
155155
f"AB:{int(self.cubesat.f_burned.get())}",
156156
f"BO:{int(self.cubesat.f_brownout.get())}",
157-
f"FK:{int(self.radio_manager.get_modulation())}",
157+
f"FK:{self.radio_manager.get_modulation()}",
158158
]
159159
except Exception as e:
160160
self.logger.error("Couldn't aquire data for the state of health: ", e)

0 commit comments

Comments
 (0)
Please sign in to comment.