Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
SRC OBDH TMTC
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Robin Mueller
SRC OBDH TMTC
Compare revisions
480b0a16456ff09dfdfdd85b945926a73d19c09c to 2f1c3d5eb9c3858d99c4516f4f132425ea1a97b7
Compare revisions
Changes are shown as if the
source
revision was being merged into the
target
revision.
Learn more about comparing revisions.
Source
Robin.Mueller/tmtc
Select target project
No results found
2f1c3d5eb9c3858d99c4516f4f132425ea1a97b7
Select Git revision
Branches
eive/master
fsfw/master
master
Tags
v1.0
v1.1
Swap
Target
Robin.Mueller/tmtc
Select target project
Robin.Mueller/tmtc
1 result
480b0a16456ff09dfdfdd85b945926a73d19c09c
Select Git revision
Branches
eive/master
fsfw/master
master
Tags
v1.0
v1.1
Show changes
Only incoming changes from source
Include changes to target since source was created
Compare
Commits on Source (3)
run cfg fix
· 30ebecd0
Robin Mueller
authored
4 years ago
30ebecd0
bugfix for listener mode
· 32437124
Robin Mueller
authored
4 years ago
32437124
Merge remote-tracking branch 'upstream/master' into eive/master
· 2f1c3d5e
Robin Mueller
authored
4 years ago
2f1c3d5e
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
.idea/runConfigurations/tmtcclient_Service_17_UDP.xml
+1
-1
1 addition, 1 deletion
.idea/runConfigurations/tmtcclient_Service_17_UDP.xml
core/tmtc_backend.py
+2
-1
2 additions, 1 deletion
core/tmtc_backend.py
with
3 additions
and
2 deletions
.idea/runConfigurations/tmtcclient_Service_17_UDP.xml
View file @
2f1c3d5e
...
@@ -12,7 +12,7 @@
...
@@ -12,7 +12,7 @@
<option
name=
"ADD_CONTENT_ROOTS"
value=
"true"
/>
<option
name=
"ADD_CONTENT_ROOTS"
value=
"true"
/>
<option
name=
"ADD_SOURCE_ROOTS"
value=
"true"
/>
<option
name=
"ADD_SOURCE_ROOTS"
value=
"true"
/>
<EXTENSION
ID=
"PythonCoverageRunConfigurationExtension"
runner=
"coverage.py"
/>
<EXTENSION
ID=
"PythonCoverageRunConfigurationExtension"
runner=
"coverage.py"
/>
<option
name=
"SCRIPT_NAME"
value=
"$PROJECT_DIR$/
core/
tmtc_client_c
ore
.py"
/>
<option
name=
"SCRIPT_NAME"
value=
"$PROJECT_DIR$/tmtc_client_c
li
.py"
/>
<option
name=
"PARAMETERS"
value=
"-m 3 -c 3 -s 17 -t 3"
/>
<option
name=
"PARAMETERS"
value=
"-m 3 -c 3 -s 17 -t 3"
/>
<option
name=
"SHOW_COMMAND_LINE"
value=
"false"
/>
<option
name=
"SHOW_COMMAND_LINE"
value=
"false"
/>
<option
name=
"EMULATE_TERMINAL"
value=
"true"
/>
<option
name=
"EMULATE_TERMINAL"
value=
"true"
/>
...
...
This diff is collapsed.
Click to expand it.
core/tmtc_backend.py
View file @
2f1c3d5e
...
@@ -171,8 +171,9 @@ class TmTcHandler:
...
@@ -171,8 +171,9 @@ class TmTcHandler:
logging
.
error
(
"
Unknown Mode, Configuration error !
"
)
logging
.
error
(
"
Unknown Mode, Configuration error !
"
)
sys
.
exit
()
sys
.
exit
()
def
__core_operation
(
self
,
one_shot
):
def
__core_operation
(
self
,
one_shot
):
if
self
.
mode
==
g
.
ModeList
.
ListenerMode
:
one_shot
=
False
if
not
one_shot
:
if
not
one_shot
:
while
True
:
while
True
:
self
.
__handle_action
()
self
.
__handle_action
()
...
...
This diff is collapsed.
Click to expand it.