removed unused adc monitor commands

This commit is contained in:
Jakob Meier
2022-05-04 12:48:43 +02:00
parent b3f40b38fc
commit 9c3a8e9ff2
3 changed files with 1 additions and 21 deletions

View File

@@ -88,15 +88,13 @@ def handle_supervisor_replies(
printer.file_logger.info(content_list)
elif action_id == SupvActionIds.READ_GPIO:
header_list = ["GPIO state"]
content_list = [custom_data[0]]
content_list = [struct.unpack('!H', custom_data[:2])[0]]
print(header_list)
print(content_list)
printer.file_logger.info(header_list)
printer.file_logger.info(content_list)
def handle_startracker_replies(
action_id: int, printer: FsfwTmTcPrinter, custom_data: bytearray
):