PxInitializeBeforePxInit()
Call all functions from the __PxInitializeTable.
- APPLIES TO
-
1.0.0
- SYNOPSIS
-
void PxInitializeBeforePxInit (void); - DESCRIPTION
-
PxInitializeBeforePxInitcalls all functions entered into the__PxInitializeTable. These functions should initialize hardware and special function registers, where supervisor mode is needed.Endinitprotection has to be removed if necessary. This function should be called beforePxInitis called.
- IMPLEMENTATION GUIDELINES
-
- Before call
-
-
This function has to be called before
PxInit(). (V)
-
- After call
-
-
No checks necessary.
-
- Best Practice
-
-
No restrictions
-
- SEE ALSO
- USAGE
-
#include "pxdef.h" PxInitializeBeforePxInit(); PxError_t error = PxInit(InitSpecsArray, CORE_COUNT); if (error != PXERR_NOERROR) { // Report error PxPanic(); }