Skip to content

Commit 5f08c5c

Browse files
authored
Merge pull request #190 from nasa/integration-candidate
Integration Candidate: 2020-08-26
2 parents 3f63a42 + cab0443 commit 5f08c5c

File tree

13 files changed

+106
-387
lines changed

13 files changed

+106
-387
lines changed

README.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,12 @@ This is a collection of APIs abstracting platform specific functionality to be l
88

99
## Version History
1010

11+
### Development Build: 1.5.0-rc1+dev6
12+
13+
- Adds CFE_PSP_GetProcessorName
14+
- Removes classic make artifacts
15+
- See <https://github.com/nasa/PSP/pull/190>
16+
1117
### Development Build: 1.4.0+dev76
1218

1319
- Provide a new framework and perform PSP coverage tests. New coverage test executable is built and several files within PSP are targeted.

fsw/inc/cfe_psp.h

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -216,6 +216,10 @@ extern uint32 CFE_PSP_GetSpacecraftId ( void );
216216
** CFE_PSP_GetSpacecraftId retuns the Spacecraft ID (if any )
217217
*/
218218

219+
extern const char * CFE_PSP_GetProcessorName(void);
220+
/*
221+
** CFE_PSP_GetProcessorName returns the processor name
222+
*/
219223

220224
extern uint32 CFE_PSP_Get_Timer_Tick(void);
221225
/*

fsw/mcp750-vxworks/make/compiler-opts.mak

Lines changed: 0 additions & 107 deletions
This file was deleted.

fsw/mcp750-vxworks/make/link-rules.mak

Lines changed: 0 additions & 39 deletions
This file was deleted.

fsw/mcp750-vxworks/src/cfe_psp_support.c

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,7 @@
6666
#include <target_config.h>
6767

6868
#define CFE_PSP_CPU_ID (GLOBAL_CONFIGDATA.Default_CpuId)
69+
#define CFE_PSP_CPU_NAME (GLOBAL_CONFIGDATA.Default_CpuName)
6970
#define CFE_PSP_SPACECRAFT_ID (GLOBAL_CONFIGDATA.Default_SpacecraftId)
7071

7172
/*
@@ -192,3 +193,23 @@ uint32 CFE_PSP_GetSpacecraftId (void)
192193
return CFE_PSP_SPACECRAFT_ID;
193194
}
194195

196+
/*
197+
** Name: CFE_PSP_GetProcessorName
198+
**
199+
** Purpose:
200+
** return the processor name.
201+
**
202+
** Parameters:
203+
**
204+
** Global Inputs: None
205+
**
206+
** Global Outputs: None
207+
**
208+
**
209+
** Return Values: Processor name
210+
*/
211+
const char *CFE_PSP_GetProcessorName (void)
212+
{
213+
return CFE_PSP_CPU_NAME;
214+
}
215+

fsw/mcp750-vxworks/src/psp.mak

Lines changed: 0 additions & 50 deletions
This file was deleted.

fsw/pc-linux/make/compiler-opts.mak

Lines changed: 0 additions & 95 deletions
This file was deleted.

fsw/pc-linux/make/link-rules.mak

Lines changed: 0 additions & 42 deletions
This file was deleted.

0 commit comments

Comments
 (0)