eive-obsw/bsp_hosted/fsfwconfig/objects/systemObjectList.h

34 lines
738 B
C
Raw Normal View History

2020-12-14 22:03:57 +01:00
#ifndef HOSTED_CONFIG_OBJECTS_SYSTEMOBJECTLIST_H_
#define HOSTED_CONFIG_OBJECTS_SYSTEMOBJECTLIST_H_
2022-01-17 15:58:27 +01:00
#include <cstdint>
2022-09-16 18:10:23 +02:00
#include "eive/objects.h"
2020-12-14 22:03:57 +01:00
// The objects will be instantiated in the ID order
namespace objects {
2022-01-17 15:58:27 +01:00
enum sourceObjects : uint32_t {
2020-12-14 22:03:57 +01:00
2022-01-17 15:58:27 +01:00
PUS_SERVICE_3 = 0x51000300,
PUS_SERVICE_5 = 0x51000400,
PUS_SERVICE_6 = 0x51000500,
PUS_SERVICE_8 = 0x51000800,
PUS_SERVICE_23 = 0x51002300,
PUS_SERVICE_201 = 0x51020100,
2020-12-14 22:03:57 +01:00
2022-01-17 15:58:27 +01:00
TM_FUNNEL = 0x52000002,
2020-12-14 22:03:57 +01:00
2022-01-17 15:58:27 +01:00
/* Test Task */
2020-12-14 22:03:57 +01:00
2022-01-17 15:58:27 +01:00
TEST_TASK = 0x42694269,
DUMMY_INTERFACE = 0xCAFECAFE,
DUMMY_HANDLER = 0x44000001,
2022-01-17 15:58:27 +01:00
/* 0x49 ('I') for Communication Interfaces **/
ARDUINO_COM_IF = 0x49000001,
2022-06-17 08:31:36 +02:00
DUMMY_COM_IF = 0x49000002
2022-01-17 15:58:27 +01:00
};
2020-12-14 22:03:57 +01:00
}
#endif /* BSP_CONFIG_OBJECTS_SYSTEMOBJECTLIST_H_ */