2020-10-20 17:11:23 +02:00
|
|
|
#ifndef CONFIG_DEVICES_LOGICALADDRESSES_H_
|
|
|
|
#define CONFIG_DEVICES_LOGICALADDRESSES_H_
|
|
|
|
|
|
|
|
#include <fsfw/devicehandlers/CookieIF.h>
|
2021-10-07 13:24:46 +02:00
|
|
|
|
2020-10-20 17:11:23 +02:00
|
|
|
#include <cstdint>
|
|
|
|
|
|
|
|
namespace addresses {
|
2022-02-02 10:29:30 +01:00
|
|
|
/* Logical addresses have uint32_t datatype */
|
|
|
|
enum logicalAddresses : address_t {};
|
|
|
|
} // namespace addresses
|
2020-10-20 17:11:23 +02:00
|
|
|
|
|
|
|
#endif /* CONFIG_DEVICES_LOGICALADDRESSES_H_ */
|