Compare commits

...

5 Commits

Author SHA1 Message Date
Robin Müller 715d5ac39f Merge branch 'mueller/better-missing-inc-path-warning' into mueller/fsfw-from-zero
fsfw/fsfw/pipeline/head This commit looks good Details
2022-09-02 09:07:04 +02:00
Robin Müller d959474271 Merge branch 'mueller/remove-user-includes' into mueller/fsfw-from-zero 2022-09-02 09:06:52 +02:00
Robin Müller 04800df31e
another user-level-include
fsfw/fsfw/pipeline/pr-development This commit looks good Details
2022-09-02 09:04:37 +02:00
Robin Müller 1e85cdadfd
remove user includes
fsfw/fsfw/pipeline/head This commit looks good Details
fsfw/fsfw/pipeline/pr-development This commit looks good Details
2022-09-02 08:55:33 +02:00
Robin Müller ebc02673dd
provide a weak print char impl
fsfw/fsfw/pipeline/head Build started... Details
fsfw/fsfw/pipeline/pr-development This commit looks good Details
2022-09-02 08:50:39 +02:00
5 changed files with 12 additions and 5 deletions

View File

@ -4,8 +4,6 @@
#include <stdint.h>
#include "fwSubsystemIdRanges.h"
// could be moved to more suitable location
#include <events/subsystemIdRanges.h>
using EventId_t = uint16_t;
using EventSeverity_t = uint8_t;

View File

@ -1,8 +1,6 @@
#ifndef FSFW_RETURNVALUES_RETURNVALUE_H_
#define FSFW_RETURNVALUES_RETURNVALUE_H_
#include <returnvalues/classIds.h>
#include <cstdint>
#include "FwClassIds.h"

View File

@ -1 +1,3 @@
add_subdirectory(gpio)
target_sources(${LIB_FSFW_NAME} PRIVATE printChar.c)

View File

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

View File

@ -2,7 +2,6 @@
#define MISSION_DEVICES_MGMLIS3MDLHANDLER_H_
#include "devicedefinitions/MgmLIS3HandlerDefs.h"
#include "events/subsystemIdRanges.h"
#include "fsfw/devicehandlers/DeviceHandlerBase.h"
#include "fsfw/globalfunctions/PeriodicOperationDivider.h"