From 31b68dd04109bdd3e5eb8aa1f857960fed884f89 Mon Sep 17 00:00:00 2001 From: Robin Mueller Date: Wed, 10 Apr 2024 14:25:52 +0200 Subject: [PATCH] update default tmtc config handling --- pytmtc/.gitignore | 1 + pytmtc/tmtc_conf.json.sample | 8 ++++++++ 2 files changed, 9 insertions(+) create mode 100644 pytmtc/tmtc_conf.json.sample diff --git a/pytmtc/.gitignore b/pytmtc/.gitignore index d994678..53b730f 100644 --- a/pytmtc/.gitignore +++ b/pytmtc/.gitignore @@ -1,3 +1,4 @@ +/tmtc_conf.json __pycache__ /venv diff --git a/pytmtc/tmtc_conf.json.sample b/pytmtc/tmtc_conf.json.sample new file mode 100644 index 0000000..f2c8afd --- /dev/null +++ b/pytmtc/tmtc_conf.json.sample @@ -0,0 +1,8 @@ +{ + "com_if": "tcp", + "tcpip_udp_ip_addr": "127.0.0.1", + "tcpip_udp_port": 7301, + "tcpip_udp_recv_max_size": 1500, + "tcpip_tcp_ip_addr": "127.0.0.1", + "tcpip_tcp_port": 7301 +}