2020-10-20 17:39:48 +02:00
|
|
|
#ifndef CONFIG_DEVICES_LOGICALADDRESSES_H_
|
|
|
|
#define CONFIG_DEVICES_LOGICALADDRESSES_H_
|
|
|
|
|
|
|
|
#include <fsfw/devicehandlers/CookieIF.h>
|
2020-11-09 00:12:39 +01:00
|
|
|
#include "../objects/systemObjectList.h"
|
2020-10-20 17:39:48 +02:00
|
|
|
#include <cstdint>
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Can be used for addresses for physical devices like I2C adresses.
|
|
|
|
*/
|
|
|
|
namespace addresses {
|
|
|
|
/* Logical addresses have uint32_t datatype */
|
|
|
|
enum logicalAddresses: address_t {
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
#endif /* CONFIG_DEVICES_LOGICALADDRESSES_H_ */
|