22 lines
366 B
C++
22 lines
366 B
C++
/*
|
|
* subsystemIdRanges.h
|
|
*
|
|
* Created on: Jul 27, 2018
|
|
* Author: gaisser
|
|
*/
|
|
|
|
#ifndef FSFWCONFIG_TMTC_SUBSYSTEMIDRANGES_H_
|
|
#define FSFWCONFIG_TMTC_SUBSYSTEMIDRANGES_H_
|
|
|
|
namespace SUBSYSTEM_ID {
|
|
enum {
|
|
DUMMY = 10,
|
|
|
|
// Here I add the ID of Arduino for TCS and eventual useful events.
|
|
ARDUINO_TCS = 11,
|
|
};
|
|
}
|
|
|
|
|
|
#endif /* FSFWCONFIG_TMTC_SUBSYSTEMIDRANGES_H_ */
|