-
Notifications
You must be signed in to change notification settings - Fork 40
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
Fix #157, Move function prototypes to header file #158
Fix #157, Move function prototypes to header file #158
Conversation
int32 TO_LAB_SendDataTypes(const TO_LAB_SendDataTypesCmd_t *data); | ||
int32 TO_LAB_SendHousekeeping(const CFE_MSG_CommandHeader_t *data); | ||
TO_LAB_Subs_t * TO_LAB_Subs; | ||
CFE_TBL_Handle_t TO_SubTblHandle; |
Check notice
Code scanning / CodeQL
Variable scope too large
int32 TO_LAB_ResetCounters(const TO_LAB_ResetCountersCmd_t *data); | ||
int32 TO_LAB_SendDataTypes(const TO_LAB_SendDataTypesCmd_t *data); | ||
int32 TO_LAB_SendHousekeeping(const CFE_MSG_CommandHeader_t *data); | ||
TO_LAB_Subs_t * TO_LAB_Subs; |
Check notice
Code scanning / CodeQL
Global could be static
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I would like to get these into the next round
Note this will need merge with previous PR #156
*Combines:* sch_lab v2.5.0-rc4+dev71 sample_app v1.3.0-rc4+dev65 to_lab v2.5.0-rc4+dev66 ci_lab v2.5.0-rc4+dev69 cFE v7.0.0-rc4+dev411 PSP v1.6.0-rc4+dev96 **Includes:** *sch_lab* - nasa/sch_lab#129 - nasa/sch_lab#149 - nasa/sch_lab#142 - nasa/sch_lab#134 *sample_app* - nasa/sample_app#212 - nasa/sample_app#187 - nasa/sample_app#190 *to_lab* - nasa/to_lab#168 - nasa/to_lab#134 - nasa/to_lab#146 - nasa/to_lab#148 - nasa/to_lab#152 - nasa/to_lab#158 - nasa/to_lab#163 *ci_lab* - nasa/ci_lab#152 - nasa/ci_lab#153 *cFE* - nasa/cFE#2462 - nasa/cFE#2408 *PSP* - nasa/PSP#417 Co-authored by: Avi Weiss <thnkslprpt@users.noreply.github.com> Co-authored by: Joseph Hickey <jphickey@users.noreply.github.com> Co-authored by: Isaac Rowe <irowebbn@users.noreply.github.com> Co-authored by: Jacob Hageman <skliper@users.noreply.github.com>
*Combines:* sch_lab v2.5.0-rc4+dev71 sample_app v1.3.0-rc4+dev65 to_lab v2.5.0-rc4+dev66 ci_lab v2.5.0-rc4+dev69 cFE v7.0.0-rc4+dev411 PSP v1.6.0-rc4+dev96 **Includes:** *sch_lab* - nasa/sch_lab#129 - nasa/sch_lab#149 - nasa/sch_lab#142 - nasa/sch_lab#134 *sample_app* - nasa/sample_app#212 - nasa/sample_app#187 - nasa/sample_app#190 *to_lab* - nasa/to_lab#168 - nasa/to_lab#134 - nasa/to_lab#146 - nasa/to_lab#148 - nasa/to_lab#152 - nasa/to_lab#158 - nasa/to_lab#163 *ci_lab* - nasa/ci_lab#152 - nasa/ci_lab#153 *cFE* - nasa/cFE#2462 - nasa/cFE#2408 *PSP* - nasa/PSP#417 Co-authored by: Avi Weiss <thnkslprpt@users.noreply.github.com> Co-authored by: Joseph Hickey <jphickey@users.noreply.github.com> Co-authored by: Isaac Rowe <irowebbn@users.noreply.github.com> Co-authored by: Jacob Hageman <skliper@users.noreply.github.com>
Checklist
Describe the contribution
to_lab_app.c
#157to_lab_app.c
over to the header fileTesting performed
GitHub CI actions all passing successfully.
Local testing with full cFS suite confirms app performance unaffected.
Expected behavior changes
No change to behavior.
Makes the file content more consistent with the rest of cFS.
Contributor Info
Avi Weiss @thnkslprpt