3. Getting Started

3.1. Dependencies

The following are required to build and use the SDL Project:

3.1.1. Code Generation Tools (CGT)

CGT is available with the Processor SDK J721E SDK. Alternatively, it can also be downloaded from here, and is also available with Code Composer Studio. SDL supports compilation with the TI ARM Clang Compiler Tools.

3.1.2. Processor SDK RTOS J721E

The SDL tests and examples depend on some modules from the SDK to build and run on the target. For J721E SDK, the tests/examples depend on modules from the PDK. The PDK is available in the Processor SDK release.

3.1.3. Code Composer Studio (CCS)

CCS is not required to load the application and test executables onto the target SoC, but it can be used for application debugging purposes. Find the latest download here: https://software-dl.ti.com/ccs/esd/documents/ccs_downloads.html

3.2. Building the SDL

The SDL includes a top-level makefile at SDL_INSTALL_DIR/ that is used to build the SDL libraries, tests, and examples. Before building, the user needs to install the correct tool chains and update the paths in the SDL Rules.make file located at SDL_INSTALL_DIR/.

The path for the PDK and the CGT must be updated in the Rules.make file prior to building.

3.2.1. Usage

Use the following make command for instructions on building a module, example or test in this project:

cd SDL_INSTALL_DIR
make help

The following table lists some of the available build commands along with a description.

Build Command

Description

make all PROFILE=release

Builds all libraries, tests and examples in release mode

make sdl_libs PROFILE=release

Builds the SDL core libraries

make test PROFILE=release

Builds the SDL unit tests

make examples PROFILE=release

Builds the SDL Safety Examples

make allclean

Clean all libraries and executables

Individual examples can also be built using the example name. More information is given in the Safety Examples section.

3.2.2. Libraries

The following table lists the libraries that are built and their function

Build Command

Description

sdl_ip

Library providing the IP-level support for SDL. It is needed by sdl_api library.

sdl_api

Library providing the SDL API interface

sdl_osal

Library providing the OSAL interface. It is needed by sdl_api library.

r5f_core

Library providing the core r5f functionalities needed to execute on R5F

3.3. Supported Boards/SOCs

This release supports execution on MCU R5F core only.

3.4. Loading and Running Examples

The provided tests and examples can be executed on the target using Secondary Bootloader (SBL) that is provided with PDK. The SDL applications need to first be converted into the appropriate format. This can be done using tools available in PDK. The following section gives an overview of how to convert an SDL test application into an “appimage” and load it to the target. Detailed information regarding the various supported bootmodes for the device is provided along with the PDK SBL documentation.

After building the executable (.xer5f file), the following commands can be run to create the .appimage file.

cd SDL_INSTALL_DIR
mono PDK_INSTALL_DIR/packages/ti/boot/sbl/tools/out2rprc/bin/out2rprc.exe test_app.xer5f MY_OUTPUT_DIR/test_app.rprc
PDK_INSTALL_DIR/packages/ti/boot/sbl/tools/multicoreImageGen/bin/MulticoreImageGen LE 55 MY_OUTPUT_DIR/test_app.appimage 4 MY_OUTPUT_DIR/test_app.rprc

Once the .appimage is created, it can be used along with Secondary Bootloader (SBL) to execute the application on the target.

Note

For Windows machine, the package is built using the gmake from TI XDC package. For Linux machine, make can be used. In all below commands “gmake” can be replaced with “make” for Linux machine build. Also makefile internally uses some binaries like rm, mkdir echo from Cygwin.

Note

To build different profiles, provide variable PROFILE=<release/debug> while invoking above commands

Note

The executable will be generated under SDL_INSTALL_DIR/binary/<test/example> folder.

Note

The library will be generated under SDL_INSTALL_DIR/binary/<path_to_source>/lib/<soc>/<core>/<debug/release>/ folder.

Important

If the installation folder depth is high then windows cmd prompt fails with error that it cannot find a file, even if the file is present in mentioned path, this is because Windows has a limitation of 8191 characters for the commands that can execute. In such situation as a work around either restrict the folder depth to d:/ or if it cannot be restricted use git bash to build. Refer https://support.microsoft.com/en-in/kb/830473 for more details. (Always point to xdc path gmake only)

Important

If ‘-j’ option is used in windows build and build fails then clean that particular application target and run the same command again w/o ‘-j’ option.