Skip to content

Commit c47d368

Browse files
authored
Merge pull request #62 from nasa/integration-candidate
Integration candidate 2020-10-13
2 parents 37c7de7 + 93b94d2 commit c47d368

File tree

3 files changed

+27
-21
lines changed

3 files changed

+27
-21
lines changed

README.md

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,12 @@ To send telemtry to the "ground" or UDP/IP port, edit the subscription table in
1010

1111
## Version History
1212

13+
### Development Build: 2.4.0-rc1+dev9
14+
15+
- Update the TLMsockid field to be `osal_id_t` instead of uint32
16+
- Set revision number to 99 to indicate development status in telemetry
17+
- See <https://github.com/nasa/to_lab/pull/59>
18+
1319
### Development Build: 2.4.0-rc1+dev6
1420

1521
- Adds header guard to `to_lab_sub_table.h`
@@ -35,14 +41,14 @@ To send telemtry to the "ground" or UDP/IP port, edit the subscription table in
3541

3642
### Development Build: 2.3.6
3743

38-
- Replace references to `ccsds.h` types with the `cfe_sb.h`-provided type.
44+
- Replace references to `ccsds.h` types with the `cfe_sb.h`-provided type.
3945
- See <https://github.com/nasa/to_lab/pull/44>
4046

4147
### Development Build: 2.3.5
4248

4349
- Apply code style
4450
- See <https://github.com/nasa/to_lab/pull/43>
45-
51+
4652
### Development Build: 2.3.4
4753

4854
- Configure the maximum depth supported by OSAL, rather than a hard coded 64.

fsw/src/to_lab_app.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ typedef struct
5454
{
5555
CFE_SB_PipeId_t Tlm_pipe;
5656
CFE_SB_PipeId_t Cmd_pipe;
57-
uint32 TLMsockid;
57+
osal_id_t TLMsockid;
5858
bool downlink_on;
5959
char tlm_dest_IP[17];
6060
bool suppress_sendto;

fsw/src/to_lab_version.h

Lines changed: 18 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -23,40 +23,40 @@
2323
#define TO_LAB_VERSION_H
2424

2525
/*! @file to_lab_version.h
26-
* @brief Purpose:
27-
*
26+
* @brief Purpose:
27+
*
2828
* The TO Lab Application header file containing version information
29-
*
29+
*
3030
*/
3131

3232
/* Development Build Macro Definitions */
33-
#define TO_LAB_BUILD_NUMBER 6 /*!< Development Build: Number of commits since baseline */
34-
#define TO_LAB_BUILD_BASELINE "v2.4.0-rc1" /*!< Development Build: git tag that is the base for the current development */
33+
#define TO_LAB_BUILD_NUMBER 9 /*!< Development Build: Number of commits since baseline */
34+
#define TO_LAB_BUILD_BASELINE \
35+
"v2.4.0-rc1" /*!< Development Build: git tag that is the base for the current development */
3536

3637
/* Version Macro Definitions */
3738

38-
#define TO_LAB_MAJOR_VERSION 2 /*!< @brief ONLY APPLY for OFFICIAL releases. Major version number. */
39-
#define TO_LAB_MINOR_VERSION 3 /*!< @brief ONLY APPLY for OFFICIAL releases. Minor version number. */
40-
#define TO_LAB_REVISION 0 /*!< @brief ONLY APPLY for OFFICIAL releases. Revision version number. */
41-
#define TO_LAB_MISSION_REV 0 /*!< @brief ONLY USED by MISSION Implementations. Mission revision */
39+
#define TO_LAB_MAJOR_VERSION 2 /*!< @brief ONLY APPLY for OFFICIAL releases. Major version number. */
40+
#define TO_LAB_MINOR_VERSION 3 /*!< @brief ONLY APPLY for OFFICIAL releases. Minor version number. */
41+
#define TO_LAB_REVISION 99 /*!< @brief ONLY APPLY for OFFICIAL releases. Revision version number. */
42+
#define TO_LAB_MISSION_REV 0 /*!< @brief ONLY USED by MISSION Implementations. Mission revision */
4243

4344
#define TO_LAB_STR_HELPER(x) #x /*!< @brief Helper function to concatenate strings from integer macros */
4445
#define TO_LAB_STR(x) TO_LAB_STR_HELPER(x) /*!< @brief Helper function to concatenate strings from integer macros */
4546

46-
/*! @brief Development Build Version Number.
47+
/*! @brief Development Build Version Number.
4748
* @details Baseline git tag + Number of commits since baseline. @n
4849
* See @ref cfsversions for format differences between development and release versions.
4950
*/
50-
#define TO_LAB_VERSION TO_LAB_BUILD_BASELINE "+dev" TO_LAB_STR(TO_LAB_BUILD_NUMBER)
51+
#define TO_LAB_VERSION TO_LAB_BUILD_BASELINE "+dev" TO_LAB_STR(TO_LAB_BUILD_NUMBER)
5152

5253
/*! @brief Development Build Version String.
53-
* @details Reports the current development build's baseline, number, and name. Also includes a note about the latest official version. @n
54-
* See @ref cfsversions for format differences between development and release versions.
55-
*/
56-
#define TO_LAB_VERSION_STRING \
57-
" TO Lab DEVELOPMENT BUILD " \
58-
TO_LAB_VERSION \
59-
", Last Official Release: v2.3.0" /* For full support please use this version */
54+
* @details Reports the current development build's baseline, number, and name. Also includes a note about the latest
55+
* official version. @n See @ref cfsversions for format differences between development and release versions.
56+
*/
57+
#define TO_LAB_VERSION_STRING \
58+
" TO Lab DEVELOPMENT BUILD " TO_LAB_VERSION \
59+
", Last Official Release: v2.3.0" /* For full support please use this version */
6060

6161
#endif /* TO_LAB_VERSION_H */
6262

0 commit comments

Comments
 (0)