Commit Graph

14 Commits

Author SHA1 Message Date
Robin Müller 690991b4b5
include fix
fsfw/fsfw/pipeline/pr-development This commit looks good Details
2022-06-20 15:42:08 +02:00
Robin Müller 1a294e6a13
include TestsConfig.h
fsfw/fsfw/pipeline/pr-development There was a failure building this commit Details
2022-06-20 15:40:15 +02:00
Robin Müller 8e9d4b451c
better printout if ping test fails
fsfw/fsfw/pipeline/pr-development This commit looks good Details
2022-05-16 16:18:44 +02:00
Robin Müller 39b7976056 new cmake options for CICD build
fsfw/fsfw/pipeline/head This commit looks good Details
fsfw/fsfw/pipeline/pr-development This commit looks good Details
2022-05-09 15:26:38 +02:00
Robin Müller 22bc300902 increase other limits
fsfw/fsfw/pipeline/pr-development This commit looks good Details
2022-02-14 16:14:14 +01:00
Robin Müller 0d38ac62d8 this should work an ALL systems
fsfw/fsfw/pipeline/pr-development This commit looks good Details
2022-02-14 16:12:48 +01:00
Robin Müller d53c7e1190 increase test limit 2022-02-14 16:00:43 +01:00
Robin Müller 4f87e24f60
increase test limit
fsfw/fsfw/pipeline/pr-development This commit looks good Details
2022-02-10 14:08:52 +01:00
Robin Müller ddcac2bbac
reapply clang format
fsfw/fsfw/pipeline/pr-development This commit looks good Details
2022-02-02 10:29:30 +01:00
Robin Müller e0c50477cb
it actually was an uninitialized array
fsfw/fsfw/pipeline/pr-development This commit looks good Details
2022-02-02 10:00:57 +01:00
Robin Müller acbc2cd749
valgrind why
fsfw/fsfw/pipeline/pr-development There was a failure building this commit Details
2022-02-01 18:04:08 +01:00
Robin Müller 368481f88b
move strcmp outside of macro
fsfw/fsfw/pipeline/pr-development There was a failure building this commit Details
2022-02-01 14:04:13 +01:00
Robin Müller d2b561ba2f
test
fsfw/fsfw/pipeline/pr-development There was a failure building this commit Details
2022-02-01 13:57:27 +01:00
Robin Müller 371ff931bf
Linux CommandExecutor
fsfw/fsfw/pipeline/pr-development There was a failure building this commit Details
The CommandExecutor helper class can execute shell commands in blocking and non-blocking mode
This class is able to execute processes by using the Linux popen call. It also has the capability of writing
the read output of a process into a provided ring buffer.

The executor works by first loading the command which should be executed and specifying whether
it should be executed blocking or non-blocking. After that, execution can be started with the execute call.

Using non-blocking mode allows to execute commands which might take a longer time in the background,
and allowing the user thread to check completion status with the check function

Moved to HAL like requested in code review and unit tested with failing commands as well.
Also, Linux HAL components are compiled by default now unless explicitely disabled.
2022-01-26 12:11:52 +01:00