-
Notifications
You must be signed in to change notification settings - Fork 206
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
cFE Integration candidate: Equuleus-rc1+dev21 #2617
Conversation
@@ -84,14 +84,14 @@ | |||
* Generated stub function for CFE_EVS_SendEvent() | |||
* ---------------------------------------------------- | |||
*/ | |||
CFE_Status_t CFE_EVS_SendEvent(uint16 EventID, uint16 EventType, const char *Spec, ...) | |||
CFE_Status_t CFE_EVS_SendEvent(uint16 EventID, CFE_EVS_EventType_Enum_t EventType, const char *Spec, ...) |
Check notice
Code scanning / CodeQL
Long function without assertion Note
@@ -106,14 +106,15 @@ | |||
* Generated stub function for CFE_EVS_SendEventWithAppID() | |||
* ---------------------------------------------------- | |||
*/ | |||
CFE_Status_t CFE_EVS_SendEventWithAppID(uint16 EventID, uint16 EventType, CFE_ES_AppId_t AppID, const char *Spec, ...) | |||
CFE_Status_t CFE_EVS_SendEventWithAppID(uint16 EventID, CFE_EVS_EventType_Enum_t EventType, CFE_ES_AppId_t AppID, |
Check notice
Code scanning / CodeQL
Long function without assertion Note
@@ -129,15 +130,16 @@ | |||
* Generated stub function for CFE_EVS_SendTimedEvent() | |||
* ---------------------------------------------------- | |||
*/ | |||
CFE_Status_t CFE_EVS_SendTimedEvent(CFE_TIME_SysTime_t Time, uint16 EventID, uint16 EventType, const char *Spec, ...) | |||
CFE_Status_t CFE_EVS_SendTimedEvent(CFE_TIME_SysTime_t Time, uint16 EventID, CFE_EVS_EventType_Enum_t EventType, |
Check notice
Code scanning / CodeQL
Long function without assertion Note
@@ -116,7 +116,7 @@ | |||
* See description in header file for argument/return detail | |||
* | |||
*-----------------------------------------------------------------*/ | |||
CFE_Status_t CFE_EVS_SendEvent(uint16 EventID, uint16 EventType, const char *Spec, ...) | |||
CFE_Status_t CFE_EVS_SendEvent(uint16 EventID, CFE_EVS_EventType_Enum_t EventType, const char *Spec, ...) |
Check notice
Code scanning / CodeQL
Long function without assertion Note
@@ -166,7 +166,8 @@ | |||
* See description in header file for argument/return detail | |||
* | |||
*-----------------------------------------------------------------*/ | |||
CFE_Status_t CFE_EVS_SendEventWithAppID(uint16 EventID, uint16 EventType, CFE_ES_AppId_t AppID, const char *Spec, ...) | |||
CFE_Status_t CFE_EVS_SendEventWithAppID(uint16 EventID, CFE_EVS_EventType_Enum_t EventType, CFE_ES_AppId_t AppID, |
Check notice
Code scanning / CodeQL
Long function without assertion Note
@@ -184,7 +184,7 @@ | |||
* See description in header file for argument/return detail | |||
* | |||
*-----------------------------------------------------------------*/ | |||
bool EVS_IsFiltered(EVS_AppData_t *AppDataPtr, uint16 EventID, uint16 EventType) | |||
bool EVS_IsFiltered(EVS_AppData_t *AppDataPtr, uint16 EventID, CFE_EVS_EventType_Enum_t EventType) |
Check notice
Code scanning / CodeQL
Long function without assertion Note
@@ -184,7 +184,7 @@ | |||
* See description in header file for argument/return detail | |||
* | |||
*-----------------------------------------------------------------*/ | |||
bool EVS_IsFiltered(EVS_AppData_t *AppDataPtr, uint16 EventID, uint16 EventType) | |||
bool EVS_IsFiltered(EVS_AppData_t *AppDataPtr, uint16 EventID, CFE_EVS_EventType_Enum_t EventType) |
Check notice
Code scanning / CodeQL
Function too long Note
@@ -449,7 +449,7 @@ | |||
* See description in header file for argument/return detail | |||
* | |||
*-----------------------------------------------------------------*/ | |||
void EVS_GenerateEventTelemetry(EVS_AppData_t *AppDataPtr, uint16 EventID, uint16 EventType, | |||
void EVS_GenerateEventTelemetry(EVS_AppData_t *AppDataPtr, uint16 EventID, CFE_EVS_EventType_Enum_t EventType, |
Check notice
Code scanning / CodeQL
Long function without assertion Note
@@ -449,7 +449,7 @@ | |||
* See description in header file for argument/return detail | |||
* | |||
*-----------------------------------------------------------------*/ | |||
void EVS_GenerateEventTelemetry(EVS_AppData_t *AppDataPtr, uint16 EventID, uint16 EventType, | |||
void EVS_GenerateEventTelemetry(EVS_AppData_t *AppDataPtr, uint16 EventID, CFE_EVS_EventType_Enum_t EventType, |
Check notice
Code scanning / CodeQL
Function too long Note
@@ -592,7 +592,7 @@ | |||
* See description in header file for argument/return detail | |||
* | |||
*-----------------------------------------------------------------*/ | |||
int32 EVS_SendEvent(uint16 EventID, uint16 EventType, const char *Spec, ...) | |||
int32 EVS_SendEvent(uint16 EventID, CFE_EVS_EventType_Enum_t EventType, const char *Spec, ...) |
Check notice
Code scanning / CodeQL
Long function without assertion Note
Checklist (Please check before submitting)
Describe the contribution
CFE_EVS_EventType_Enum_t
forEventType
#2308. Addresses Issue Consistent use ofCFE_EVS_EventType_Enum_t
(and clarify vs mask) #1398CFE_ES_CleanupObjectCallback
#2612. Addresses Issue Eliminate redundant switch in CFE_ES_CleanupObjectCallback #1335EVS_AddLog
logic #2309. Addresses Issue Simplify LogOverflowCounter increment logic #1448Testing performed
cFS Bundle Checks
cFE Checks
Expected behavior changes
See PRs
System(s) tested on
Ubuntu 20.04
Additional context
Add any other context about the contribution here.
Third party code
If included, identify any third party code and provide text file of license
Contributor Info - All information REQUIRED for consideration of pull request
@thnkslprpt
@tandharia