Skip to content

Commit

Permalink
Adding call to PalSysInit.
Browse files Browse the repository at this point in the history
  • Loading branch information
kevin-gillespie committed Dec 3, 2024
1 parent 948c120 commit c874944
Showing 1 changed file with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -131,6 +131,9 @@ __weak int Board_Init(void)
return 0;
}

/* This function is used for the Bluetooth stack initialization */
__weak void PalSysInit(void) {}

/**
* This function is called just before control is transferred to main().
*
Expand Down Expand Up @@ -182,6 +185,8 @@ __weak void SystemInit(void)

PinInit();
Board_Init();

PalSysInit();
}

#if defined(__ARM_FEATURE_CMSE) && (__ARM_FEATURE_CMSE == 3U)
Expand Down

0 comments on commit c874944

Please sign in to comment.