Skip to content

Commit 7c34582

Browse files
author
Gerardo E. Cruz-Ortiz
committed
Increase build number to 289 and update Readme
1 parent ed0d59f commit 7c34582

File tree

2 files changed

+23
-1
lines changed

2 files changed

+23
-1
lines changed

README.md

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,28 @@ The detailed cFE user's guide can be viewed at <https://github.com/nasa/cFS/blob
1010

1111
## Version History
1212

13+
### Development Build: 6.7.0+dev289
14+
15+
- Update `CFE_SB_TimeStampMsg` to save the message pointer argument `UT_Stub_CopyFromLocal` so that unit tests can check it
16+
17+
- Only affects build system. Fully backward compatible. The defaults are applied if a user has nothing specifically configured in their `targets.cmake`. The defaults will select osal, cfe-core, and psp as before. The user now has the option to explicitly configure and control the inclusion of these modules and also provide mission-specific search paths to override them as desired.
18+
19+
- Note this only affects UT stubs. Change the internal names of some stub arguments to match prototype. Ensure that:
20+
- All functions in the CFE public API have a stub function implemented
21+
- All parameters to the stub function are registered in the context object, so the values will be available to hook functions.
22+
- The names of all parameters match the prototype/documentation, so hook functions that use name-based argument value retrieval will work.
23+
24+
- Adds to table search path in `arch_build.cmake`
25+
26+
- Calls to OS_open() now use the OSAL-defined symbol, not the POSIX symbol.
27+
28+
- Defines new macros to report the build number and build baseline and new strings containing the version number of cFE and a combined string with the version number for OSAL, PSP, and CFE.
29+
30+
- Allow explicitly setting of the processor ID in `targets.cmake`. The `TGTx_PROCESSOR_ID` setting will be passed to the final build/link of CFE core as the CPU ID. If unspecified, then the CMake index value is used instead (backward compatible).
31+
32+
- `cmake` now detects conditions where no files were present to fulfill an config include file requirement and reports an error during `make prep` lists the files it checked for rather than generating an empty file.
33+
34+
1335
### Development Build: 6.7.21
1436

1537
- If a string is exactly the size of the field when using the `CFE_TBL_FILEDEF()` macro it will produce a compiler error

fsw/cfe-core/src/inc/cfe_version.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535

3636

3737
/* Development Build Macro Definitions */
38-
#define CFE_BUILD_NUMBER 295 /*!< Development Build: Number of commits since baseline */
38+
#define CFE_BUILD_NUMBER 289 /*!< Development Build: Number of commits since baseline */
3939
#define CFE_BUILD_BASELINE "v6.7.0" /*!< Development Build: git tag that is the base for the current development */
4040

4141
/* Version Macro Definitions */

0 commit comments

Comments
 (0)