Tests can now be built as part of FSFW and versioning moved to CMake #500

Merged
mohr merged 33 commits from KSat/fsfw:mueller/integrated-unittests into development 2021-10-18 14:42:53 +02:00
2 changed files with 1 additions and 3 deletions
Showing only changes of commit ad3238aa19 - Show all commits

View File

@ -2,7 +2,6 @@
#define CONFIG_EVENTS_SUBSYSTEMIDRANGES_H_
#include "fsfw/events/fwSubsystemIdRanges.h"
#include "common/events/commonSubsystemIds.h"
#include <cstdint>
@ -13,7 +12,7 @@
*/
namespace SUBSYSTEM_ID {
enum: uint8_t {
SUBSYSTEM_ID_START = COMMON_SUBSYSTEM_ID_RANGE,
SUBSYSTEM_ID_START = 0,
Outdated
Review

FW_SUBSYSTEM_ID_RANGE iinstead of 0

`FW_SUBSYSTEM_ID_RANGE` iinstead of `0`
SUBSYSTEM_ID_END // [EXPORT] : [END]
};
}

View File

@ -1,7 +1,6 @@
#ifndef CONFIG_RETURNVALUES_CLASSIDS_H_
#define CONFIG_RETURNVALUES_CLASSIDS_H_
#include "common/returnvalues/commonClassIds.h"
#include "fsfw/returnvalues/FwClassIds.h"
/**