Skip to content

Commit

Permalink
Fix #375, removed network setup call (will squash later)
Browse files Browse the repository at this point in the history
  • Loading branch information
skliper committed Dec 19, 2023
1 parent a988491 commit 2718d39
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions fsw/pc-rtems/src/cfe_psp_start.c
Original file line number Diff line number Diff line change
Expand Up @@ -115,6 +115,8 @@ int timer_count = 0;
*/
int CFE_PSP_Setup(void)
{
/* TODO this hangs the dev board when using rki2 since network is already set up */
#if 0
rtems_status_code status;

/*
Expand All @@ -126,6 +128,7 @@ int CFE_PSP_Setup(void)
{
printf("Network init not successful: %s / %s (continuing)\n", rtems_status_text(status), strerror(errno));
}
#endif

return RTEMS_SUCCESSFUL;
}
Expand Down

0 comments on commit 2718d39

Please sign in to comment.