Skip to content

Commit ca9ff99

Browse files
committed
Fix #375, removed network setup call (will squash later)
1 parent 2ac5957 commit ca9ff99

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

fsw/pc-rtems/src/cfe_psp_start.c

+3
Original file line numberDiff line numberDiff line change
@@ -118,6 +118,8 @@ int timer_count = 0;
118118
*/
119119
int CFE_PSP_Setup(void)
120120
{
121+
/* TODO this hangs the dev board when using rki2 since network is already set up */
122+
#if 0
121123
rtems_status_code status;
122124

123125
/*
@@ -129,6 +131,7 @@ int CFE_PSP_Setup(void)
129131
{
130132
printf("Network init not successful: %s / %s (continuing)\n", rtems_status_text(status), strerror(errno));
131133
}
134+
#endif
132135

133136
return RTEMS_SUCCESSFUL;
134137
}

0 commit comments

Comments
 (0)