Skip to content
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: 2020-11-24 #1027

Merged
merged 24 commits into from
Dec 2, 2020
Merged

cFE Integration Candidate: 2020-11-24 #1027

merged 24 commits into from
Dec 2, 2020

Commits on Nov 4, 2020

  1. Fix #777, Use MSG APIs - Unit tests

    Updates the unit tests, unit test support, and
    stubs to replace deprecated SB APIs with MSG APIs.
    skliper committed Nov 4, 2020
    Configuration menu
    Copy the full SHA
    8514efa View commit details
    Browse the repository at this point in the history
  2. Fix #777, Use MSG APIs - Docs

    Update documentation to replace deprecated SB
    APIs with MSG APIs
    skliper committed Nov 4, 2020
    Configuration menu
    Copy the full SHA
    1da6b3c View commit details
    Browse the repository at this point in the history
  3. Fix #777, Use MSG APIs - Core software

    Update the core software from the deprecated SB
    APIs to the MSG APIs.
    skliper committed Nov 4, 2020
    Configuration menu
    Copy the full SHA
    34e5510 View commit details
    Browse the repository at this point in the history

Commits on Nov 16, 2020

  1. Fix #1016, bogus warning in strncpy

    Add an extra write of a null char which squelches a warning.
    jphickey committed Nov 16, 2020
    Configuration menu
    Copy the full SHA
    5eba09e View commit details
    Browse the repository at this point in the history

Commits on Nov 17, 2020

  1. Fix #1004, default stack size

    Do not enforce CFE_PLATFORM_ES_DEFAULT_STACK_SIZE as a minimum,
    it should be a default.
    jphickey committed Nov 17, 2020
    Configuration menu
    Copy the full SHA
    8de17d7 View commit details
    Browse the repository at this point in the history
  2. Fix #965, remove OSAL ID from App/LibInfo struct

    The "osal_id_t" type isn't defined in any of the CFE message/interface
    header files for use within telemetry.
    
    This ID is an ephemeral runtime value and is not relevant to a ground
    system or anything outside CFE, so it makes most sense to simply
    remove this ID from the telemtry structure.  Note that all commands
    are name-based, not ID-based, hence why this ID is not really useful.
    jphickey committed Nov 17, 2020
    Configuration menu
    Copy the full SHA
    720525e View commit details
    Browse the repository at this point in the history
  3. Fix #1023, correct stub appid parameter

    The type of this should be CFE_ES_ResourceID_t, not uint32
    jphickey committed Nov 17, 2020
    Configuration menu
    Copy the full SHA
    a129e8c View commit details
    Browse the repository at this point in the history

Commits on Nov 18, 2020

  1. Fix #663, replace fixed sizes with sizeof()

    Rather than directly referencing a constant, prefer to use
    the sizeof() operator on the instance or type whenever possible.
    jphickey committed Nov 18, 2020
    Configuration menu
    Copy the full SHA
    4f39bee View commit details
    Browse the repository at this point in the history
  2. Fix #663, unit test support functions

    Update use of uint32 to size_t in UT support code
    jphickey committed Nov 18, 2020
    Configuration menu
    Copy the full SHA
    b5e9cd3 View commit details
    Browse the repository at this point in the history
  3. Fix #663, Scrub datatypes across ES

    Fix all use of uint32 for sizes, replace with size_t
    Scrub all other types to make sure use is consistent,
    using proper typedef whenever available.
    jphickey committed Nov 18, 2020
    Configuration menu
    Copy the full SHA
    bb6124f View commit details
    Browse the repository at this point in the history
  4. Fix #663, Scrub datatypes across SB

    Fix all use of uint32 for sizes, replace with size_t
    Scrub all other types to make sure use is consistent,
    using proper typedef whenever available.
    jphickey committed Nov 18, 2020
    Configuration menu
    Copy the full SHA
    97d9fd5 View commit details
    Browse the repository at this point in the history
  5. Fix #663, Scrub datatypes across TBL

    Fix all use of uint32 for sizes, replace with size_t
    Scrub all other types to make sure use is consistent,
    using proper typedef whenever available.
    jphickey committed Nov 18, 2020
    Configuration menu
    Copy the full SHA
    c83fd48 View commit details
    Browse the repository at this point in the history
  6. Fix #663, Scrub datatypes across EVS

    Fix all use of uint32 for sizes, replace with size_t
    Scrub all other types to make sure use is consistent,
    using proper typedef whenever available.
    jphickey committed Nov 18, 2020
    Configuration menu
    Copy the full SHA
    2c1c905 View commit details
    Browse the repository at this point in the history
  7. Fix #663, Scrub datatypes across TIME

    Fix all use of uint32 for sizes, replace with size_t
    Scrub all other types to make sure use is consistent,
    using proper typedef whenever available.
    jphickey committed Nov 18, 2020
    Configuration menu
    Copy the full SHA
    2cea88d View commit details
    Browse the repository at this point in the history

Commits on Nov 21, 2020

  1. Merge pull request #1003 from jphickey/fix-663-datatypes

    Fix #663, more consistent use of data types
    astrogeco authored Nov 21, 2020
    Configuration menu
    Copy the full SHA
    5ae7613 View commit details
    Browse the repository at this point in the history

Commits on Nov 23, 2020

  1. Merge pull request #1028 from nasa/fix777-deprecate-sb

    Fix #777, Use MSG APIs - Core software
    Fix #777, Use MSG APIs - Docs
    Fix #777, Use MSG APIs - Unit tests
    
    See #998 for more details
    jphickey authored and astrogeco committed Nov 23, 2020
    Configuration menu
    Copy the full SHA
    7b9db48 View commit details
    Browse the repository at this point in the history

Commits on Nov 24, 2020

  1. Configuration menu
    Copy the full SHA
    e198d3c View commit details
    Browse the repository at this point in the history

Commits on Dec 1, 2020

  1. Fix #1006, Refactor UT_SetForceFail to UT_SetDefaultReturnValue (#1007)

    Co-authored-by: Gerardo E. Cruz-Ortiz <[email protected]>
    zanzaben and astrogeco authored Dec 1, 2020
    Configuration menu
    Copy the full SHA
    fe3427f View commit details
    Browse the repository at this point in the history
  2. Merge pull request #1018 from jphickey/fix-1016-fix-warning

    Fix #1016, bogus warning in strncpy
    astrogeco authored Dec 1, 2020
    Configuration menu
    Copy the full SHA
    113abb9 View commit details
    Browse the repository at this point in the history
  3. Merge pull request #1024 from jphickey/fix-1023-stub-appid

    Fix #1023, correct stub appid parameter
    astrogeco authored Dec 1, 2020
    Configuration menu
    Copy the full SHA
    0edf8c2 View commit details
    Browse the repository at this point in the history
  4. Merge pull request #1022 from jphickey/fix-1004-min-stacksize

    Fix #1004, default stack size
    astrogeco authored Dec 1, 2020
    Configuration menu
    Copy the full SHA
    1f7a716 View commit details
    Browse the repository at this point in the history
  5. Merge pull request #1017 from jphickey/fix-965-osal-ids-tlm

    Fix #965, remove OSAL ID from App/LibInfo struct
    jphickey committed Dec 1, 2020
    Configuration menu
    Copy the full SHA
    c4950a6 View commit details
    Browse the repository at this point in the history
  6. HOTFIX #1027, Remove one more doxygen reference

    Remove reference to `CFE_MSG_Message_t` in doxygen comments
    astrogeco authored Dec 1, 2020
    Configuration menu
    Copy the full SHA
    65758c9 View commit details
    Browse the repository at this point in the history

Commits on Dec 2, 2020

  1. Bump to v6.8.0-rc1+dev204

    Integration Candidate 2020-11-24
    astrogeco committed Dec 2, 2020
    Configuration menu
    Copy the full SHA
    3744a54 View commit details
    Browse the repository at this point in the history