ipc update #176
No reviewers
Labels
No Label
API Change
Breaking API Change
bug
build
cosmetics
Documentation
duplicate
feature
help wanted
hotfix
invalid
question
Refactor
Tests
wontfix
No Milestone
No Assignees
2 Participants
Notifications
Due Date
No due date set.
Blocks
Reference: fsfw/fsfw#176
Loading…
Reference in New Issue
Block a user
No description provided.
Delete Branch "KSat/fsfw:mueller/ipc-updates"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Introduces
MessageQueueMessageIF
CommandMessageIF
fixes #106
gaisser referenced this pull request2020-09-07 14:06:34 +02:00
@ -21,0 +8,4 @@
/**
* @brief Default command message used to pass command messages between tasks.
* Primary message type for IPC. Contains sender, 2-byte command ID
* field, and 2 4-byte parameters.
3 4-byte Parameters?
@ -30,0 +26,4 @@
* Default size can accomodate 2 4-byte parameters.
*/
static constexpr size_t DEFAULT_COMMAND_MESSAGE_SIZE =
CommandMessageIF::MINIMUM_COMMAND_MESSAGE_SIZE + sizeof(uint32_t);
3*sizeof(uint32_t)?
@ -0,0 +14,4 @@
* (getCommandQueue) and some other issues..
*/
typedef uint32_t MessageQueueId_t;
This is part of MessageQueueIF and should not be here
@ -0,0 +18,4 @@
class MessageQueueMessageIF {
public:
static const MessageQueueId_t NO_QUEUE = -1;
This is part of MessageQueueIF and should not be here