PxInit_Start_Cores()

Start core according to initialization structure.

APPLIES TO

8.2.0

SYNOPSIS
PxError_t _PxInit_Start_Cores (PxUChar_t coreId, PxInitSpec_ct initspec);
ARGUMENTS
coreId

Core to start (remark: no gap for TC39x, i.e. highest id is 5)

initspec

Initialization structure with core specific start address

RETURN VALUES
  • PXROS error code

DESCRIPTION

_PxInit_Start_Cores implements a default function for starting other cores in a multicore environment. This function is called inside of PxInit. It can be overridden by the user to customize the application.

SEE ALSO
USAGE
#include "pxdef.h"

PxError_t err = _PxInit_Start_Cores(core, _initspecs);

if (err != PXERR_NOERROR) {
    // Report error
}