Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
TASTE
regression-suites
Commits
2d429e24
Commit
2d429e24
authored
Jul 01, 2019
by
Tiago Jorge
Browse files
Add doc comments for globalFpgaStatus_<Function Block's name> status global variables.
parent
787a3be3
Changes
1
Hide whitespace changes
Inline
Side-by-side
Demo_CoRAMBAD_Brave_GR740_GNC/calling/calling.c
View file @
2d429e24
...
...
@@ -11,8 +11,14 @@ char p_szGlobalState[] = "modeX";
#define FPGA_ERROR "error"
#define FPGA_DISABLED "disabled"
// For each HWSW Function Block a global variable must be created with name "globalFpgaStatus_<Function Block's name>".
// This variable will host at any time the current HW status associated with the respective Function Block.
// This status shall be updated by the HW reconfiguration manager commanding of the FPGA and FPGA status check,
// and can be one of: FPGA_READY, FPGA_RECONFIGURING, FPGA_ERROR, FPGA_DISABLED.
// Status is kept per Function Block and not for the full FPGA, to accomodate for future work on partial reconfiguration of the HW accelerator.
char
globalFpgaStatus_gnc
[]
=
FPGA_READY
;
// Print any output only at the end of the test run (using sprintf to array), to avoid the usual real time degradation of console prints.
#define NR_MODE_SWITCHES 40
char
testLog
[
40
*
NR_MODE_SWITCHES
][
100
];
int
line
=
0
;
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment