config folder renamed

This commit is contained in:
2020-10-29 11:47:03 +01:00
parent a9b4874904
commit a38c3e5005
33 changed files with 111 additions and 289 deletions

View File

@ -0,0 +1,11 @@
/**
* \file logicalAddresses.cpp
*
* \date 06.11.2019
*/
#include <fsfw/unittest/config/devices/logicalAddresses.h>

View File

@ -0,0 +1,15 @@
#ifndef CONFIG_DEVICES_LOGICALADDRESSES_H_
#define CONFIG_DEVICES_LOGICALADDRESSES_H_
#include <fsfw/devicehandlers/CookieIF.h>
#include <fsfw/unittest/config/objects/systemObjectList.h>
#include <cstdint>
namespace addresses {
/* Logical addresses have uint32_t datatype */
enum logicalAddresses: address_t {
};
}
#endif /* CONFIG_DEVICES_LOGICALADDRESSES_H_ */

View File

@ -0,0 +1,10 @@
/**
* @file switcherList.cpp
*
* @date 28.11.2019
*/
#include <fsfw/unittest/config/devices/powerSwitcherList.h>

View File

@ -0,0 +1,22 @@
/**
* @file switcherList.h
*
* @date 28.11.2019
*/
#ifndef CONFIG_DEVICES_POWERSWITCHERLIST_H_
#define CONFIG_DEVICES_POWERSWITCHERLIST_H_
namespace switches {
/* Switches are uint8_t datatype and go from 0 to 255 */
enum switcherList {
PCDU,
GPS0,
GPS1,
DUMMY = 129
};
}
#endif /* CONFIG_DEVICES_POWERSWITCHERLIST_H_ */