Changed events definition to macro #51

Closed
msenger wants to merge 2 commits from event-definition into main
Collaborator
No description provided.
msenger self-assigned this 2025-02-24 15:26:08 +01:00
msenger added 1 commit 2025-02-24 15:26:08 +01:00
msenger requested review from muellerr 2025-02-24 15:26:09 +01:00
msenger added 1 commit 2025-02-24 15:28:27 +01:00
muellerr reviewed 2025-02-25 09:28:26 +01:00
@ -49,7 +49,7 @@ class Service11TelecommandScheduling final : public PusServiceBase {
//! [EXPORT] : [COMMENT] Deletion of a TC from the map failed.
//! P1: First 32 bit of request ID, P2. Last 32 bit of Request ID
static constexpr Event TC_DELETION_FAILED = event::makeEvent(SUBSYSTEM_ID, 0, severity::MEDIUM);
Owner

what is the problem with an explicit function. We should be trying to get away from the C pre-processor, not the other way around.

what is the problem with an explicit function. We should be trying to get away from the C pre-processor, not the other way around.
@ -26,3 +26,3 @@
static constexpr uint8_t SUBSYSTEM_ID = SUBSYSTEM_ID::TMTC_DISTRIBUTION;
//! P1: Returnvalue, P2: 0 for TM issues, 1 for TC issues
static constexpr Event HANDLE_PACKET_FAILED = event::makeEvent(SUBSYSTEM_ID, 0, severity::LOW);
static constexpr Event HANDLE_PACKET_FAILED = MAKE_EVENT(0, severity::LOW);
Owner

same as above

same as above
Member

This can be closed. The underlying issue was the maximum character count in a line for autofmt.
I recommend you disable autofmt for these sensitive sections of code via // clang-format off and // clang-format on.

This can be closed. The underlying issue was the maximum character count in a line for autofmt. I recommend you disable autofmt for these sensitive sections of code via `// clang-format off` and `// clang-format on`.
tbaumgartl closed this pull request 2025-03-14 12:25:10 +01:00

Pull request closed

Sign in to join this conversation.
No description provided.