eive-tmtc/tmtccli.py

83 lines
2.6 KiB
Python
Raw Normal View History

2020-12-17 17:50:00 +01:00
#!/usr/bin/python3
"""
@brief TMTC Commander entry point for command line mode.
@details
This client was developed by KSat for the SOURCE project to test the on-board software but
has evolved into a more generic tool for satellite developers to perform TMTC (Telemetry and Telecommand)
handling and testing via different communication interfaces. Currently, only the PUS standard is
implemented as a packet standard.
Run this file with the -h flag to display options.
@license
Copyright 2020 KSat e.V. Stuttgart
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
2021-04-24 23:17:36 +02:00
https://www.apache.org/licenses/LICENSE-2.0
2020-12-17 17:50:00 +01:00
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
@author R. Mueller
"""
2021-06-21 17:30:37 +02:00
import sys
2022-03-07 11:07:54 +01:00
import traceback
2022-01-18 14:03:56 +01:00
2021-06-21 17:30:37 +02:00
try:
2022-01-18 14:03:56 +01:00
from tmtccmd.runner import (
initialize_tmtc_commander,
run_tmtc_commander,
add_ccsds_handler,
)
2021-06-21 17:30:37 +02:00
from tmtccmd.ccsds.handler import CcsdsTmHandler
2022-04-05 00:51:52 +02:00
from tmtccmd.logging import TMTC_LOGGER_NAME
2021-06-21 17:30:37 +02:00
except ImportError as error:
run_tmtc_commander = None
initialize_tmtc_commander = None
2022-03-07 11:07:54 +01:00
tb = traceback.format_exc()
print(tb)
2022-01-18 14:03:56 +01:00
print("Python tmtccmd submodule could not be imported")
2021-10-06 18:19:23 +02:00
sys.exit(1)
try:
import spacepackets
from spacepackets.log import set_custom_console_logger_name
except ImportError as error:
print(error)
2022-01-18 14:03:56 +01:00
print("Python spacepackets module could not be imported")
2021-10-06 18:19:23 +02:00
print(
2022-01-18 14:03:56 +01:00
'Install with "cd spacepackets && python3 -m pip intall -e ." for interative installation'
2021-10-06 18:19:23 +02:00
)
sys.exit(1)
from config.hook_implementations import EiveHookObject
from config.version import __version__
from config.definitions import PUS_APID
from pus_tm.factory_hook import ccsds_tm_handler
2020-12-17 17:50:00 +01:00
def main():
2022-03-04 11:02:10 +01:00
from pus_tm.event_handler import handle_event_packet
2022-03-04 11:56:42 +01:00
2021-03-19 17:42:36 +01:00
hook_obj = EiveHookObject()
2022-01-18 14:03:56 +01:00
print(f"-- eive tmtc version {__version__} --")
print(f"-- spacepackets version {spacepackets.__version__} --")
2021-10-06 18:00:34 +02:00
set_custom_console_logger_name(logger_name=TMTC_LOGGER_NAME)
2021-03-19 17:42:36 +01:00
initialize_tmtc_commander(hook_object=hook_obj)
2021-06-21 17:30:37 +02:00
ccsds_handler = CcsdsTmHandler()
2022-01-18 14:03:56 +01:00
ccsds_handler.add_tm_handler(
apid=PUS_APID, pus_tm_handler=ccsds_tm_handler, max_queue_len=50
)
2021-06-21 17:33:22 +02:00
add_ccsds_handler(ccsds_handler)
2021-03-19 17:42:36 +01:00
run_tmtc_commander(False)
2020-12-17 17:50:00 +01:00
if __name__ == "__main__":
main()