Skip to content
Snippets Groups Projects
Commit 9a794845 authored by thodkatz's avatar thodkatz
Browse files

Initial structure of TC[9,128],a mission specific subservice

parent 38cb7a59
No related branches found
No related tags found
No related merge requests found
...@@ -31,6 +31,18 @@ public: ...@@ -31,6 +31,18 @@ public:
* or should ignore the standard? * or should ignore the standard?
*/ */
void cucTimeReport(); void cucTimeReport();
/**
* TC[9,128]
*
* This function is a custom subservice(mission specific) with message type 128(as defined
* from the standard for custom message types, 5.3.3.1.f) and it parses the data of the
* time-management telecommand packet
*
* @param messageTime The class-member `data` of /p has the data for the time configuration
* (a CUC format as described in the documentation of the class TimeHelper)
*/
void parseTime(Message &messageTime);
}; };
......
...@@ -18,3 +18,7 @@ void TimeManagementService::cucTimeReport() { ...@@ -18,3 +18,7 @@ void TimeManagementService::cucTimeReport() {
storeMessage(timeReport); storeMessage(timeReport);
} }
void TimeManagementService::parseTime(Message &messageTime) {
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment