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

Integration Candidate: 2020-09-23 #912

Merged
merged 13 commits into from
Sep 24, 2020
Merged

Integration Candidate: 2020-09-23 #912

merged 13 commits into from
Sep 24, 2020

Commits on Sep 10, 2020

  1. Fix #796, Remove dependency on CCSDS version define

    - Removes MESSAGE_FORMAT_IS_CCSDS_VER2 and all references
    - Now replaced by MISSION_MSGID_V2 and MISSION_INCLUDE_CCSDS_HEADER
      cmake variables
    - Base MIDs localized to cpu1_msgids.h and improved documentation
      indicating example nature of implementation, note issue #732
      may make this obsolete
    - Updated cfe_sb.dox for message module concept
    - MsgId base type now always uint32 (reduces logic differences)
    - Removed system log report of version used, in build and obvious
      from packet sizes
    - Cleaned extra documentation from cfe_sb_msg_id_util.c
    - Removed verification limits on CFE_PLATFORM_SB_MAX_MSG_IDS
    - Removed UT_GetActualPktLenField and UT_GetActualCmdCodeField
      that depended on the define, shouldn't directly access message
      in a unit test since it's implementation dependent
    - Default CCSDS version default now always 0 (per the standard)
      but mission configurable
    skliper committed Sep 10, 2020
    Configuration menu
    Copy the full SHA
    b70a1a3 View commit details
    Browse the repository at this point in the history

Commits on Sep 21, 2020

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

Commits on Sep 22, 2020

  1. Fix #893, replace calls to OS_open and OS_creat

    Use OS_OpenCreate instead, which has an API consistent with the
    rest of OSAL.  OS_open and OS_create will be deprecated.
    jphickey committed Sep 22, 2020
    Configuration menu
    Copy the full SHA
    06e0a63 View commit details
    Browse the repository at this point in the history

Commits on Sep 23, 2020

  1. Fix #906, Update variable checks in read_targetconfig

    This was using "DEFINED" to check if these variables were set.
    Problem discovered is that this is always true because "SIMULATION"
    is a cache var set from an environment variable, so it ALWAYS defined,
    it is just empty if not being used.
    
    Fix is to use if (SIMULATION) rather than if (DEFINED SIMULATION) which
    should only be true if the string is not empty, as intended.
    jphickey committed Sep 23, 2020
    Configuration menu
    Copy the full SHA
    8a8ac31 View commit details
    Browse the repository at this point in the history

Commits on Sep 24, 2020

  1. Merge pull request #880 from skliper/fix796-reduce-ver-depend

    Fix #796, Remove dependency on CCSDS version define
    yammajamma authored Sep 24, 2020
    Configuration menu
    Copy the full SHA
    e01d421 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #907 from jphickey/fix-906-cmake-system

    Fix #906, Update variable checks in read_targetconfig
    yammajamma authored Sep 24, 2020
    Configuration menu
    Copy the full SHA
    ce187a2 View commit details
    Browse the repository at this point in the history
  3. Merge pull request #895 from jphickey/fix-893-osal-open-create

    Fix #893, replace calls to OS_open and OS_creat
    yammajamma authored Sep 24, 2020
    Configuration menu
    Copy the full SHA
    56254e9 View commit details
    Browse the repository at this point in the history
  4. Merge pull request #892 from skliper/fix890-calccrc-rtn-stub

    Fix #890, CFE_ES_CalculateCRC default stub behavior
    yammajamma authored Sep 24, 2020
    Configuration menu
    Copy the full SHA
    a713784 View commit details
    Browse the repository at this point in the history
  5. Fix #827, Remove old name and id defines

    Removed CFE_PLATFORM_CPU_ID, CFE_PLATFORM_CPU_NAME,
    and CFE_MISSION_SPACECRAFT_ID.  Use CFE_PSP_GetProcessorId(),
    CFE_PSP_GetProcessorName(), CFE_PSP_GetSpacecraftId().
    skliper committed Sep 24, 2020
    Configuration menu
    Copy the full SHA
    501da0f View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    09e1b9c View commit details
    Browse the repository at this point in the history
  7. Merge pull request #885 from skliper/fix827-remove-old-ids

    Fix #827, Remove old name and id defines
    yammajamma authored Sep 24, 2020
    Configuration menu
    Copy the full SHA
    6d43c6e View commit details
    Browse the repository at this point in the history
  8. Merge pull request #902 from skliper/fix900-rm-ut-text

    Fix #900, Replace UT_Text with UtPrintf
    yammajamma authored Sep 24, 2020
    Configuration menu
    Copy the full SHA
    2076991 View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    094a477 View commit details
    Browse the repository at this point in the history