fsfw-from-zero/ws-objects/objects-solutions/main-01.cpp

24 lines
587 B
C++
Raw Normal View History

2022-10-04 10:35:03 +02:00
#include "fsfw/objectmanager.h"
#include <iostream>
#include <iomanip>
using namespace std;
class MySystemObject: public SystemObject {
public:
MySystemObject(): SystemObject(0x10101010, false) {}
ReturnValue_t initialize() override {
cout << "MySystemObject::initialize: Custom init" << endl;
2022-10-04 11:20:21 +02:00
return returnvalue::OK;
2022-10-04 10:35:03 +02:00
}
};
int main() {
auto* mySysObj = new MySystemObject();
cout << "Object ID: " << setfill('0') << hex << "0x" << setw(8) <<
mySysObj->getObjectId() << endl;
mySysObj->initialize();
delete mySysObj;
return 0;
}