starting fsfw

This commit is contained in:
2023-09-11 18:12:52 +02:00
parent dcce9574c8
commit fb8f4a68e7
419 changed files with 146315 additions and 10 deletions

3
common/CMakeLists.txt Normal file
View File

@ -0,0 +1,3 @@
target_sources(
${TARGET_NAME} PRIVATE
printChar.c)

10
common/printChar.c Normal file
View File

@ -0,0 +1,10 @@
#include <stdbool.h>
#include <stdio.h>
void printChar(const char* character, bool errStream) {
if (errStream) {
fprintf(stderr, "%c", *character);
} else {
printf("%c", *character);
}
}