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 Jul 17, 2023
1 parent 4c86c67 commit 5a38bcd
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 @@ -118,6 +118,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 @@ -129,6 +131,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 5a38bcd

Please sign in to comment.