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
5 changed files with 0 additions and 51 deletions
Showing only changes of commit fc9101cd8f - Show all commits

View File

@ -2,7 +2,6 @@
#define CONFIG_DEVICES_LOGICALADDRESSES_H_
#include <fsfw/devicehandlers/CookieIF.h>
#include "common/devices/commonAddresses.h"
mohr marked this conversation as resolved
Review

another leftover common
Compiler does not seem to mind, ist the devices/ folder used?

another leftover `common` Compiler does not seem to mind, ist the `devices/` folder used?
Review

I think it is not used anywhere.. probably can be deleted

I think it is not used anywhere.. probably can be deleted
Review

I deleted the include, might keep the file for the future

I deleted the include, might keep the file for the future
#include <cstdint>

View File

@ -1,15 +0,0 @@
/**
* @brief Auto-generated event translation file. Contains 81 translations.
* @details
* Generated on: 2021-05-18 16:28:16
*/
#include "translateEvents.h"
const char * translateEvents(Event event) {
switch( (event & 0xffff) ) {
default:
return "UNKNOWN_EVENT";
}
return 0;
}

View File

@ -1,8 +0,0 @@
#ifndef FSFWCONFIG_EVENTS_TRANSLATEEVENTS_H_
#define FSFWCONFIG_EVENTS_TRANSLATEEVENTS_H_
#include <fsfw/events/Event.h>
const char * translateEvents(Event event);
#endif /* FSFWCONFIG_EVENTS_TRANSLATEEVENTS_H_ */

View File

@ -1,19 +0,0 @@
/**
* @brief Auto-generated object translation file.
* @details
* Contains 69 translations.
* Generated on: 2021-05-18 16:37:37
*/
#include "translateObjects.h"
const char *NO_OBJECT_STRING = "NO_OBJECT";
const char* translateObject(object_id_t object) {
switch( (object & 0xFFFFFFFF) ) {
case 0xFFFFFFFF:
return NO_OBJECT_STRING;
default:
return "UNKNOWN_OBJECT";
}
return 0;
}

View File

@ -1,8 +0,0 @@
#ifndef FSFWCONFIG_OBJECTS_TRANSLATEOBJECTS_H_
#define FSFWCONFIG_OBJECTS_TRANSLATEOBJECTS_H_
#include <fsfw/objectmanager/SystemObjectIF.h>
const char* translateObject(object_id_t object);
#endif /* FSFWCONFIG_OBJECTS_TRANSLATEOBJECTS_H_ */