fsfw/defaultcfg/config/objects/systemObjectList.h

17 lines
486 B
C
Raw Normal View History

2020-10-20 17:39:48 +02:00
#ifndef CONFIG_OBJECTS_SYSTEMOBJECTLIST_H_
#define CONFIG_OBJECTS_SYSTEMOBJECTLIST_H_
#include <cstdint>
2020-10-20 17:53:47 +02:00
#include <fsfw/objectmanager/frameworkObjects.h>
2020-10-20 17:39:48 +02:00
// The objects will be instantiated in the ID order
namespace objects {
enum sourceObjects: uint32_t {
2020-10-20 17:53:47 +02:00
/* All addresses between start and end are reserved for the FSFW */
FSFW_CONFIG_RESERVED_START = PUS_SERVICE_1_VERIFICATION,
FSFW_CONFIG_RESERVED_END = TM_STORE
2020-10-20 17:39:48 +02:00
};
}
#endif /* BSP_CONFIG_OBJECTS_SYSTEMOBJECTLIST_H_ */