-
Notifications
You must be signed in to change notification settings - Fork 203
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, Caelum+dev1 #2001
Commits on Jul 14, 2021
-
Configuration menu - View commit details
-
Copy full SHA for 8aa153b - Browse repository at this point
Copy the full SHA 8aa153bView commit details
Commits on Aug 23, 2021
-
Fix nasa#1672, return type conversions in CFE_ES_GetTaskName
Provide better status code conversion from OS_GetResourceName
Configuration menu - View commit details
-
Copy full SHA for bc2a58f - Browse repository at this point
Copy the full SHA bc2a58fView commit details
Commits on Aug 28, 2021
-
Fix nasa#1319, Remove extern from function prototypes
pavll committedAug 28, 2021 Configuration menu - View commit details
-
Copy full SHA for d81ad3d - Browse repository at this point
Copy the full SHA d81ad3dView commit details
Commits on Aug 29, 2021
-
Fix nasa#1302, Use macro in CFE_ResourceId_IsDefined
pavll committedAug 29, 2021 Configuration menu - View commit details
-
Copy full SHA for f46bc4f - Browse repository at this point
Copy the full SHA f46bc4fView commit details
Commits on Sep 22, 2021
-
Fix nasa#1818, EVS functional test add for different event types
pavll committedSep 22, 2021 Configuration menu - View commit details
-
Copy full SHA for 17f5770 - Browse repository at this point
Copy the full SHA 17f5770View commit details -
Fix nasa#1945, add CFE_SB_ValueToMsgId/MsgIdToValue wrappers
Correct code that was not correctly using the CFE_SB_ValueToMsgId or CFE_SB_MsgIdToValue conversion wrappers where required to do so. This should be used whenever the value is intentionally converted to/from an integer. The CFE_SB_MsgId_t type should not be assumed to be an integer in nature.
Configuration menu - View commit details
-
Copy full SHA for 168181f - Browse repository at this point
Copy the full SHA 168181fView commit details
Commits on Sep 23, 2021
-
Fix nasa#1944, use 0 as the invalid CFE_SB_MsgId_t value
Historically the CFE_SB_MSG_ID_INVALID constant was defined as 0xFFFFFFFF/-1, where 0 was considered valid. Although 0 is indeed valid for the first word of a CCSDS primary spacepacket header, it is not actually valid for use with SB. Because SB is now more decoupled from CCSDS header definitions, there are a number of advantages to using 0 instead of -1, as it is more passively safe: - Objects which are cleared as part of normal BSS clearing will be set invalid - Objects which are memset to zero will be set invalid In contrast, when the invalid value is nonzero, objects which are memset/cleared are valid by default, and must be actively set invalid to be safe.
Configuration menu - View commit details
-
Copy full SHA for 7320f2f - Browse repository at this point
Copy the full SHA 7320f2fView commit details -
Fix nasa#245, use type safe value for CFE_SB_MsgId_t
This makes CFE_SB_MsgId_t to be a safe wrapper around CFE_SB_MsgId_Atom_t, such that the values cannot be silently/implicitly interchanged with other integers. This enforces that the MsgId/Value conversion helpers must be used when conversion to/from integers is intended.
Configuration menu - View commit details
-
Copy full SHA for 6cf6d4c - Browse repository at this point
Copy the full SHA 6cf6d4cView commit details
Commits on Sep 29, 2021
-
Fix nasa#1965, add conversion macros to CFE_MSG_Message_t
Use a conversion macro, rather than directly referencing a member name/heirarchy within the CFE_MSG header structures, when calling SB APIs that accept a CFE_MSG_Message_t* type. The conversion macro is specific to how the headers are actually defined.
Configuration menu - View commit details
-
Copy full SHA for 7440e82 - Browse repository at this point
Copy the full SHA 7440e82View commit details -
Fix nasa#1979, implement abstract config registry module
Adds a new module called "config" that tracks simple key/value pairs. All values are const. As a proof of concept, all version information is mirrored into this key store, and ES is updated to use this instead of the GLOBAL_CONFIGDATA when generating events.
Configuration menu - View commit details
-
Copy full SHA for df5e143 - Browse repository at this point
Copy the full SHA df5e143View commit details
Commits on Oct 1, 2021
-
Fix nasa#1984, avoid aliasing warnings
Use an actual `void*` value when invoking functions that output an opaque pointer value. If necessary the value of this pointer can then be assigned to the real pointer type to dereference.
Configuration menu - View commit details
-
Copy full SHA for 2f4a7fd - Browse repository at this point
Copy the full SHA 2f4a7fdView commit details
Commits on Oct 6, 2021
-
Fix nasa#1988, consolidate repeated MSG stub setup in sb_UT
Utilize the common setup/wrapper functions in ut_support.c whenever possible MSG dispatching in the generic handler.
Configuration menu - View commit details
-
Copy full SHA for 813744d - Browse repository at this point
Copy the full SHA 813744dView commit details
Commits on Oct 16, 2021
-
Configuration menu - View commit details
-
Copy full SHA for 612a3d8 - Browse repository at this point
Copy the full SHA 612a3d8View commit details
Commits on Oct 19, 2021
-
Merge pull request nasa#1663 from oliverhamburger/fix-1546-Use-CFE-TI…
Configuration menu - View commit details
-
Copy full SHA for 6455485 - Browse repository at this point
Copy the full SHA 6455485View commit details -
Configuration menu - View commit details
-
Copy full SHA for 33e6a71 - Browse repository at this point
Copy the full SHA 33e6a71View commit details
Commits on Oct 21, 2021
-
Fix nasa#1300, Add CFE_ES_MemAddOff structure
pavll committedOct 21, 2021 Configuration menu - View commit details
-
Copy full SHA for e91275e - Browse repository at this point
Copy the full SHA e91275eView commit details
Commits on Oct 28, 2021
-
Merge pull request nasa#1986 from jphickey/fix-1984-aliasing-warnings
Fix nasa#1984, avoid aliasing warnings
Configuration menu - View commit details
-
Copy full SHA for 965f0df - Browse repository at this point
Copy the full SHA 965f0dfView commit details -
Merge pull request nasa#1911 from pavll/fix-1300-es-memaddoff-struct
Fix nasa#1300, CFE_ES_MemAddOff structure to associated CFE_ES_MemAddress_t and CFE_ES_MemOffset_t
Configuration menu - View commit details
-
Copy full SHA for d7abb46 - Browse repository at this point
Copy the full SHA d7abb46View commit details
Commits on Nov 2, 2021
-
Fix nasa#1952, patch for recursive event loop
Adds CFE_SB_RequestToSendEvent/CFE_SB_FinishSendEvent wrappers around all events generated by CFE_SB_TransmitMsgValidate. This is avoids the potential for a recursive loop if configured improperly.
Configuration menu - View commit details
-
Copy full SHA for 92cc55e - Browse repository at this point
Copy the full SHA 92cc55eView commit details -
Merge pull request nasa#1954 from jphickey/fix-1952-recursive-event
Fix nasa#1952, patch for recursive event loop
Configuration menu - View commit details
-
Copy full SHA for dd62c2e - Browse repository at this point
Copy the full SHA dd62c2eView commit details
Commits on Nov 3, 2021
-
Merge pull request nasa#1873 from jphickey/fix-1672-errconv-gettaskname
Fix nasa#1672, return type conversions in CFE_ES_GetTaskName
Configuration menu - View commit details
-
Copy full SHA for c2836ce - Browse repository at this point
Copy the full SHA c2836ceView commit details -
Merge pull request nasa#1973 from pavll/fix-1818-evs-func-test-event-…
…types Fix nasa#1818, EVS functional test add for different event types
Configuration menu - View commit details
-
Copy full SHA for 415c7b4 - Browse repository at this point
Copy the full SHA 415c7b4View commit details -
Merge pull request nasa#1995 from jphickey/fix-1988-sb-ut-calltaskpipe
Fix nasa#1988, consolidate repeated MSG stub setup in sb_UT
Configuration menu - View commit details
-
Copy full SHA for 7ca6161 - Browse repository at this point
Copy the full SHA 7ca6161View commit details -
Merge pull request nasa#1908 from pavll/fix-1319-remove-extern-from-f…
…unction-protos Fix nasa#1319, Remove extern from function prototypes Re-adds externs removed from CFE_ES_ObjectTable and CFE_ES_Global to fix RTEMS build
Configuration menu - View commit details
-
Copy full SHA for 7839aae - Browse repository at this point
Copy the full SHA 7839aaeView commit details -
Merge pull request nasa#1980 from jphickey/fix-1979-generic-config-re…
…gistry Fix nasa#1979, implement abstract config registry module
Configuration menu - View commit details
-
Copy full SHA for 05ca2f6 - Browse repository at this point
Copy the full SHA 05ca2f6View commit details
Commits on Nov 10, 2021
-
Merge pull request nasa#1966 from jphickey/fix-1965-cast-message-types
Fix nasa#1965, better message type pointer conversion
Configuration menu - View commit details
-
Copy full SHA for 991014c - Browse repository at this point
Copy the full SHA 991014cView commit details -
Fix nasa#1537, Replace hardcoded message limit in TIME
- Uses CFE_PLATFORM_SB_DEFAULT_MSG_LIMIT
Configuration menu - View commit details
-
Copy full SHA for e52ac7a - Browse repository at this point
Copy the full SHA e52ac7aView commit details -
Merge pull request nasa#2002 from zachar1a/fix-#1537_replace_hardcode…
…d_msg_limits_in_TIME_services Fix nasa#1537, replacing hardcoded message limit in TIME services
Configuration menu - View commit details
-
Copy full SHA for 3535ddb - Browse repository at this point
Copy the full SHA 3535ddbView commit details
Commits on Nov 17, 2021
-
Configuration menu - View commit details
-
Copy full SHA for 60dbe34 - Browse repository at this point
Copy the full SHA 60dbe34View commit details -
Merge pull request nasa#1909 from pavll/fix-1302-use-macro-insteadof-…
…zero-compare Fix nasa#1302, Use macro in CFE_ResourceId_IsDefined
Configuration menu - View commit details
-
Copy full SHA for b2e37c8 - Browse repository at this point
Copy the full SHA b2e37c8View commit details
Commits on Dec 6, 2021
-
Update build baseline and bump to v7.0.0-rc4+dev39
- Set new build baseline for cFS-Caelum-rc4: v7.0.0-rc4 - Standardize development indicators in cfe_version.h to use 0xFF in MissionRev to indicate development version
Configuration menu - View commit details
-
Copy full SHA for 5a1d138 - Browse repository at this point
Copy the full SHA 5a1d138View commit details