eive-obsw/fsfwconfig/devices/logicalAddresses.h

27 lines
563 B
C
Raw Normal View History

2020-09-16 16:22:36 +02:00
/**
* \file logicalAddresses.cpp
*
* \date 07.11.2019
*/
2020-11-20 18:10:39 +01:00
#ifndef FSFWCONFIG_DEVICES_LOGICALADDRESSES_H_
#define FSFWCONFIG_DEVICES_LOGICALADDRESSES_H_
2020-09-16 16:22:36 +02:00
#include <stdint.h>
#include <fsfw/devicehandlers/CookieIF.h>
2020-11-20 18:10:39 +01:00
#include <fsfwconfig/objects/systemObjectList.h>
2020-09-16 16:22:36 +02:00
namespace addresses {
/* Logical addresses have uint32_t datatype */
enum logicalAddresses: address_t {
PCDU,
/* Dummy and Test Addresses */
DUMMY_ECHO = 129,
DUMMY_GPS0 = 130,
DUMMY_GPS1 = 131,
};
}
2020-11-20 18:10:39 +01:00
#endif /* FSFWCONFIG_DEVICES_LOGICALADDRESSES_H_ */