fsfw-example-stm32h7-rtems/bsp_stm32h7_rtems/fsfwconfig/objects/systemObjectList.h

21 lines
482 B
C
Raw Normal View History

2021-07-16 11:10:39 +02:00
#ifndef FSFWCONFIG_OBJECTS_SYSTEMOBJECTLIST_H_
#define FSFWCONFIG_OBJECTS_SYSTEMOBJECTLIST_H_
2022-05-27 02:17:19 +02:00
#include "commonObjects.h"
2021-07-16 11:10:39 +02:00
namespace objects {
enum mission_objects {
2022-05-27 02:17:19 +02:00
/* 0x62 ('b') Board and mission specific objects */
UDP_BRIDGE = 0x62000300,
UDP_POLLING_TASK = 0x62000400,
2021-07-16 11:10:39 +02:00
2022-05-27 02:17:19 +02:00
SPI_COM_IF = 0x63001000,
SPI_DEVICE_TEST = 0x74001000,
2021-07-16 11:10:39 +02:00
2022-05-27 02:17:19 +02:00
/* Generic name for FSFW static ID setter */
DOWNLINK_DESTINATION = UDP_BRIDGE
2021-07-16 11:10:39 +02:00
};
}
#endif /* FSFWCONFIG_OBJECTS_SYSTEMOBJECTLIST_H_ */