fsfw-example-hosted/bsp_hosted/fsfwconfig/objects/systemObjectList.h
Robin Mueller d2337a769c
All checks were successful
fsfw/fsfw example hosted/pipeline/head This commit looks good
apply auto-formatter
2022-05-05 20:55:48 +02:00

17 lines
448 B
C++

#ifndef FSFWCONFIG_OBJECTS_SYSTEMOBJECTLIST_H_
#define FSFWCONFIG_OBJECTS_SYSTEMOBJECTLIST_H_
#include <commonSystemObjects.h>
namespace objects {
enum mission_objects {
/* 0x62 ('b') Board and mission specific objects */
TCPIP_TMTC_BRIDGE = 0x62000300,
TCPIP_TMTC_POLLING_TASK = 0x62000400,
/* Generic name for FSFW static ID setter */
DOWNLINK_DESTINATION = TCPIP_TMTC_BRIDGE
};
}
#endif /* FSFWCONFIG_OBJECTS_SYSTEMOBJECTLIST_H_ */