Overview

Code Composer Studio has several terminal commands that can be used to create, build, and import projects.

The executable to run the command line builds is in the 'eclipse' folder of your CCS install:

<INSTALL DIR>\ccsv[x]\eclipse (where x is the major CCS version number).

IMPORTANT: The below examples are for CCSv5 and greater on Windows. If you are using CCSv4, see the Working with CCSv4 section below. If you are using CCS on Linux, see the Working with CCS Linux section below.

Note:

These commands are specific to CCS and are different from the CDT headless commands. When working with CCS projects it is recommended to use the CCS specific commands rather than the CDT headless commands. The reverse holds true for non-CCS projects (standard Eclipse CDT projects). Do NOT use the the CCS specific commands to build standard Eclipse CDT projects. In those cases, use the CDT headless commands (check the standard Eclipse CDT documentation for details).

CCS Theia:

Most of this content is applicable to CCS Eclipse. If using CCS Theia, please also refer to the Working with CCS Theia section below.

Create a CCS Project

Usage:
eclipsec -noSplash -data "<workspace_dir>" -application com.ti.ccstudio.apps.projectCreate (-ccs.projectSpec <file> | -ccs.name <name> -ccs.device <id>) [<options>]

Options:

-ccs.projectSpec "<file>"
    The project-spec defining the project(s) to be created.
    See the <ccs-install-root>/ccs/eclipse/plugins/com.ti.ccstudio.project.templates/schema/projectSpec.xsd file for details.

-ccs.name <name>
    The name of the new project.

-ccs.location "<dir>"
    The filesystem location of the project, if it is
    to be created outside of workspace (optional).

-ccs.outputType (executable | staticLibrary)
    The output-type (optional).
    Defaults to 'executable'.

-ccs.device <id>
    The device-variant ID.
    A list of all available device-variant IDs will be
    printed if this argument is missing or not recognized.

-ccs.endianness <name>
    The device endianness (optional).
    Defaults to device-specific setting, if defined.
    A list of all applicable endianness types will be
    printed if this argument is not recognized.

-ccs.toolChain (TI | TICLANG | GNU)
    Compiler tool-chain (optional).
    Defaults to 'TI'.

-ccs.toolVersion <version>
    Compiler version (optional).
    Defaults to highest applicable version.

-ccs.outputFormat (COFF | ELF)
    The output-format (optional).
    Defaults to device-specific setting, if defined, or 'COFF'.

-ccs.products "[<id>[:<version>];]+"
    List of products to enable (optional).

-ccs.cmd "<file>"
    Linker command file to be physically copied into the project (optional).
    Defaults to device-specific setting, if defined.

-ccs.rts "<file>"
    Runtime support library (optional).
    Defaults to device-specific setting, if defined.

-ccs.configurations <name1>[ <name2>]*
    Space-separated list of build-configurations to create (optional).
    Defaults to 'Debug Release'.

-ccs.defaultConfiguration <name>
    Name of one build-configuration which would be made active each time this project is imported into workspace.

-ccs.references <name1>[ <name2>]*
    Space-separated list of project-references to add to created project (optional).

-ccs.artifactName <name>
    Name of the build-artifact (optional).
    Defaults to the name of the project.

-ccs.artifactExtension <ext>
    Extension of the build-artifact (optional).
    Defaults to 'out' or 'lib', depending on '-ccs.outputType'.

-ccs.listBuildOptions
    Prints a list of all applicable build-options (optional).
    Does not actually create the project.

-ccs.setCompilerOptions "<options>" [@prepend] [@files ["<path>" ]+] [@folders ["<path>" ]+] [@configurations [<name> ]+]
    Space-separated list of build-options to set on the created project's compiler tool (optional)
    (use backslash '\' to escape all double-quotes in <options>).
    Optionally, force the value for any list-type options to be prepended to current value.
    Optionally, specify lists of files/folders (project-relative paths) to set these options on.
    Optionally, specify a list of build-configurations in which these options are to be set.

-ccs.setLinkerOptions "<options>" [@prepend] [@configurations [<name> ]+]
    Similar to -ccs.setCompilerOptions

-ccs.setHexOptions "<options>" [@prepend] [@configurations [<name> ]+]
    Similar to -ccs.setCompilerOptions. Hex tool needs to be separately enabled using -ccs.enableHexTool.

-ccs.setSysConfigOptions "<options>" [@prepend] [@configurations [<name> ]+]
    Similar to -ccs.setCompilerOptions. SysConfig tool needs to be separately enabled using -ccs.enableSysConfigTool.

-ccs.enableHexTool
    Enable the Hex tool with its default build-options (optional).
    Defaults to 'false'.

-ccs.enableSysConfigTool
    Enable the SysConfig tool with its default build-options (optional).
    Defaults to 'false'.

-ccs.setPreBuildStep "<command>" [@configurations [<name> ]+]
    Command to be used as a pre-build step (optional)
    (use backslash '\' to escape all double-quotes in <command>).
    Optionally, specify a list of build-configurations in which this build-step is to be set.

-ccs.setPostBuildStep "<command>" [@configurations [<name> ]+]
    Command to be used as a post-build step (optional)
    (use backslash '\' to escape all double-quotes in <command>).
    Optionally, specify a list of build-configurations in which this build-step is to be set.

-ccs.copyFile "<file>" [@dir "<dir>"] [@configurations [<name> ]+]
    Copies the given file/directory into the project upon creation (optional).
    Optionally, specify a project-relative directory as the file's destination.
    Optionally, specify a list of build-configurations in which this file is to be used.

-ccs.linkFile "<file>" [@dir "<dir>" [@virtual]] [@configurations [<name> ]+]
    Links the given file/directory into the project upon creation (optional).
    Optionally, specify a project-relative directory as the file's destination.
    Optionally, specify whether the destination directory should be created as virtual.
    Optionally, specify a list of build-configurations in which this file is to be used.

-ccs.definePathVariable <name> <value> [@scope (global|project)]
    Defines the given path-variable for resolving portable linked file paths (optional)
    (also defines a global build-macro with the same name and value).
    Optionally, specify the scope (defaults to 'global').

-ccs.defineBuildVariable <name> <value> [@type (string|dir|file)] [@scope (global|project|configuration)] [@configurations [<name> ]+]
    Defines the given build-variable (optional).
    Optionally, specify the type (defaults to 'string').
    Optionally, specify the scope (defaults to 'global').
    Optionally, specify a list of build-configurations in which this build-variable is to be defined
    (applies only when scope is 'configuration').

-ccs.autoGenerateMakefiles (true|false)
    Turns automatic makefile-generation on/off (optional).
    Defaults to 'true'.

-ccs.buildLocation "<path>"
    Absolute or project-relative path to folder to be used as the build-directory (optional).
    Applies only when the '-ccs.autoGenerateMakefiles' flag is set to 'false'.
    Defaults to project root-directory.

-ccs.buildCommand "<path>"
    Absolute path to an alternative build utility (optional).
    Defaults to the gmake utility that is shipped with CCS.

-ccs.buildCommandFlags "<flags>"
    List of flags to override the default build-command flags (optional).

-ccs.buildTarget <name>
    Name of the target to run during an incremental build (optional).
    Defaults to 'all'.

-ccs.cleanTarget <name>
    Name of the target to run during a clean build (optional).
    Defaults to 'clean'.

-ccs.template <id>
    ID of the project-template to use when generating the new project (optional).
    A list of all applicable template IDs will be
    printed if this argument is not recognized.

-ccs.ignoreDefaultDeviceSettings
    Iff 'true' ignores any default settings specified by the selected device.

-ccs.ignoreDefaultCCSSettings
    Iff 'true' ignores any non-essential default settings made by CCS.

-ccs.overwrite (full | keep)
    Forces overwrite of existing file-system resources (optional).
    A 'full' overwrite would delete and recreate the entire existing project folder.
    A 'keep' overwrite would keep all existing filesystem project contents
    (applies only when workspace project does not exist).

-ccs.autoBuild
    Performs an incremental build on the imported/created project (optional).

-ccs.kind <id>
    The project kind ID (optional).
    [Deprecated] - use -ccs.outputType

-ccs.listBuildOptionIDs
    Prints a list of all applicable build-option IDs (optional).
    Does not actually create the project.
    [Deprecated] - use -ccs.listBuildOptions

-ccs.setBuildOption <id> "<value>" [@prepend] [@configurations <name1>[ <name2>]*]
    Sets the given build-option on the created project (optional).
    (use the wildcard '*' to match multiple characters in <id> and enum <value>'s).
    Optionally, force the value for any list-type options to be prepended to current value.
    Optionally, specify a list of build-configurations in which this option is to be set.
    [Deprecated] - use -ccs.setCompilerOptions/-ccs.setLinkerOptions

-ccs.args <file>
    File containing any extra arguments (optional).

-ccs.help
    Print this help message.

DSP/BIOSv5.x support:
-bios.version <version>
    DSP/BIOSv5.x tools version.

RTSC support:
-rtsc.enableRtsc
    Enable RTSC support.

-rtsc.xdcVersion <version>
    XDCtools version (optional).
    Defaults to highest available version, when '-rtsc.enableRtsc' is specified.

-rtsc.target <id>
    RTSC target (optional).
    Will be auto-set by default.

-rtsc.platform <id>
    RTSC platform (optional).
    Will be left blank by default.

-rtsc.buildProfile <profile>
    RTSC build-profile (optional).
    Defaults to 'whole_program'.

-rtsc.products "[<id>[:<version>];]+"
    List of RTSC products to enable (optional). [Deprecated] - use the '-ccs.products' flag instead.

-rtsc.setConfiguroOptions "<options>"
    Space-separated list of options to set on the created project's Configuro tool (optional)
    (use backslash '\' to escape all double-quotes in <options>).

-rtsc.configurationOnly
    Generate a reusable RTSC Configuration project (optional).

Note that the available options can vary depending on the CCS version used. For the list of options available for your specific CCS version, run the command with the '-ccs.help' option:
eclipsec -noSplash -data <workspace_path> -application com.ti.ccstudio.apps.projectCreate -ccs.help

Examples

  • Create a C64xx project 'newProject' at location 'C:\myWorkspace\newProject\', leaving all other arguments at their defaults:
    eclipsec -noSplash -data "C:\myWorkspace" -application com.ti.ccstudio.apps.projectCreate -ccs.name newProject -ccs.device com.ti.ccstudio.deviceModel.C6000.GenericC64xxDevice

  • Create a project as above, and also set some extra build-options (note the optional use of wildcard ★ in option-IDs):
    eclipsec -noSplash -data "C:\myWorkspace" -application com.ti.ccstudio.apps.projectCreate -ccs.name newProject -ccs.device com.ti.ccstudio.deviceModel.C6000.GenericC64xxDevice -ccs.setBuildOption com.ti.ccstudio.buildDefinitions.C6000_6.1.compilerID.QUIET_LEVEL com.ti.ccstudio.buildDefinitions.C6000_6.1.compilerID.QUIET_LEVEL.VERBOSE -ccs.setBuildOption com.ti.ccstudio.buildDefinitions.C6000_*.compilerID.DEFINE "DEBUG" -ccs.setBuildOption com.ti.ccstudio.buildDefinitions.*.compilerID.KEEP_ASM true

  • Create a GCC baremetal project for AM3359:
    eclipsec -noSplash -data "/Users/user/workspace_v6_1" -application com.ti.ccstudio.apps.projectCreate -ccs.name AM3359_GCC -ccs.device "Cortex A.AM3359" -ccs.copyFile "/ti/ccsv6/tools/compiler/gcc-arm-none-eabi-4_8-2014q3/share/gcc-arm-none-eabi/samples/src/qemu/hello.c" -ccs.endianness little -ccs.kind executable -ccs.cgtVersion "GNU_4.8.4:Linaro" -ccs.cmd "AM335x.lds" -ccs.outputFormat ELF -ccs.setCompilerOptions "-I=${CCS_BASE_ROOT}/arm/include" -ccs.overwrite full
    Notes:
    • The option -ccs.cmd "AM335x.lds" is optional if you use the default linker script. It is included here to show how to use it.
    • The option -ccs.overwrite full is optional. It re-writes an existing project of the same name in the workspace.
    • Always give preference to pass forward slashes as the parameters, as they can be used across host OSes (Windows/Linux).

  • Create a GCC SYSBIOS project template for AM4379 (SYSBIOS --> GNU Target Examples --> Typical project):
    eclipsec -noSplash -data "/Users/user/workspace_v6_1" -application com.ti.ccstudio.apps.projectCreate -ccs.name AM4379_SYSBIOS -ccs.device "Cortex A.AM4379" -ccs.endianness little -ccs.kind executable -ccs.cgtVersion "GNU_4.8.4:Linaro" -ccs.cmd "" -ccs.outputFormat ELF -ccs.setCompilerOptions "-I=${CCS_BASE_ROOT}/arm/include -mfloat-abi=hard" -ccs.setLinkerOptions "-nostartfiles -static --gc-sections -lc -lgcc -lm -lnosys -L${BIOS_CG_ROOT}/packages/gnu/targets/arm/libs/install-native/arm-none-eabi/lib/fpu" -rtsc.xdcVersion "3.31.01.33.core" -rtsc.enableDspBios -rtsc.biosVersion "6.41.04.54" -rtsc.buildProfile "release" -rtsc.products "com.ti.rtsc.SYSBIOS:6.41.04.54" -rtsc.target "gnu.targets.arm.A9F" -rtsc.platform "ti.platforms.evmAM437X" -ccs.copyFile "/ti/ccsv6/eclipse/plugins/com.ti.rtsc.SYSBIOS.product.ui_6.41.4.54/resources/generic/typical/default/app.cfg" -ccs.copyFile "/ti/ccsv6/eclipse/plugins/com.ti.rtsc.SYSBIOS.product.ui_6.41.4.54/resources/generic/typical/main.c" -ccs.overwrite full
    Notes:
    • The option -ccs.cmd "" is mandatory for RTSC projects to avoid including the standard linker script AM437x.lds.
    • The option -ccs.overwrite full is optional. It re-writes an existing project of the same name in the workspace.
    • Always give preference to pass forward slashes as the parameters, as they can be used across host OSes (Windows/Linux).
    • The versions of SYSBIOS, RTSC and GCC may have to be changed depending on the components installed.

Build a CCS Project

Usage:
eclipsec -noSplash -data "<workspace_dir>" -application com.ti.ccstudio.apps.projectBuild (-ccs.projects <name1>[ <name2>]* | -ccs.workspace) [<options>]

Options:

-ccs.projects <name1>[ <name2>]*
    Space-separated list of projects to build.

-ccs.workspace
    Build entire workspace.

-ccs.configuration <name>
    The build-configuration to build (optional).
    Defaults to active build-configuration.

-ccs.buildType (incremental | full | clean)
    The type of build to perform (optional).
    Defaults to 'incremental'.

-ccs.listErrors
    List all errors after build completes (optional).

-ccs.listProblems
    List all errors and warnings after build completes (optional).

-ccs.autoOpen
    Automatically open any closed projects (optional).

-ccs.args <file>
    File containing any extra arguments (optional).

-ccs.help
    Print this help message.

Note that the available options can vary depending on the CCS version used. For the list of options available for your specific CCS version, run the command with the '-ccs.help' option:
eclipsec -noSplash -data <workspace_path> -application com.ti.ccstudio.apps.projectBuild -ccs.help

Examples

  • Clean the active build-configuration of project 'newProject' without building it:
    eclipsec -noSplash -data "C:\myWorkspace" -application com.ti.ccstudio.apps.projectBuild -ccs.projects newProject -ccs.clean

  • Rebuild the 'Debug' build-configuration of project 'newProject':
    eclipsec -noSplash -data "C:\myWorkspace" -application com.ti.ccstudio.apps.projectBuild -ccs.projects newProject -ccs.configuration Debug

  • Rebuild the active build-configuration of all projects in the workspace:
    eclipsec -noSplash -data "C:\myWorkspace" -application com.ti.ccstudio.apps.projectBuild -ccs.workspace

Import an Existing CCS Project

Usage:
eclipsec -noSplash -data "<workspace_dir>" -application com.ti.ccstudio.apps.projectImport -ccs.location <path> [<options>]

Options:

-ccs.location <path>
    Absolute or relative path to the location containing the project.
    Relative paths will be assumed to be relative to the working directory.

-ccs.device <id>
    The device-variant ID. Applicable only when '-ccs.location' flag resolves to a .projectspec file.

-ccs.definePathVariable <name> <value> [@scope (global|project)]
    Defines the given path-variable for resolving portable linked file paths (optional)
    (also defines a global build-macro with the same name and value).
    Optionally, specify the scope (defaults to 'global').

-ccs.copyIntoWorkspace
    Copy project folder and contents into the workspace directory (optional).
    Defaults to 'false'.

-ccs.overwrite
    Forces overwrite of existing file-system resources (optional).

-ccs.renameTo
    Rename the imported project to the specified name.

-ccs.autoBuild
    Performs an incremental build on the imported/created project (optional).

-ccs.autoImportReferencedProjects
    If 'true', an attempt is made to automatically import any referenced projects found in the same parent directory as the main project.

-ccs.autoRenameReferencedProjects
    If 'true', and iff the '-ccs.renameTo' flag is present, any imported referenced projects will also be renamed automatically.

-ccs.referencedProjectSearchDirectory
    Directory to search for referenced projects. Applicable only when '-ccs.autoImportReferencedProjects' flag is present.

-ccs.captureCopiedFileOrigins
    Capture the original locations of all resources copied into the project during the import. These will be captured into a text file named 'copiedFileOrigins.txt'.

-ccs.captureProjectspecApplicability
    Capture the list of devices that the imported projectspec is applicable to. These will be captured into a text file named 'projectSpecApplicability.txt'.

-ccs.args <file>
    File containing any extra arguments (optional).

-ccs.help
    Print this help message.

Note that the available options can vary depending on the CCS version used. For the list of options available for your specific CCS version, run the command with the '-ccs.help' option:
eclipsec -noSplash -data <workspace_path> -application com.ti.ccstudio.apps.projectImport -ccs.help

Working with CCS Linux

On Linux, the command is slightly different. Use "eclipse" instead of "eclipsec", followed by the rest of the command.

eclipse -noSplash -data <workspace_path> -application com.ti.ccstudio.apps.projectCreate -ccs.name -ccs.device [-options]

Working with macOS

On macOS, the command is slightly different. Use "ccstudio" instead of "eclipsec", followed by the rest of the command.

./ccstudio -noSplash -data <workspace_path> -application com.ti.ccstudio.apps.projectCreate -ccs.name -ccs.device [-options]

Working with CCSv4

For CCSv4, the usage for the commands are different. Use .\jre\bin\java -jar startup.jar instead of eclipsec -noSplash, followed by the rest of the command.

.\jre\bin\java -jar startup.jar -data <workspace_path> -application com.ti.ccstudio.apps.projectCreate -ccs.name -ccs.device [-options]

Note that the directory for .\jre\bin\java is located in <CCSv4 INSTALL DIRECTORY>\ccsv4\eclipse.

Working with CCS Theia

Please see section 6.3 of the CCS Theia User's Guide.

FAQs

Is there a command for deleting projects?

Currently there is no specific command for this. However, if you import a project without copying its contents physically into the workspace (i.e. if you don't set -ccs.copyIntoWorkspace to true, then default behaviour is not to copy project into workspace), then you should be able to just delete the workspace directory using standard console commands (such as 'del' in the command prompt) before running next sequence. You can double check whether your project physically resides in the workspace by going to your workspace directory and see if the project directory is listed there or if it just contains a .metadata folder.

What is the command for importing multiple projects at once?

You can specify more than one project on the command line such as:
eclipsec -nosplash -data <workspace> -application com.ti.ccstudio.apps.projectImport -ccs.location "C:/proj1" -ccs.location "C:/proj2"

Is there a command line option to specify a path for newly installed version of compiler tools so CCS can detect it?

In CCSv5, there isn't a command line option for this. However if the newly installed version of compiler tools is installed inside the CCS directory (<ccs_install_dir>\ccsv[x]\tools\compiler) it will automatically get discovered and can be used. If it is installed in a different location, you can first manually add the path via the CCS GUI, and then build via command line.

In CCSv6 and higher, there is a command with which a new directory (or directories) can be added to the compiler tool discovery path. The command is:

eclipsec -nosplash -data <workspace> -application com.ti.common.core.initialize -ccs.toolDiscoveryPath "<path1>;<path2>"

eclipsec -nosplash -data <workspace> -application com.ti.common.core.initialize -ccs.productDiscoveryPath "<path1>;<path2>"

Is there a command line option to specify a path for a new RTSC software product so CCS can detect it?

eclipsec -nosplash -data <workspace> -application com.ti.common.core.initialize -rtsc.productDiscoveryPath "<path1>;<path2>"

Are relative paths supported when using the Project Import command?

Commands with relative paths such as below are not supported. We hope to address this in a future release.

eclipsec -nosplash -data c:\workspace -application com.ti.ccstudio.apps.projectImport -ccs.location ..\dsp\proj\acm

Can the -ccs.linkFile and -ccs.copyFile options use paths relative to a linked resource path variable such as PROJECT_LOC ?

Yes. You can use a linked resource path variable like PROJECT_LOC with the -ccs.linkFile and -ccs.copyFile options. The path can be absolute or relative:

-ccs.linkFile "PROJECT_LOC\path\to\my\source.c
-ccs.linkFile "PROJECT_LOC\..\..\path\to\my\source.c

Is there an option to build all available build configurations for a project without specifying the configuration name? Currently it builds the default(active) configuration by default, or a specific build configuration can be specified.

No. As of CCSv8, There is currently no option available to tell it to build all build configurations for a project.

Is there a way to modify the project options?

No. As of CCSv8, there is no option available that allows you to change project options.

When creating a project using projectspec file, is it possible to override the version of RTSC products specified in the projectspec using a command line option?

This can be done in CCSv8 and higher using option -ccs.products "[<id>[:<version>];]+.
For example: -ccs.products "com.ti.SIMPLELINK_MSP432_SDK:1.60.00.12"

Full API Guide

The lists below are applicable for CCSv11.0. For any other version, please check the options applicable to that version by running the command with the -ccs.help option.

Click on the boxes below to expand/collapse the list.

List of available applications

The list of applications below contains both CCS (supported) and Eclipse open source (unsupported) ids. Eclipse runtime options and applications can be found around the web.

com.ti.ccstudio.apps.projectCreate
com.ti.ccstudio.apps.projectCreate_stdMake
com.ti.ccstudio.apps.projectBuild
com.ti.ccstudio.apps.projectImport
com.ti.ccstudio.apps.legacyProjectImport
com.ti.ccstudio.apps.inspect
com.ti.ccstudio.apps.createTargetConfiguration
com.ti.ccstudio.apps.runScript
com.ti.ccstudio.apps.templatesToProjectSpecs
org.eclipse.ant.core.antRunner
org.eclipse.cdt.codan.core.application
org.eclipse.cdt.core.GeneratePDOM
org.eclipse.cdt.managedbuilder.core.headlessbuild
org.eclipse.e4.ui.workbench.swt.E4Application
org.eclipse.e4.ui.workbench.swt.GenTopic
org.eclipse.equinox.app.error
org.eclipse.equinox.p2.director
org.eclipse.equinox.p2.garbagecollector.application
org.eclipse.equinox.p2.publisher.InstallPublisher
org.eclipse.equinox.p2.publisher.EclipseGenerator
org.eclipse.equinox.p2.publisher.ProductPublisher
org.eclipse.equinox.p2.publisher.FeaturesAndBundlesPublisher
org.eclipse.equinox.p2.reconciler.application
org.eclipse.equinox.p2.repository.repo2runnable
org.eclipse.equinox.p2.repository.metadataverifier
org.eclipse.equinox.p2.artifact.repository.mirrorApplication
org.eclipse.equinox.p2.metadata.repository.mirrorApplication
org.eclipse.equinox.p2.updatesite.UpdateSitePublisher
org.eclipse.equinox.p2.publisher.UpdateSitePublisher
org.eclipse.equinox.p2.publisher.CategoryPublisher
org.eclipse.help.base.infocenterApplication
org.eclipse.help.base.helpApplication
org.eclipse.help.base.indexTool
org.eclipse.ui.ide.workbench
com.ti.ccstudio.p2app
com.ti.ccscloud.server.start
com.ti.ccstudio.app.center.p2.resolveIU
com.ti.ccstudio.apps.initialize
org.eclipse.rtsc.xdctools.buildDefinitions.buildProjectSpec
com.ti.ccstudio.ui.workbench
com.ti.common.core.initialize
com.ti.dvt.rcp.application
org.eclipse.cdt.debug.application.app

com.ti.ccstudio.apps.projectCreate


Usage:
    eclipsec -noSplash -data "<workspace_dir>"
        -application com.ti.ccstudio.apps.createProject
        (-ccs.projectSpec <file> | -ccs.name <name> -ccs.device <id>) [<options>]

where options include:
    -ccs.projectSpec "<file>"
        The project-spec defining the project(s) to be created.
        See the <ccs-install-root>/ccs/eclipse/plugins/com.ti.ccstudio.project.templates/schema/projectSpec.xsd file for details.

    -ccs.name <name>
        The name of the new project.

    -ccs.location "<dir>"
        The filesystem location of the project, if it is
        to be created outside of workspace (optional).

    -ccs.outputType (executable | staticLibrary)
        The output-type (optional).
        Defaults to 'executable'.

    -ccs.device <id>
        The device-variant ID.
        A list of all available device-variant IDs will be
        printed if this argument is missing or not recognized.

    -ccs.endianness <name>
        The device endianness (optional).
        Defaults to device-specific setting, if defined.
        A list of all applicable endianness types will be
        printed if this argument is not recognized.

    -ccs.toolChain (TI | TICLANG | GNU)
        Compiler tool-chain (optional).
        Defaults to 'TI'.

    -ccs.toolVersion <version>
        Compiler version (optional).
        Defaults to highest applicable version.

    -ccs.outputFormat (COFF | ELF)
        The output-format (optional).
        Defaults to device-specific setting, if defined, or 'COFF'.

    -ccs.products "[<id>[:<version>];]+"
        List of products to enable (optional).

    -ccs.cmd "<file>"
        Linker command file to be physically copied into the project (optional).
        Defaults to device-specific setting, if defined.

    -ccs.rts "<file>"
        Runtime support library (optional).
        Defaults to device-specific setting, if defined.

    -ccs.configurations <name1>[ <name2>]*
        Space-separated list of build-configurations to create (optional).
        Defaults to 'Debug Release'.

    -ccs.defaultConfiguration <name>
        Name of one build-configuration which would be made active each time this project is imported into workspace.

    -ccs.references <name1>[ <name2>]*
        Space-separated list of project-references to add to created project (optional).

    -ccs.artifactName <name>
        Name of the build-artifact (optional).
        Defaults to the name of the project.

    -ccs.artifactExtension <ext>
        Extension of the build-artifact (optional).
        Defaults to 'out' or 'lib', depending on '-ccs.outputType'.

    -ccs.listBuildOptions
        Prints a list of all applicable build-options (optional).
        Does not actually create the project.

    -ccs.setCompilerOptions "<options>" [@prepend] [@files ["<path>" ]+] [@folders ["<path>" ]+] [@configurations [<name> ]+]
        Space-separated list of build-options to set on the created project's compiler tool (optional)
        (use backslash '\' to escape all double-quotes in <options>).
        Optionally, force the value for any list-type options to be prepended to current value.
        Optionally, specify lists of files/folders (project-relative paths) to set these options on.
        Optionally, specify a list of build-configurations in which these options are to be set.

    -ccs.setLinkerOptions "<options>" [@prepend] [@configurations [<name> ]+]
        Similar to -ccs.setCompilerOptions

    -ccs.setHexOptions "<options>" [@prepend] [@configurations [<name> ]+]
        Similar to -ccs.setCompilerOptions. Hex tool needs to be separately enabled using -ccs.enableHexTool.

    -ccs.setSysConfigOptions "<options>" [@prepend] [@configurations [<name> ]+]
        Similar to -ccs.setCompilerOptions. SysConfig tool needs to be separately enabled using -ccs.enableSysConfigTool.

    -ccs.enableHexTool
        Enable the Hex tool with its default build-options (optional).
        Defaults to 'false'.

    -ccs.enableSysConfigTool
        Enable the SysConfig tool with its default build-options (optional).
        Defaults to 'false'.

    -ccs.setPreBuildStep "<command>" [@configurations [<name> ]+]
        Command to be used as a pre-build step (optional)
        (use backslash '\' to escape all double-quotes in <command>).
        Optionally, specify a list of build-configurations in which this build-step is to be set.

    -ccs.setPostBuildStep "<command>" [@configurations [<name> ]+]
        Command to be used as a post-build step (optional)
        (use backslash '\' to escape all double-quotes in <command>).
        Optionally, specify a list of build-configurations in which this build-step is to be set.

    -ccs.copyFile "<file>" [@dir "<dir>"] [@configurations [<name> ]+]
        Copies the given file/directory into the project upon creation (optional).
        Optionally, specify a project-relative directory as the file's destination.
        Optionally, specify a list of build-configurations in which this file is to be used.

    -ccs.linkFile "<file>" [@dir "<dir>" [@virtual]] [@configurations [<name> ]+]
        Links the given file/directory into the project upon creation (optional).
        Optionally, specify a project-relative directory as the file's destination.
        Optionally, specify whether the destination directory should be created as virtual.
        Optionally, specify a list of build-configurations in which this file is to be used.

    -ccs.definePathVariable <name> <value> [@scope (global|project)]
        Defines the given path-variable for resolving portable linked file paths (optional)
        (also defines a global build-macro with the same name and value).
        Optionally, specify the scope (defaults to 'global').

    -ccs.defineBuildVariable <name> <value> [@type (string|dir|file)] [@scope (global|project|configuration)] [@configurations [<name> ]+]
        Defines the given build-variable (optional).
        Optionally, specify the type (defaults to 'string').
        Optionally, specify the scope (defaults to 'global').
        Optionally, specify a list of build-configurations in which this build-variable is to be defined
        (applies only when scope is 'configuration').

    -ccs.autoGenerateMakefiles (true|false)
        Turns automatic makefile-generation on/off (optional).
        Defaults to 'true'.

    -ccs.buildLocation "<path>"
        Absolute or project-relative path to folder to be used as the build-directory (optional).
        Applies only when the '-ccs.autoGenerateMakefiles' flag is set to 'false'.
        Defaults to project root-directory.

    -ccs.buildCommand "<path>"
        Absolute path to an alternative build utility (optional).
        Defaults to the gmake utility that is shipped with CCS.

    -ccs.buildCommandFlags "<flags>"
        List of flags to override the default build-command flags (optional).

    -ccs.buildTarget <name>
        Name of the target to run during an incremental build (optional).
        Defaults to 'all'.

    -ccs.cleanTarget <name>
        Name of the target to run during a clean build (optional).
        Defaults to 'clean'.

    -ccs.template <id>
        ID of the project-template to use when generating the new project (optional).
        A list of all applicable template IDs will be
        printed if this argument is not recognized.

    -ccs.ignoreDefaultDeviceSettings
        Iff 'true' ignores any default settings specified by the selected device.

    -ccs.ignoreDefaultCCSSettings
        Iff 'true' ignores any non-essential default settings made by CCS.

    -ccs.overwrite (full | keep)
        Forces overwrite of existing file-system resources (optional).
        A 'full' overwrite would delete and recreate the entire existing project folder.
        A 'keep' overwrite would keep all existing filesystem project contents
        (applies only when workspace project does not exist).

    -ccs.autoBuild
        Performs an incremental build on the imported/created project (optional).

    -ccs.kind <id>
        The project kind ID (optional).
        [Deprecated] - use -ccs.outputType

    -ccs.listBuildOptionIDs
        Prints a list of all applicable build-option IDs (optional).
        Does not actually create the project.
        [Deprecated] - use -ccs.listBuildOptions

    -ccs.setBuildOption <id> "<value>" [@prepend] [@configurations <name1>[ <name2>]*]
        Sets the given build-option on the created project (optional).
        (use the wildcard '*' to match multiple characters in <id> and enum <value>'s).
        Optionally, force the value for any list-type options to be prepended to current value.
        Optionally, specify a list of build-configurations in which this option is to be set.
        [Deprecated] - use -ccs.setCompilerOptions/-ccs.setLinkerOptions

    -ccs.args <file>
        File containing any extra arguments (optional).

    -ccs.help
        Print this help message.

DSP/BIOSv5.x support:
    -bios.version <version>
        DSP/BIOSv5.x tools version.

RTSC support:
    -rtsc.enableRtsc
        Enable RTSC support.

    -rtsc.xdcVersion <version>
        XDCtools version (optional).
        Defaults to highest available version, when '-rtsc.enableRtsc' is specified.

    -rtsc.target <id>
        RTSC target (optional).
        Will be auto-set by default.

    -rtsc.platform <id>
        RTSC platform (optional).
        Will be left blank by default.

    -rtsc.buildProfile <profile>
        RTSC build-profile (optional).
        Defaults to 'whole_program'.

    -rtsc.products "[<id>[:<version>];]+"
        List of RTSC products to enable (optional). [Deprecated] - use the '-ccs.products' flag instead.

    -rtsc.setConfiguroOptions "<options>"
        Space-separated list of options to set on the created project's Configuro tool (optional)
        (use backslash '\' to escape all double-quotes in <options>).

    -rtsc.configurationOnly
        Generate a reusable RTSC Configuration project (optional).

com.ti.ccstudio.apps.projectCreate_stdMake

NOTE! The 'projectCreate_stdMake' command is deprecated. To create a manual-makefile project,
    please use the 'projectCreate' command with its '-ccs.autoGenerateMakefiles' flag set to 'false'.


Usage:
    eclipsec -noSplash -data "<workspace_dir>"
        -application com.ti.ccstudio.apps.createProject_stdMake
        -ccs.name <name> [<options>]

where options include:
    -ccs.name <name>
        The name of the new project.

    -ccs.location <dir>
        The filesystem location of the project, if it is
        to be created outside of workspace (optional).

    -ccs.buildLocation <path>
        Absolute or project-relative path to folder to be used as the build-directory (optional).
        Defaults to project root-directory.

    -ccs.buildCommand <path>
        Absolute path to an alternative build utility (optional).
        Defaults to the gmake utility that is shipped with CCS.

    -ccs.buildCommandFlags "<flags>"
        List of flags to override the default build-command flags (optional).

    -ccs.makefileName <name>
        Name of the makefile, if other than the gmake default 'makefile' (optional).
        Only used when the build-flags are not overridden.

    -ccs.buildTarget <name>
        Name of the target to run during an incremental build (optional).
        Defaults to 'all'.

    -ccs.cleanTarget <name>
        Name of the target to run during a clean build (optional).
        Defaults to 'clean'.

    -ccs.references <name1>[ <name2>]*
        Space-separated list of project-references to add to created project (optional).

    -ccs.copyFile <file> [@dir <dir>]
        Copies the given file/directory into the project upon creation (optional).
        Optionally, specify a project-relative directory as the file's destination.

    -ccs.linkFile <file> [@dir <dir>]
        Links the given file/directory into the project upon creation (optional).
        Optionally, specify a project-relative directory as the file's destination.

    -ccs.definePathVariable <name> <value> [@scope (global|project)]
        Defines the given path-variable for resolving portable linked file paths (optional).
        Optionally, specify the scope (defaults to 'global').

    -ccs.overwrite (full | keep)
        Forces overwrite of existing file-system resources (optional).
        A 'full' overwrite would delete and recreate the entire existing project folder.
        A 'keep' overwrite would keep all existing filesystem project contents
        (applies only when workspace project does not exist).

    -ccs.args <file>
        File containing any extra arguments (optional).

    -ccs.help
        Print this help message.

com.ti.ccstudio.apps.projectBuild

Usage:
    eclipsec -noSplash -data "<workspace_dir>"
        -application com.ti.ccstudio.apps.buildProject
        (-ccs.projects <name1>[ <name2>]* | -ccs.workspace) [<options>]

where options include:
    -ccs.projects <name1>[ <name2>]*
        Space-separated list of projects to build.

    -ccs.workspace
        Build entire workspace.

    -ccs.configuration <name>
        The build-configuration to build (optional).
        Defaults to active build-configuration.

    -ccs.buildType (incremental | full | clean)
        The type of build to perform (optional).
        Defaults to 'incremental'.

    -ccs.listErrors
        List all errors after build completes (optional).

    -ccs.listProblems
        List all errors and warnings after build completes (optional).

    -ccs.autoOpen
        Automatically open any closed projects (optional).

    -ccs.args <file>
        File containing any extra arguments (optional).

    -ccs.help
        Print this help message.

com.ti.ccstudio.apps.projectImport

Usage:
    eclipsec -noSplash -data "<workspace_dir>"
        -application com.ti.ccstudio.apps.importProject
        -ccs.location <path> [<options>]

where options include:
    -ccs.location <path>
        Absolute or relative path to the location containing the project.
        Relative paths will be assumed to be relative to the working directory.

    -ccs.device <id>
        The device-variant ID. Applicable only when '-ccs.location' flag resolves to a .projectspec file.

    -ccs.definePathVariable <name> <value> [@scope (global|project)]
        Defines the given path-variable for resolving portable linked file paths (optional)
        (also defines a global build-macro with the same name and value).
        Optionally, specify the scope (defaults to 'global').

    -ccs.copyIntoWorkspace
        Copy project folder and contents into the workspace directory (optional).
        Defaults to 'false'.

    -ccs.overwrite
        Forces overwrite of existing file-system resources (optional).

    -ccs.renameTo
        Rename the imported project to the specified name.

    -ccs.autoBuild
        Performs an incremental build on the imported/created project (optional).

    -ccs.autoImportReferencedProjects
        If 'true', an attempt is made to automatically import any referenced projects found in the same parent directory as the main project.

    -ccs.autoRenameReferencedProjects
        If 'true', and iff the '-ccs.renameTo' flag is present, any imported referenced projects will also be renamed automatically.

    -ccs.referencedProjectSearchDirectory
        Directory to search for referenced projects. Applicable only when '-ccs.autoImportReferencedProjects' flag is present.

    -ccs.captureCopiedFileOrigins
        Capture the original locations of all resources copied into the project during the import. These will be captured into a text file named 'copiedFileOrigins.txt'.

    -ccs.captureProjectspecApplicability
        Capture the list of devices that the imported projectspec is applicable to. These will be captured into a text file named 'projectSpecApplicability.txt'.

    -ccs.args <file>
        File containing any extra arguments (optional).

    -ccs.help
        Print this help message.

com.ti.ccstudio.apps.legacyProjectImport

Usage:
    eclipsec -noSplash -data "<workspace_dir>"
        -application com.ti.ccstudio.apps.importProject_legacy
        -ccs.pjtFile <path> [<options>]

where options include:
    -ccs.pjtFile <path>
        Absolute path to the PJT file of the legacy project.

    -ccs.commonRoot <pathVariableName> <path>
        Define a common root for resolving files, external to
        project, in a consistent and portable way (optional).

    -ccs.definePathVariable <name> <value> [@scope (global|project)]
        Defines the given path-variable for resolving portable linked file paths (optional)
        (also defines a global build-macro with the same name and value).
        Optionally, specify the scope (defaults to 'global').

    -ccs.copyIntoWorkspace
        Copy project folder and contents into the workspace directory (optional).
        Defaults to 'false'.

    -ccs.createSubdirectory
        If '-ccs.copyIntoWorkspace' is not specified, this flag would
        create a subfolder for each Eclipse project at the original location
        of the PJT file (optional).
        Defaults to false.

    -ccs.overwrite
        Forces overwrite of existing file-system resources (optional).

    -ccs.args <file>
        File containing any extra arguments (optional).

    -ccs.help
        Print this help message.

com.ti.ccstudio.apps.inspect

Usage:
    eclipsec -noSplash -data "<workspace_dir>"
        -application com.ti.ccstudio.apps.inspect
        (-ccs.product | -ccs.preferences |
         -ccs.devices
             [-ccs.devices:groupBy:family
              -ccs.devices:filterBy:family "<arg>"
              -ccs.devices:filterBy:variant "<arg>"
              -ccs.devices:filterBy:id "<arg>"
              -ccs.devices:showBasicDetails] |
         -ccs.deviceDetails "<device-id>" |
         -ccs.projects ["<name>" ]+
             [-ccs.projects:listErrors] |
             [-ccs.projects:listProblems] |
             [-ccs.projects:listVariables] |
             [-ccs.projects:showBuildOptions] |
         -ccs.projects:externalResources ["<name>" ]* |
         -ccs.projects:externalResources:noDirs ["<name>" ]* |
         -ccs.projects:externalResources:noSourceDependencies ["<name>" ]* |
         -ccs.projects:projectSpecApplicability ["<name>" ]*)
        [-ccs.format:json]

where options include:
    -ccs.product
        Inspect the CCS product.

    -ccs.preferences
        Inspect the global preferences.

    -ccs.devices
        Inspect the listing of supported devices.

    -ccs.devices:groupBy:family
        Group the device list by device-family [optional].

    -ccs.devices:filterBy:family "<arg>"
        Filter the device list by device-family [optional].
        Valid arguments: [ARM, C2000, C5400, C5500, C6000, C7000, MSP430, MSP432, EVE, ARP32, IVAHD, PRU, CLA, UNKNOWN].

    -ccs.devices:filterBy:variant "<arg>"
        Filter the device list by device-variant [optional].
        Valid arguments: [ARM7, ARM9, ARM11, CortexA5, CortexA7, CortexA8, CortexA9, CortexA12, CortexA15, CortexA17, CortexA32, CortexA35, CortexA53, CortexA57, CortexA72, CortexA73, CortexM0, CortexM3, CortexM4, CortexM33, CortexR4, CortexR5, C27XX, C28XX, C54XX, C55XX, C55X+, C62XX, C64XX, C64X+, C66XX, C67XX, C67X+, C674X, C71XX, MSP430, MSP432, EVE, ARP32, IVAHD, PRU, CLA, Custom, UNKNOWN].

    -ccs.devices:filterBy:id "<arg>"
        Filter the device list by device-ID [optional]. Expects Java reg-exp as argument.

    -ccs.format:json
        Output results in JSON format [optional]. Defaults to XML.

    -ccs.devices:showBasicDetails
        Output some basic details for each device [optional].

    -ccs.deviceDetails "<device-id>"
        Inspect device details.

    -ccs.projects ["<name>" ]+
        Space-separated list of projects to inspect.

    -ccs.projects:listErrors
        List all errors for each project.

    -ccs.projects:listProblems
        List all errors and warnings for each project.

    -ccs.projects:listVariables
        List all build/path variables for each project.

    -ccs.projects:showBuildOptions
        Show a hierarchical view of the set build-flags [optional].

    -ccs.projects:externalResources ["<name>" ]*
        Same as '-ccs.projects', but only show each project's external resource dependencies.

    -ccs.projects:externalResources:noDirs ["<name>" ]*
        Same as '-ccs.projects:externalResources', but omit any external directory dependencies (lists only files).

    -ccs.projects:externalResources:noSourceDependencies ["<name>" ]*
        Same as '-ccs.projects:externalResources', but omit any source-level dependencies (avoids compiling all source files).

    -ccs.projects:projectSpecApplicability ["<name>" ]*
        Same as '-ccs.projects', but only show each project's original projectspec applicability.

    -ccs.args <file>
        File containing any extra arguments (optional).

    -ccs.help
        Print this help message.

com.ti.ccstudio.apps.createTargetConfiguration

Usage:
    eclipsec -noSplash -data "<workspace_dir>"
        -application com.ti.ccstudio.apps.createTargetConfiguration
        -ccs.device [-ccs.connection -ccs.saveAs]

where options include:
    -ccs.device "<arg>"
        Device. Expects the device XML-file name, or a Java reg-exp to match device's name, ID, or XML-file name.

    -ccs.connection "<arg>"
        Connection [optional]. Expects the connection XML-file name, or a Java reg-exp to match connection's name, or XML-file name.

    -ccs.saveAs "<file>"
        Destination file name or path [optional]. If omitted, picks default name and creates file in the working directory.

    -ccs.args <file>
        File containing any extra arguments (optional).

    -ccs.help
        Print this help message.

com.ti.ccstudio.apps.runScript

Usage:
    eclipsec -noSplash -data "<workspace_dir>"
        -application com.ti.ccstudio.apps.runScript
        [<options>]

where options include:
    -ccs.script <file>
        Absolute or relative path to the script file (optional).
        Relative paths will be resolved based on the current working-directory.

    -ccs.rhinoArgs "<args>"
        Additional arguments to be passed to the Rhino interpreter (optional).
        (use backslash '\' to escape all double-quotes in <args>).

    -ccs.debug
        Launch the Rhino Debugger to step through the script (optional).
        Defaults to 'false'.

    -ccs.args <file>
        File containing any extra arguments (optional).

    -ccs.help
        Print this help message.

Full ISA device support descriptions

ISA family: Arm
    com.ti.ccstudio.deviceModel.TMS470.CustomTMS470Device [Custom Arm Device]
    com.ti.ccstudio.deviceModel.TMS470.GenericARM7Device [Generic Arm7 Device]
    com.ti.ccstudio.deviceModel.TMS470.GenericARM9Device [Generic Arm9 Device]
    com.ti.ccstudio.deviceModel.TMS470.GenericARM11Device [Generic Arm11 Device]
    com.ti.ccstudio.deviceModel.TMS470.GenericCortexA8Device [Generic CortexA8 Device]
    com.ti.ccstudio.deviceModel.TMS470.GenericCortexA9Device [Generic CortexA9 Device]
    com.ti.ccstudio.deviceModel.TMS470.GenericCortexA15Device [Generic CortexA15 Device]
    com.ti.ccstudio.deviceModel.TMS470.GenericCortexM3Device [Generic CortexM3 Device]
    com.ti.ccstudio.deviceModel.TMS470.GenericCortexM4Device [Generic CortexM4 Device]
    com.ti.ccstudio.deviceModel.TMS470.GenericCortexR4Device [Generic CortexR4 Device]
    com.ti.ccstudio.deviceModel.TMS470.GenericCortexR5Device [Generic CortexR5 Device]
    Cortex A.66AK2E05 [66AK2E05]
    Cortex A.66AK2G01 [66AK2G01]
    Cortex A.66AK2G02 [66AK2G02]
    Cortex A.66AK2G12 [66AK2G12]
    Cortex A.66AK2H06 [66AK2H06]
    Cortex A.66AK2H12 [66AK2H12]
    Cortex A.66AK2H14 [66AK2H14]
    Cortex A.66AK2L06 [66AK2L06]
    ARM9.AM1705 [AM1705]
    ARM9.AM1707 [AM1707]
    ARM9.AM1802 [AM1802]
    ARM9.AM1806 [AM1806]
    ARM9.AM1808 [AM1808]
    ARM9.AM1810 [AM1810]
    Cortex M.AM2434_ALV [AM2434_ALV]
    Cortex R.AM2434_ALV [AM2434_ALV]
    Cortex M.AM2434_ALX [AM2434_ALX]
    Cortex R.AM2434_ALX [AM2434_ALX]
    Cortex M.AM2434_ALV.AM243x_GP_EVM [AM243x_GP_EVM]
    Cortex R.AM2434_ALV.AM243x_GP_EVM [AM243x_GP_EVM]
    Cortex M.AM2434_ALX.AM243x_LAUNCHPAD [AM243x_LAUNCHPAD]
    Cortex R.AM2434_ALX.AM243x_LAUNCHPAD [AM243x_LAUNCHPAD]
    Cortex M.AM2632 [AM2632]
    Cortex R.AM2632 [AM2632]
    Cortex M.AM273x [AM273x]
    Cortex R.AM273x [AM273x]
    Cortex A.AM3351 [AM3351]
    Cortex M.AM3351 [AM3351]
    Cortex A.AM3352 [AM3352]
    Cortex M.AM3352 [AM3352]
    Cortex A.AM3354 [AM3354]
    Cortex M.AM3354 [AM3354]
    Cortex A.AM3356 [AM3356]
    Cortex M.AM3356 [AM3356]
    Cortex A.AM3357 [AM3357]
    Cortex M.AM3357 [AM3357]
    Cortex A.AM3358 [AM3358]
    Cortex M.AM3358 [AM3358]
    Cortex A.AM3359 [AM3359]
    Cortex M.AM3359 [AM3359]
    Cortex A.AM3505 [AM3505]
    Cortex A.AM3517 [AM3517]
    Cortex A.AM3703 [AM3703]
    Cortex A.AM3715 [AM3715]
    Cortex A.AM3871 [AM3871]
    Cortex A.AM3872 [AM3872]
    Cortex A.AM3874 [AM3874]
    Cortex A.AM3892 [AM3892]
    Cortex A.AM3894 [AM3894]
    Cortex A.AM4372 [AM4372]
    Cortex M.AM4372 [AM4372]
    Cortex A.AM4376 [AM4376]
    Cortex M.AM4376 [AM4376]
    Cortex A.AM4377 [AM4377]
    Cortex M.AM4377 [AM4377]
    Cortex A.AM4378 [AM4378]
    Cortex M.AM4378 [AM4378]
    Cortex A.AM4379 [AM4379]
    Cortex M.AM4379 [AM4379]
    Cortex A.AM4382 [AM4382]
    Cortex M.AM4382 [AM4382]
    Cortex A.AM4384 [AM4384]
    Cortex M.AM4384 [AM4384]
    Cortex A.AM4388 [AM4388]
    Cortex M.AM4388 [AM4388]
    Cortex A.AM5706 [AM5706]
    Cortex M.AM5706 [AM5706]
    ARM9.AM5708 [AM5708]
    Cortex A.AM5708 [AM5708]
    Cortex M.AM5708 [AM5708]
    Cortex A.AM5716 [AM5716]
    Cortex M.AM5716 [AM5716]
    ARM9.AM5718 [AM5718]
    Cortex A.AM5718 [AM5718]
    Cortex M.AM5718 [AM5718]
    Cortex A.AM5726 [AM5726]
    Cortex M.AM5726 [AM5726]
    Cortex A.AM5726_RevA [AM5726_RevA]
    Cortex M.AM5726_RevA [AM5726_RevA]
    ARM9.AM5728 [AM5728]
    Cortex A.AM5728 [AM5728]
    Cortex M.AM5728 [AM5728]
    ARM9.AM5728_RevA [AM5728_RevA]
    Cortex A.AM5728_RevA [AM5728_RevA]
    Cortex M.AM5728_RevA [AM5728_RevA]
    ARM9.AM5729 [AM5729]
    Cortex A.AM5729 [AM5729]
    Cortex M.AM5729 [AM5729]
    Cortex A.AM5746 [AM5746]
    Cortex M.AM5746 [AM5746]
    ARM9.AM5748 [AM5748]
    Cortex A.AM5748 [AM5748]
    Cortex M.AM5748 [AM5748]
    ARM9.AM5749 [AM5749]
    Cortex A.AM5749 [AM5749]
    Cortex M.AM5749 [AM5749]
    Cortex A.AM5766 [AM5766]
    Cortex M.AM5766 [AM5766]
    ARM9.AM5768 [AM5768]
    Cortex A.AM5768 [AM5768]
    Cortex M.AM5768 [AM5768]
    Cortex A.AM64x [AM64x]
    Cortex M.AM64x [AM64x]
    Cortex R.AM64x [AM64x]
    Cortex A.AM64x.AM64x_GP_EVM [AM64x_GP_EVM]
    Cortex M.AM64x.AM64x_GP_EVM [AM64x_GP_EVM]
    Cortex R.AM64x.AM64x_GP_EVM [AM64x_GP_EVM]
    Cortex A.AM64x.AM64x_SK_EVM [AM64x_SK_EVM]
    Cortex M.AM64x.AM64x_SK_EVM [AM64x_SK_EVM]
    Cortex R.AM64x.AM64x_SK_EVM [AM64x_SK_EVM]
    Cortex A.AM6526 [AM6526]
    Cortex M.AM6526 [AM6526]
    Cortex R.AM6526 [AM6526]
    Cortex A.AM6526_RevA [AM6526_RevA]
    Cortex M.AM6526_RevA [AM6526_RevA]
    Cortex R.AM6526_RevA [AM6526_RevA]
    Cortex A.AM6527 [AM6527]
    Cortex M.AM6527 [AM6527]
    Cortex R.AM6527 [AM6527]
    Cortex A.AM6527_RevA [AM6527_RevA]
    Cortex M.AM6527_RevA [AM6527_RevA]
    Cortex R.AM6527_RevA [AM6527_RevA]
    Cortex A.AM6528 [AM6528]
    Cortex M.AM6528 [AM6528]
    Cortex R.AM6528 [AM6528]
    Cortex A.AM6528_RevA [AM6528_RevA]
    Cortex M.AM6528_RevA [AM6528_RevA]
    Cortex R.AM6528_RevA [AM6528_RevA]
    Cortex A.AM6546 [AM6546]
    Cortex M.AM6546 [AM6546]
    Cortex R.AM6546 [AM6546]
    Cortex A.AM6546_RevA [AM6546_RevA]
    Cortex M.AM6546_RevA [AM6546_RevA]
    Cortex R.AM6546_RevA [AM6546_RevA]
    Cortex A.AM6548 [AM6548]
    Cortex M.AM6548 [AM6548]
    Cortex R.AM6548 [AM6548]
    Cortex A.AM6548_RevA [AM6548_RevA]
    Cortex M.AM6548_RevA [AM6548_RevA]
    Cortex R.AM6548_RevA [AM6548_RevA]
    Cortex A.AMIC110 [AMIC110]
    Cortex M.AMIC110 [AMIC110]
    Cortex A.AMIC120 [AMIC120]
    Cortex M.AMIC120 [AMIC120]
    Cortex R.AWR1443 [AWR1443]
    Cortex R.AWR1642 [AWR1642]
    Cortex R.AWR1843 [AWR1843]
    Cortex R.AWR2943 [AWR2943]
    Cortex R.AWR2944 [AWR2944]
    Cortex R.AWR6443 [AWR6443]
    Cortex R.AWR6843 [AWR6843]
    Cortex R.AWR6843AOP [AWR6843AOP]
    Cortex A.OMAP3530.BeagleBoard [BeagleBoard]
    Cortex A.DM3730.BeagleBoard_xM [BeagleBoard_xM]
    Cortex A.AM3359.BeagleBone [BeagleBone]
    Cortex M.AM3359.BeagleBone [BeagleBone]
    Cortex A.AM3359.BeagleBone_Black [BeagleBone_Black]
    Cortex M.AM3359.BeagleBone_Black [BeagleBone_Black]
    ARM9.OMAP4430.Blaze_4430 [Blaze_4430]
    Cortex A.OMAP4430.Blaze_4430 [Blaze_4430]
    Cortex M.OMAP4430.Blaze_4430 [Blaze_4430]
    ARM9.OMAP4460.Blaze_4460 [Blaze_4460]
    Cortex A.OMAP4460.Blaze_4460 [Blaze_4460]
    Cortex M.OMAP4460.Blaze_4460 [Blaze_4460]
    Cortex M.CC1310F128 [CC1310F128]
    Cortex M.CC1310F32 [CC1310F32]
    Cortex M.CC1310F64 [CC1310F64]
    Cortex M.CC1311P3 [CC1311P3]
    Cortex M.CC1311R3 [CC1311R3]
    Cortex M.CC1312R1F3 [CC1312R1F3]
    Cortex M.CC1312R7 [CC1312R7]
    Cortex M.CC1314R10 [CC1314R10]
    Cortex M.CC1350F128 [CC1350F128]
    Cortex M.CC1352P1F3 [CC1352P1F3]
    Cortex M.CC1352P7 [CC1352P7]
    Cortex M.CC1352R1F3 [CC1352R1F3]
    Cortex M.CC1354P10 [CC1354P10]
    Cortex M.CC1354R10 [CC1354R10]
    Cortex M.CC2538NF11 [CC2538NF11]
    Cortex M.CC2538NF23 [CC2538NF23]
    Cortex M.CC2538NF53 [CC2538NF53]
    Cortex M.CC2538SF23 [CC2538SF23]
    Cortex M.CC2538SF53 [CC2538SF53]
    Cortex M.CC2620F128 [CC2620F128]
    Cortex M.CC2630F128 [CC2630F128]
    Cortex M.CC2640F128 [CC2640F128]
    Cortex M.CC2640R2F [CC2640R2F]
    Cortex M.CC2640R2L [CC2640R2L]
    Cortex M.CC2642R1F [CC2642R1F]
    Cortex M.CC2650F128 [CC2650F128]
    Cortex M.CC2651P3 [CC2651P3]
    Cortex M.CC2651R3 [CC2651R3]
    Cortex M.CC2652P1F [CC2652P1F]
    Cortex M.CC2652P7 [CC2652P7]
    Cortex M.CC2652R1F [CC2652R1F]
    Cortex M.CC2652R7 [CC2652R7]
    Cortex M.CC2652RB1F [CC2652RB1F]
    Cortex M.CC2653P10 [CC2653P10]
    Cortex M.CC2672P3 [CC2672P3]
    Cortex M.CC2672R3 [CC2672R3]
    Cortex M.CC2674P10 [CC2674P10]
    Cortex M.CC2674R10 [CC2674R10]
    Cortex M.CC3200 [CC3200]
    Cortex M.CC3200-SWD [CC3200-SWD]
    Cortex M.CC3220 [CC3220]
    Cortex M.CC3220_SWD [CC3220_SWD]
    Cortex M.CC3220S [CC3220S]
    Cortex M.CC3220S_SWD [CC3220S_SWD]
    Cortex M.CC3220SF [CC3220SF]
    Cortex M.CC3220SF_SWD [CC3220SF_SWD]
    Cortex M.CC3235S [CC3235S]
    Cortex M.CC3235S_SWD [CC3235S_SWD]
    Cortex M.CC3235SF [CC3235SF]
    Cortex M.CC3235SF_SWD [CC3235SF_SWD]
    Cortex M.CM2538SF23 [CM2538SF23]
    Cortex M.CM2538SF53 [CM2538SF53]
    ARM9.DA830/DA828 [DA830/DA828]
    Cortex A.DM3725 [DM3725]
    Cortex A.DM3730 [DM3730]
    Cortex M.DM50x [DM50x]
    Cortex A.TMS320DM8127 [DM8127]
    Cortex M.TMS320DM8127 [DM8127]
    Cortex A.TMS320DM8127.DM8127CSK [DM8127CSK]
    Cortex M.TMS320DM8127.DM8127CSK [DM8127CSK]
    Cortex A.TMS320DM8146 [DM8146]
    Cortex A.TMS320DM8147 [DM8147]
    Cortex A.TMS320DM8148 [DM8148]
    ARM9.DM814x [DM814x]
    Cortex A.DM814x [DM814x]
    Cortex M.DM814x [DM814x]
    Cortex A.TMS320DM8165 [DM8165]
    Cortex A.TMS320DM8166 [DM8166]
    Cortex A.TMS320DM8167 [DM8167]
    Cortex A.TMS320DM8168 [DM8168]
    ARM9.DM816x [DM816x]
    Cortex A.DM816x [DM816x]
    Cortex M.DM816x [DM816x]
    ARM9.DRA71x [DRA71x]
    Cortex A.DRA71x [DRA71x]
    Cortex M.DRA71x [DRA71x]
    ARM9.DRA72x [DRA72x]
    Cortex A.DRA72x [DRA72x]
    Cortex M.DRA72x [DRA72x]
    ARM9.DRA74xP_75xP_76xP_77xP [DRA74xP_75xP_76xP_77xP]
    Cortex A.DRA74xP_75xP_76xP_77xP [DRA74xP_75xP_76xP_77xP]
    Cortex M.DRA74xP_75xP_76xP_77xP [DRA74xP_75xP_76xP_77xP]
    ARM9.DRA75x_DRA74x [DRA75x_DRA74x]
    Cortex A.DRA75x_DRA74x [DRA75x_DRA74x]
    Cortex M.DRA75x_DRA74x [DRA75x_DRA74x]
    Cortex M.DRA78x [DRA78x]
    ARM9.DRA79x [DRA79x]
    Cortex A.DRA79x [DRA79x]
    Cortex M.DRA79x [DRA79x]
    Cortex A.DRA80xM [DRA80xM]
    Cortex M.DRA80xM [DRA80xM]
    Cortex R.DRA80xM [DRA80xM]
    ARM9.DA830/DA828.DSKDA830 [DSKDA830]
    Cortex A.AM4388.EPOSAM438X [EPOSAM438X]
    Cortex M.AM4388.EPOSAM438X [EPOSAM438X]
    Cortex A.J7200_DRA821.EVM_J7200 [EVM_J7200]
    Cortex M.J7200_DRA821.EVM_J7200 [EVM_J7200]
    Cortex R.J7200_DRA821.EVM_J7200 [EVM_J7200]
    Cortex A.J721E_DRA829_TDA4VM.EVM_J721E [EVM_J721E]
    Cortex M.J721E_DRA829_TDA4VM.EVM_J721E [EVM_J721E]
    Cortex R.J721E_DRA829_TDA4VM.EVM_J721E [EVM_J721E]
    ARM9.AM1707.EVMAM1707 [EVMAM1707]
    ARM9.AM1808.EVMAM1808 [EVMAM1808]
    Cortex M.AM273x.evmAM273x [evmAM273x]
    Cortex R.AM273x.evmAM273x [evmAM273x]
    Cortex A.AM3358.EVMAM3358 [EVMAM3358]
    Cortex M.AM3358.EVMAM3358 [EVMAM3358]
    Cortex A.AM3517.EVMAM3517 [EVMAM3517]
    Cortex A.AM3715.EVMAM3715 [EVMAM3715]
    Cortex A.AM4378.EVMAM437X [EVMAM437X]
    Cortex M.AM4378.EVMAM437X [EVMAM437X]
    ARM9.TMS320DM350.EVMDM350 [EVMDM350]
    ARM9.TMS320DM355.EVMDM355 [EVMDM355]
    ARM9.TMS320DM357.EVMDM357 [EVMDM357]
    ARM9.TMS320DM365.EVMDM365 [EVMDM365]
    ARM9.TMS320DM368.EVMDM368 [EVMDM368]
    Cortex A.DM3730.EVMDM3730 [EVMDM3730]
    ARM9.TMS320DM6446.EVMDM6446 [EVMDM6446]
    ARM9.TMS320DM6467.EVMDM6467 [EVMDM6467]
    ARM9.TMS320DM6467.EVMDM6467T [EVMDM6467T]
    Cortex A.TMS320DM8148.EVMDM8148 [EVMDM8148]
    Cortex A.TMS320DM8168.EVMDM8168 [EVMDM8168]
    ARM9.EVMDMRX45X [EVMDMRX45X]
    Cortex A.OMAP3530.EVMOMAP3530 [EVMOMAP3530]
    ARM9.OMAPL137.EVMOMAPL137 [EVMOMAPL137]
    ARM9.OMAPL138.EVMOMAPL138 [EVMOMAPL138]
    ARM9.OMAPL138.EXPKITOMAPL138 [EXPKITOMAPL138]
    Cortex M.F28M35E20B1 [F28M35E20B1]
    Cortex M.F28M35H22C1 [F28M35H22C1]
    Cortex M.F28M35H52C1 [F28M35H52C1]
    Cortex M.F28M35M20B1 [F28M35M20B1]
    Cortex M.F28M35M22C1 [F28M35M22C1]
    Cortex M.F28M35M52C1 [F28M35M52C1]
    Cortex M.F28M36H33B2 [F28M36H33B2]
    Cortex M.F28M36H33C2 [F28M36H33C2]
    Cortex M.F28M36H53B2 [F28M36H53B2]
    Cortex M.F28M36H53C2 [F28M36H53C2]
    Cortex M.F28M36P53C2 [F28M36P53C2]
    Cortex M.F28M36P63C2 [F28M36P63C2]
    ARM9.AM5728.GPEVM_AM572X [GPEVM_AM572X]
    Cortex A.AM5728.GPEVM_AM572X [GPEVM_AM572X]
    Cortex M.AM5728.GPEVM_AM572X [GPEVM_AM572X]
    ARM9.AM5728_RevA.GPEVM_AM572X_SiRevA [GPEVM_AM572X_SiRevA]
    Cortex A.AM5728_RevA.GPEVM_AM572X_SiRevA [GPEVM_AM572X_SiRevA]
    Cortex M.AM5728_RevA.GPEVM_AM572X_SiRevA [GPEVM_AM572X_SiRevA]
    Cortex A.AM6548.GPEVM_AM65x [GPEVM_AM65x]
    Cortex M.AM6548.GPEVM_AM65x [GPEVM_AM65x]
    Cortex R.AM6548.GPEVM_AM65x [GPEVM_AM65x]
    Cortex A.AM6548_RevA.GPEVM_AM65x_SiRevA [GPEVM_AM65x_SiRevA]
    Cortex M.AM6548_RevA.GPEVM_AM65x_SiRevA [GPEVM_AM65x_SiRevA]
    Cortex R.AM6548_RevA.GPEVM_AM65x_SiRevA [GPEVM_AM65x_SiRevA]
    Cortex A.AM3359.ICE_AM3359 [ICE_AM3359]
    Cortex M.AM3359.ICE_AM3359 [ICE_AM3359]
    Cortex A.AMIC110.ICE_AMIC110 [ICE_AMIC110]
    Cortex M.AMIC110.ICE_AMIC110 [ICE_AMIC110]
    Cortex A.AM4379.IDK_AM437X [IDK_AM437X]
    Cortex M.AM4379.IDK_AM437X [IDK_AM437X]
    ARM9.AM5718.IDK_AM571X [IDK_AM571X]
    Cortex A.AM5718.IDK_AM571X [IDK_AM571X]
    Cortex M.AM5718.IDK_AM571X [IDK_AM571X]
    ARM9.AM5728.IDK_AM572X [IDK_AM572X]
    Cortex A.AM5728.IDK_AM572X [IDK_AM572X]
    Cortex M.AM5728.IDK_AM572X [IDK_AM572X]
    ARM9.AM5748.IDK_AM574X [IDK_AM574X]
    Cortex A.AM5748.IDK_AM574X [IDK_AM574X]
    Cortex M.AM5748.IDK_AM574X [IDK_AM574X]
    Cortex A.AM6548.IDK_AM65x [IDK_AM65x]
    Cortex M.AM6548.IDK_AM65x [IDK_AM65x]
    Cortex R.AM6548.IDK_AM65x [IDK_AM65x]
    Cortex A.AM6548_RevA.IDK_AM65x_SiRevA [IDK_AM65x_SiRevA]
    Cortex M.AM6548_RevA.IDK_AM65x_SiRevA [IDK_AM65x_SiRevA]
    Cortex R.AM6548_RevA.IDK_AM65x_SiRevA [IDK_AM65x_SiRevA]
    Cortex R.IWR1443 [IWR1443]
    Cortex R.IWR1642 [IWR1642]
    Cortex R.IWR1843 [IWR1843]
    Cortex R.IWR1843AOP [IWR1843AOP]
    Cortex R.IWR6843 [IWR6843]
    Cortex R.IWR6843AOP [IWR6843AOP]
    Cortex A.J7200_DRA821 [J7200_DRA821]
    Cortex M.J7200_DRA821 [J7200_DRA821]
    Cortex R.J7200_DRA821 [J7200_DRA821]
    Cortex A.J721E_DRA829_TDA4VM [J721E_DRA829_TDA4VM]
    Cortex M.J721E_DRA829_TDA4VM [J721E_DRA829_TDA4VM]
    Cortex R.J721E_DRA829_TDA4VM [J721E_DRA829_TDA4VM]
    Cortex A.66AK2G02.K2GEVM [K2GEVM]
    Cortex A.66AK2G02.K2GICE [K2GICE]
    ARM9.OMAPL138.LCDKOMAPL138 [LCDKOMAPL138]
    ARM9.OMAP3430 [OMAP3430]
    Cortex A.OMAP3430 [OMAP3430]
    Cortex A.OMAP3503 [OMAP3503]
    Cortex A.OMAP3515 [OMAP3515]
    Cortex A.OMAP3525 [OMAP3525]
    Cortex A.OMAP3530 [OMAP3530]
    ARM9.OMAP3630 [OMAP3630]
    Cortex A.OMAP3630 [OMAP3630]
    ARM9.OMAP4430 [OMAP4430]
    Cortex A.OMAP4430 [OMAP4430]
    Cortex M.OMAP4430 [OMAP4430]
    ARM9.OMAP4460 [OMAP4460]
    Cortex A.OMAP4460 [OMAP4460]
    Cortex M.OMAP4460 [OMAP4460]
    ARM9.OMAP5430 [OMAP5430]
    Cortex A.OMAP5430 [OMAP5430]
    Cortex M.OMAP5430 [OMAP5430]
    ARM9.OMAP5432 [OMAP5432]
    Cortex A.OMAP5432 [OMAP5432]
    Cortex M.OMAP5432 [OMAP5432]
    ARM9.OMAP5432.OMAP5432_UEVM [OMAP5432_UEVM]
    Cortex A.OMAP5432.OMAP5432_UEVM [OMAP5432_UEVM]
    Cortex M.OMAP5432.OMAP5432_UEVM [OMAP5432_UEVM]
    ARM9.OMAPL132 [OMAPL132]
    ARM9.OMAPL137 [OMAPL137]
    ARM9.OMAPL138 [OMAPL138]
    ARM9.OMAP4430.PandaBoard [PandaBoard]
    Cortex A.OMAP4430.PandaBoard [PandaBoard]
    Cortex M.OMAP4430.PandaBoard [PandaBoard]
    ARM9.OMAP4460.PandaBoard_ES [PandaBoard_ES]
    Cortex A.OMAP4460.PandaBoard_ES [PandaBoard_ES]
    Cortex M.OMAP4460.PandaBoard_ES [PandaBoard_ES]
    Cortex M.PGA900ARHHR [PGA900]
    Cortex M.PGA970ARHHR [PGA970]
    Cortex R.RM41L232 [RM41L232]
    Cortex R.RM42L432 [RM42L432]
    Cortex R.RM44L520 [RM44L520]
    Cortex R.RM44L522 [RM44L522]
    Cortex R.RM44L920 [RM44L920]
    Cortex R.RM44L922 [RM44L922]
    Cortex R.RM46L430 [RM46L430]
    Cortex R.RM46L440 [RM46L440]
    Cortex R.RM46L450 [RM46L450]
    Cortex R.RM46L830 [RM46L830]
    Cortex R.RM46L840 [RM46L840]
    Cortex R.RM46L850 [RM46L850]
    Cortex R.RM46L852 [RM46L852]
    Cortex R.RM48L530 [RM48L530]
    Cortex R.RM48L540 [RM48L540]
    Cortex R.RM48L550 [RM48L550]
    Cortex R.RM48L730 [RM48L730]
    Cortex R.RM48L740 [RM48L740]
    Cortex R.RM48L750 [RM48L750]
    Cortex R.RM48L930 [RM48L930]
    Cortex R.RM48L940 [RM48L940]
    Cortex R.RM48L950 [RM48L950]
    Cortex R.RM48L952 [RM48L952]
    Cortex R.RM57L8xx [RM57L8xx]
    Cortex A.AM3358.SK_AM3358 [SK_AM3358]
    Cortex M.AM3358.SK_AM3358 [SK_AM3358]
    Cortex A.AM4378.SK_AM437X [SK_AM437X]
    Cortex M.AM4378.SK_AM437X [SK_AM437X]
    Cortex A.TCI6614 [TCI6614]
    Cortex A.TCI6630K2L [TCI6630K2L]
    Cortex A.TCI6636K2H [TCI6636K2H]
    Cortex A.TCI6638K2K [TCI6638K2K]
    ARM9.TDA2Ex [TDA2Ex]
    Cortex A.TDA2Ex [TDA2Ex]
    Cortex M.TDA2Ex [TDA2Ex]
    ARM9.TDA2Px [TDA2Px]
    Cortex A.TDA2Px [TDA2Px]
    Cortex M.TDA2Px [TDA2Px]
    ARM9.TDA2x [TDA2x]
    Cortex A.TDA2x [TDA2x]
    Cortex M.TDA2x [TDA2x]
    Cortex M.TDA3x [TDA3x]
    ARM9.TI814x [TI814x]
    Cortex A.TI814x [TI814x]
    Cortex M.TI814x [TI814x]
    ARM9.TI816x [TI816x]
    Cortex A.TI816x [TI816x]
    Cortex M.TI816x [TI816x]
    Cortex M.SC4C1290KCPDT [Tiva SC4C1290KCPDT]
    Cortex M.SC4C1294NCPDT [Tiva SC4C1294NCPDT]
    Cortex M.SC4CA294NCPDT [Tiva SC4CA294NCPDT]
    Cortex M.SC4CB297NCZAD [Tiva SC4CB297NCZAD]
    Cortex M.SC4CC231E6PM [Tiva SC4CC231E6PM]
    Cortex M.SC4CE290NCPZ [Tiva SC4CE290NCPZ]
    Cortex M.SC4CE93XH6PM [Tiva SC4CE93XH6PM]
    Cortex M.SC4E129BNCZAD [Tiva SC4E129BNCZAD]
    Cortex M.TM4C1230C3PM [Tiva TM4C1230C3PM]
    Cortex M.TM4C1230D5PM [Tiva TM4C1230D5PM]
    Cortex M.TM4C1230E6PM [Tiva TM4C1230E6PM]
    Cortex M.TM4C1230H6PM [Tiva TM4C1230H6PM]
    Cortex M.TM4C1231C3PM [Tiva TM4C1231C3PM]
    Cortex M.TM4C1231D5PM [Tiva TM4C1231D5PM]
    Cortex M.TM4C1231D5PZ [Tiva TM4C1231D5PZ]
    Cortex M.TM4C1231E6PM [Tiva TM4C1231E6PM]
    Cortex M.TM4C1231E6PZ [Tiva TM4C1231E6PZ]
    Cortex M.TM4C1231H6PGE [Tiva TM4C1231H6PGE]
    Cortex M.TM4C1231H6PM [Tiva TM4C1231H6PM]
    Cortex M.TM4C1231H6PZ [Tiva TM4C1231H6PZ]
    Cortex M.TM4C1232C3PM [Tiva TM4C1232C3PM]
    Cortex M.TM4C1232D5PM [Tiva TM4C1232D5PM]
    Cortex M.TM4C1232E6PM [Tiva TM4C1232E6PM]
    Cortex M.TM4C1232H6PM [Tiva TM4C1232H6PM]
    Cortex M.TM4C1233C3PM [Tiva TM4C1233C3PM]
    Cortex M.TM4C1233D5PM [Tiva TM4C1233D5PM]
    Cortex M.TM4C1233D5PZ [Tiva TM4C1233D5PZ]
    Cortex M.TM4C1233E6PM [Tiva TM4C1233E6PM]
    Cortex M.TM4C1233E6PZ [Tiva TM4C1233E6PZ]
    Cortex M.TM4C1233H6PGE [Tiva TM4C1233H6PGE]
    Cortex M.TM4C1233H6PM [Tiva TM4C1233H6PM]
    Cortex M.TM4C1233H6PZ [Tiva TM4C1233H6PZ]
    Cortex M.TM4C1236D5PM [Tiva TM4C1236D5PM]
    Cortex M.TM4C1236E6PM [Tiva TM4C1236E6PM]
    Cortex M.TM4C1236H6PM [Tiva TM4C1236H6PM]
    Cortex M.TM4C1237D5PM [Tiva TM4C1237D5PM]
    Cortex M.TM4C1237D5PZ [Tiva TM4C1237D5PZ]
    Cortex M.TM4C1237E6PM [Tiva TM4C1237E6PM]
    Cortex M.TM4C1237E6PZ [Tiva TM4C1237E6PZ]
    Cortex M.TM4C1237H6PGE [Tiva TM4C1237H6PGE]
    Cortex M.TM4C1237H6PM [Tiva TM4C1237H6PM]
    Cortex M.TM4C1237H6PZ [Tiva TM4C1237H6PZ]
    Cortex M.TM4C123AE6PM [Tiva TM4C123AE6PM]
    Cortex M.TM4C123AH6PM [Tiva TM4C123AH6PM]
    Cortex M.TM4C123BE6PM [Tiva TM4C123BE6PM]
    Cortex M.TM4C123BE6PZ [Tiva TM4C123BE6PZ]
    Cortex M.TM4C123BH6PGE [Tiva TM4C123BH6PGE]
    Cortex M.TM4C123BH6PM [Tiva TM4C123BH6PM]
    Cortex M.TM4C123BH6PZ [Tiva TM4C123BH6PZ]
    Cortex M.TM4C123BH6ZRB [Tiva TM4C123BH6ZRB]
    Cortex M.TM4C123FE6PM [Tiva TM4C123FE6PM]
    Cortex M.TM4C123FH6PM [Tiva TM4C123FH6PM]
    Cortex M.TM4C123GE6PM [Tiva TM4C123GE6PM]
    Cortex M.TM4C123GE6PZ [Tiva TM4C123GE6PZ]
    Cortex M.TM4C123GH6PGE [Tiva TM4C123GH6PGE]
    Cortex M.TM4C123GH6PM [Tiva TM4C123GH6PM]
    Cortex M.TM4C123GH6PZ [Tiva TM4C123GH6PZ]
    Cortex M.TM4C123GH6ZRB [Tiva TM4C123GH6ZRB]
    Cortex M.TM4C123GH6ZXR [Tiva TM4C123GH6ZXR]
    Cortex M.TM4C1290NCPDT [Tiva TM4C1290NCPDT]
    Cortex M.TM4C1290NCZAD [Tiva TM4C1290NCZAD]
    Cortex M.TM4C1292NCPDT [Tiva TM4C1292NCPDT]
    Cortex M.TM4C1292NCZAD [Tiva TM4C1292NCZAD]
    Cortex M.TM4C1294KCPDT [Tiva TM4C1294KCPDT]
    Cortex M.TM4C1294NCPDT [Tiva TM4C1294NCPDT]
    Cortex M.TM4C1294NCZAD [Tiva TM4C1294NCZAD]
    Cortex M.TM4C1297NCZAD [Tiva TM4C1297NCZAD]
    Cortex M.TM4C1299KCZAD [Tiva TM4C1299KCZAD]
    Cortex M.TM4C1299NCZAD [Tiva TM4C1299NCZAD]
    Cortex M.TM4C129CNCPDT [Tiva TM4C129CNCPDT]
    Cortex M.TM4C129CNCZAD [Tiva TM4C129CNCZAD]
    Cortex M.TM4C129DNCPDT [Tiva TM4C129DNCPDT]
    Cortex M.TM4C129DNCZAD [Tiva TM4C129DNCZAD]
    Cortex M.TM4C129EKCPDT [Tiva TM4C129EKCPDT]
    Cortex M.TM4C129ENCPDT [Tiva TM4C129ENCPDT]
    Cortex M.TM4C129ENCZAD [Tiva TM4C129ENCZAD]
    Cortex M.TM4C129LNCZAD [Tiva TM4C129LNCZAD]
    Cortex M.TM4C129XKCZAD [Tiva TM4C129XKCZAD]
    Cortex M.TM4C129XNCZAD [Tiva TM4C129XNCZAD]
    Cortex M.TM4E1111E6PDT [Tiva TM4E1111E6PDT]
    Cortex M.TM4E1111E6ZRB [Tiva TM4E1111E6ZRB]
    Cortex M.TM4E1115E6PDT [Tiva TM4E1115E6PDT]
    Cortex M.TM4E1115E6ZRB [Tiva TM4E1115E6ZRB]
    Cortex M.TM4E111AE6PDT [Tiva TM4E111AE6PDT]
    Cortex M.TM4E111AE6ZRB [Tiva TM4E111AE6ZRB]
    Cortex M.TM4E111BE6PDT [Tiva TM4E111BE6PDT]
    Cortex M.TM4E111BE6ZRB [Tiva TM4E111BE6ZRB]
    Cortex M.TM4E111CE6PDT [Tiva TM4E111CE6PDT]
    Cortex M.TM4E111CE6ZRB [Tiva TM4E111CE6ZRB]
    Cortex M.TM4E1231H6ZRB [Tiva TM4E1231H6ZRB]
    Cortex M.TM4E1237H6ZRB [Tiva TM4E1237H6ZRB]
    Cortex M.TM4E123GH6ZRB [Tiva TM4E123GH6ZRB]
    Cortex M.TM4E129BNCZAD [Tiva TM4E129BNCZAD]
    Cortex M.TM4E129SNCZAD [Tiva TM4E129SNCZAD]
    Cortex M.TM4E129XNCZAD [Tiva TM4E129XNCZAD]
    Cortex M.TM4E1G31H6ZRB [Tiva TM4E1G31H6ZRB]
    Cortex M.TM4EA231H6ZRB [Tiva TM4EA231H6ZRB]
    Cortex M.TM4EA231H6ZXR [Tiva TM4EA231H6ZXR]
    Cortex M.TM4EH115E6PDT [Tiva TM4EH115E6PDT]
    Cortex M.TM4EH115E6ZRB [Tiva TM4EH115E6ZRB]
    ARM9.TMS320DM350 [TMS320DM350]
    ARM9.TMS320DM355 [TMS320DM355]
    ARM9.TMS320DM357 [TMS320DM357]
    ARM9.TMS320DM365 [TMS320DM365]
    ARM9.TMS320DM368 [TMS320DM368]
    ARM9.TMS320DM6441 [TMS320DM6441]
    ARM9.TMS320DM6443 [TMS320DM6443]
    ARM9.TMS320DM6446 [TMS320DM6446]
    ARM9.TMS320DM6467 [TMS320DM6467]
    Cortex M.TMS320F28384D [TMS320F28384D]
    Cortex M.TMS320F28384S [TMS320F28384S]
    Cortex M.TMS320F28386D [TMS320F28386D]
    Cortex M.TMS320F28386S [TMS320F28386S]
    Cortex M.TMS320F28388D [TMS320F28388D]
    Cortex M.TMS320F28388S [TMS320F28388S]
    Cortex M.TMS470MF03107 [TMS470MF03107]
    Cortex M.TMS470MF04207 [TMS470MF04207]
    Cortex M.TMS470MF06607 [TMS470MF06607]
    Cortex M.TMS470MSF542 [TMS470MSF542]
    Cortex R.TMS570LC43xx [TMS570LC43xx]
    Cortex R.TMS570LS023x [TMS570LS023x]
    Cortex R.TMS570LS033x [TMS570LS033x]
    Cortex R.TMS570LS043x [TMS570LS043x]
    Cortex R.TMS570LS0714 [TMS570LS0714]
    Cortex R.TMS570LS0812 [TMS570LS0812]
    Cortex R.TMS570LS0914 [TMS570LS0914]
    Cortex R.TMS570LS10106SPGE [TMS570LS10106SPGE]
    Cortex R.TMS570LS10106SZWT [TMS570LS10106SZWT]
    Cortex R.TMS570LS10116SPGE [TMS570LS10116SPGE]
    Cortex R.TMS570LS10116SZWT [TMS570LS10116SZWT]
    Cortex R.TMS570LS10206SPGE [TMS570LS10206SPGE]
    Cortex R.TMS570LS10206SZWT [TMS570LS10206SZWT]
    Cortex R.TMS570LS10216SPGE [TMS570LS10216SPGE]
    Cortex R.TMS570LS10216SZWT [TMS570LS10216SZWT]
    Cortex R.TMS570LS1114 [TMS570LS1114]
    Cortex R.TMS570LS1115 [TMS570LS1115]
    Cortex R.TMS570LS1224 [TMS570LS1224]
    Cortex R.TMS570LS1225 [TMS570LS1225]
    Cortex R.TMS570LS1227 [TMS570LS1227]
    Cortex R.TMS570LS20206SPGE [TMS570LS20206SPGE]
    Cortex R.TMS570LS20206SZWT [TMS570LS20206SZWT]
    Cortex R.TMS570LS20216SPGE [TMS570LS20216SPGE]
    Cortex R.TMS570LS20216SZWT [TMS570LS20216SZWT]
    Cortex R.TMS570LS2124 [TMS570LS2124]
    Cortex R.TMS570LS2125 [TMS570LS2125]
    Cortex R.TMS570LS2134 [TMS570LS2134]
    Cortex R.TMS570LS2135 [TMS570LS2135]
    Cortex R.TMS570LS3134 [TMS570LS3134]
    Cortex R.TMS570LS3135 [TMS570LS3135]
    Cortex R.TMS570LS3137 [TMS570LS3137]
    Cortex M.TPR12 [TPR12]
    Cortex R.TPR12 [TPR12]
    ARM7.UCD3138 [UCD3138]
    ARM7.UCD3138064 [UCD3138064]
    ARM7.UCD3138064A [UCD3138064A]
    ARM7.UCD3138128 [UCD3138128]
    ARM7.UCD3138128A [UCD3138128A]
    ARM7.UCD3138A [UCD3138A]
    ARM7.UCD3138A64 [UCD3138A64]

ISA family: C2000
    com.ti.ccstudio.deviceModel.C2000.CustomC2000Device [Custom C2000 Device]
    com.ti.ccstudio.deviceModel.C2000.GenericC28xxDevice [Generic C28xx Device]
    TMS320C28XX.TMS320F28027.CONTROLSTICKF28027 [controlSTICK - Piccolo F28027]
    TMS320C28XX.TMS320F28069.CONTROLSTICKF28069 [controlSTICK - Piccolo F28069]
    TMS320C28XX.TMS320F28035.DEVKITDMOTCTLPFC28035 [Developer's Kit - Dual Motor Control and PFC (F28035)]
    TMS320C28XX.TMS320F28035.DEVKITMOTCTLPFC28035 [Developer's Kit - Motor Control and PFC (F28035)]
    TMS320C28XX.TMS320F2808.DEVKITRESDCDCF2808 [Developer's Kit - Resonant DC/DC (F2808)]
    TMS320C28XX.TMS320F28335.EXPKITF28335 [Experimenter's Kit - Delfino F28335]
    TMS320C28XX.TMS320F2808.EXPKITF2808 [Experimenter's Kit - F2808]
    TMS320C28XX.TMS320F28027.EXPKITF28027 [Experimenter's Kit - Piccolo F28027]
    TMS320C28XX.TMS320F28035.EXPKITF28035 [Experimenter's Kit - Piccolo F28035]
    TMS320C28XX.TMS320F28069.EXPKITF28069 [Experimenter's Kit - Piccolo F28069]
    TMS320C28XX.TMS320F28044.EZDSPF28044 [EZDSPF28044]
    TMS320C28XX.TMS320F2808.EZDSPF2808 [EZDSPF2808]
    TMS320C28XX.TMS320F2812.EZDSPF2812 [EZDSPF2812]
    TMS320C28XX.TMS320F28335.EZDSPF28335 [EZDSPF28335]
    TMS320C28XX.F28M35E20B1 [F28M35E20B1]
    TMS320C28XX.F28M35H22C1 [F28M35H22C1]
    TMS320C28XX.F28M35H52C1 [F28M35H52C1]
    TMS320C28XX.F28M35M20B1 [F28M35M20B1]
    TMS320C28XX.F28M35M22C1 [F28M35M22C1]
    TMS320C28XX.F28M35M52C1 [F28M35M52C1]
    TMS320C28XX.F28M36H33B2 [F28M36H33B2]
    TMS320C28XX.F28M36H33C2 [F28M36H33C2]
    TMS320C28XX.F28M36H53B2 [F28M36H53B2]
    TMS320C28XX.F28M36H53C2 [F28M36H53C2]
    TMS320C28XX.F28M36P53C2 [F28M36P53C2]
    TMS320C28XX.F28M36P63C2 [F28M36P63C2]
    TMS320C28XX.TMS320C2801 [TMS320C2801]
    TMS320C28XX.TMS320C2802 [TMS320C2802]
    TMS320C28XX.TMS320C2810 [TMS320C2810]
    TMS320C28XX.TMS320C2811 [TMS320C2811]
    TMS320C28XX.TMS320C2812 [TMS320C2812]
    TMS320C28XX.TMS320C28341 [TMS320C28341]
    TMS320C28XX.TMS320C28342 [TMS320C28342]
    TMS320C28XX.TMS320C28343 [TMS320C28343]
    TMS320C28XX.TMS320C28344 [TMS320C28344]
    TMS320C28XX.TMS320C28345 [TMS320C28345]
    TMS320C28XX.TMS320C28346 [TMS320C28346]
    TMS320C28XX.TMS320F280021 [TMS320F280021]
    TMS320C28XX.TMS320F280022 [TMS320F280022]
    TMS320C28XX.TMS320F280023 [TMS320F280023]
    TMS320C28XX.TMS320F280023C [TMS320F280023C]
    TMS320C28XX.TMS320F280024 [TMS320F280024]
    TMS320C28XX.TMS320F280024C [TMS320F280024C]
    TMS320C28XX.TMS320F280025 [TMS320F280025]
    TMS320C28XX.TMS320F280025C [TMS320F280025C]
    TMS320C28XX.TMS320F280034 [TMS320F280034]
    TMS320C28XX.TMS320F280036 [TMS320F280036]
    TMS320C28XX.TMS320F280036C [TMS320F280036C]
    TMS320C28XX.TMS320F280037 [TMS320F280037]
    TMS320C28XX.TMS320F280037C [TMS320F280037C]
    TMS320C28XX.TMS320F280038 [TMS320F280038]
    TMS320C28XX.TMS320F280038C [TMS320F280038C]
    TMS320C28XX.TMS320F280039 [TMS320F280039]
    TMS320C28XX.TMS320F280039C [TMS320F280039C]
    TMS320C28XX.TMS320F280040 [TMS320F280040]
    TMS320C28XX.TMS320F280040C [TMS320F280040C]
    TMS320C28XX.TMS320F280041 [TMS320F280041]
    TMS320C28XX.TMS320F280041C [TMS320F280041C]
    TMS320C28XX.TMS320F280045 [TMS320F280045]
    TMS320C28XX.TMS320F280048 [TMS320F280048]
    TMS320C28XX.TMS320F280048C [TMS320F280048C]
    TMS320C28XX.TMS320F280049 [TMS320F280049]
    TMS320C28XX.TMS320F280049C [TMS320F280049C]
    TMS320C28XX.TMS320F280049M [TMS320F280049M]
    TMS320C28XX.TMS320F2801 [TMS320F2801]
    TMS320C28XX.TMS320F28015 [TMS320F28015]
    TMS320C28XX.TMS320F28016 [TMS320F28016]
    TMS320C28XX.TMS320F2802 [TMS320F2802]
    TMS320C28XX.TMS320F28020 [TMS320F28020]
    TMS320C28XX.TMS320F280200 [TMS320F280200]
    TMS320C28XX.TMS320F28021 [TMS320F28021]
    TMS320C28XX.TMS320F28022 [TMS320F28022]
    TMS320C28XX.TMS320F280220 [TMS320F280220]
    TMS320C28XX.TMS320F28023 [TMS320F28023]
    TMS320C28XX.TMS320F280230 [TMS320F280230]
    TMS320C28XX.TMS320F28026 [TMS320F28026]
    TMS320C28XX.TMS320F280260 [TMS320F280260]
    TMS320C28XX.TMS320F28027 [TMS320F28027]
    TMS320C28XX.TMS320F280270 [TMS320F280270]
    TMS320C28XX.TMS320F28030 [TMS320F28030]
    TMS320C28XX.TMS320F28031 [TMS320F28031]
    TMS320C28XX.TMS320F28032 [TMS320F28032]
    TMS320C28XX.TMS320F28033 [TMS320F28033]
    TMS320C28XX.TMS320F28034 [TMS320F28034]
    TMS320C28XX.TMS320F28035 [TMS320F28035]
    TMS320C28XX.TMS320F28044 [TMS320F28044]
    TMS320C28XX.TMS320F28050 [TMS320F28050]
    TMS320C28XX.TMS320F28051 [TMS320F28051]
    TMS320C28XX.TMS320F28052 [TMS320F28052]
    TMS320C28XX.TMS320F28052F [TMS320F28052F]
    TMS320C28XX.TMS320F28052M [TMS320F28052M]
    TMS320C28XX.TMS320F28053 [TMS320F28053]
    TMS320C28XX.TMS320F28054 [TMS320F28054]
    TMS320C28XX.TMS320F28054F [TMS320F28054F]
    TMS320C28XX.TMS320F28054M [TMS320F28054M]
    TMS320C28XX.TMS320F28055 [TMS320F28055]
    TMS320C28XX.TMS320F2806 [TMS320F2806]
    TMS320C28XX.TMS320F28062 [TMS320F28062]
    TMS320C28XX.TMS320F28063 [TMS320F28063]
    TMS320C28XX.TMS320F28064 [TMS320F28064]
    TMS320C28XX.TMS320F28065 [TMS320F28065]
    TMS320C28XX.TMS320F28066 [TMS320F28066]
    TMS320C28XX.TMS320F28067 [TMS320F28067]
    TMS320C28XX.TMS320F28068 [TMS320F28068]
    TMS320C28XX.TMS320F28069 [TMS320F28069]
    TMS320C28XX.TMS320F28074 [TMS320F28074]
    TMS320C28XX.TMS320F28075 [TMS320F28075]
    TMS320C28XX.TMS320F28076 [TMS320F28076]
    TMS320C28XX.TMS320F28079 [TMS320F28079]
    TMS320C28XX.TMS320F2808 [TMS320F2808]
    TMS320C28XX.TMS320F2809 [TMS320F2809]
    TMS320C28XX.TMS320F2810 [TMS320F2810]
    TMS320C28XX.TMS320F2811 [TMS320F2811]
    TMS320C28XX.TMS320F2812 [TMS320F2812]
    TMS320C28XX.TMS320F28232 [TMS320F28232]
    TMS320C28XX.TMS320F28234 [TMS320F28234]
    TMS320C28XX.TMS320F28235 [TMS320F28235]
    TMS320C28XX.TMS320F28332 [TMS320F28332]
    TMS320C28XX.TMS320F28333 [TMS320F28333]
    TMS320C28XX.TMS320F28334 [TMS320F28334]
    TMS320C28XX.TMS320F28335 [TMS320F28335]
    TMS320C28XX.TMS320F28374D [TMS320F28374D]
    TMS320C28XX.TMS320F28374S [TMS320F28374S]
    TMS320C28XX.TMS320F28375D [TMS320F28375D]
    TMS320C28XX.TMS320F28375S [TMS320F28375S]
    TMS320C28XX.TMS320F28376D [TMS320F28376D]
    TMS320C28XX.TMS320F28376S [TMS320F28376S]
    TMS320C28XX.TMS320F28377D [TMS320F28377D]
    TMS320C28XX.TMS320F28377S [TMS320F28377S]
    TMS320C28XX.TMS320F28378D [TMS320F28378D]
    TMS320C28XX.TMS320F28378S [TMS320F28378S]
    TMS320C28XX.TMS320F28379D [TMS320F28379D]
    TMS320C28XX.TMS320F28379S [TMS320F28379S]
    TMS320C28XX.TMS320F2837HD [TMS320F2837HD]
    TMS320C28XX.TMS320F28384D [TMS320F28384D]
    TMS320C28XX.TMS320F28384S [TMS320F28384S]
    TMS320C28XX.TMS320F28386D [TMS320F28386D]
    TMS320C28XX.TMS320F28386S [TMS320F28386S]
    TMS320C28XX.TMS320F28388D [TMS320F28388D]
    TMS320C28XX.TMS320F28388S [TMS320F28388S]
    TMS320C28XX.TMS320F28PLC83 [TMS320F28PLC83]
    TMS320C28XX.TMS320F28PLC84 [TMS320F28PLC84]
    TMS320C28XX.TMS320F28PLC85 [TMS320F28PLC85]
    TMS320C28XX.TMS320F28PLC90D [TMS320F28PLC90D]
    TMS320C28XX.TMS320F28PLC93 [TMS320F28PLC93]
    TMS320C28XX.TMS320F28PLC95 [TMS320F28PLC95]
    TMS320C28XX.TMS320R2810 [TMS320R2810]
    TMS320C28XX.TMS320R2812 [TMS320R2812]

ISA family: C5500
    com.ti.ccstudio.deviceModel.C5500.CustomC5500Device [Custom C5500 Device]
    TMS320C55XX.TMS320C5509A.DSK5509A [DSK5509A]
    TMS320C55XX.TMS320C5510A.DSK5510 [DSK5510]
    TMS320C55XX.TMS320C5502.EVM5502 [EVM5502]
    TMS320C55XX.TMS320C5505.EVM5505 [EVM5505]
    TMS320C55XX.TMS320C5509A.EVM5509A [EVM5509A]
    TMS320C55XX.TMS320C5515.EVM5515 [EVM5515]
    TMS320C55XX.TMS320C5517.EVM5517 [EVM5517]
    TMS320C55XX.TMS320C5502.EZDSP5502 [EZDSP5502]
    TMS320C55XX.TMS320C5535.EZDSP5535 [EZDSP5535]
    TMS320C55XX.TMS320C5501 [TMS320C5501]
    TMS320C55XX.TMS320C5502 [TMS320C5502]
    TMS320C55XX.TMS320C5503 [TMS320C5503]
    TMS320C55XX.TMS320C5504 [TMS320C5504]
    TMS320C55XX.TMS320C5505 [TMS320C5505]
    TMS320C55XX.TMS320C5506 [TMS320C5506]
    TMS320C55XX.TMS320C5507 [TMS320C5507]
    TMS320C55XX.TMS320C5509 [TMS320C5509]
    TMS320C55XX.TMS320C5509A [TMS320C5509A]
    TMS320C55XX.TMS320C5510 [TMS320C5510]
    TMS320C55XX.TMS320C5510A [TMS320C5510A]
    TMS320C55XX.TMS320C5514 [TMS320C5514]
    TMS320C55XX.TMS320C5515 [TMS320C5515]
    TMS320C55XX.TMS320C5517 [TMS320C5517]
    TMS320C55XX.TMS320C5532 [TMS320C5532]
    TMS320C55XX.TMS320C5533 [TMS320C5533]
    TMS320C55XX.TMS320C5534 [TMS320C5534]
    TMS320C55XX.TMS320C5535 [TMS320C5535]
    TMS320C55XX.TMS320C5545 [TMS320C5545]
    TMS320C55XX.TMS320C5561 [TMS320C5561]
    TMS320C55XX.TMS320VC5504 [TMS320VC5504]
    TMS320C55XX.TMS320VC5505 [TMS320VC5505]
    TMS320C55XX.TMS320C5505.USBSTK5505 [USBSTK5505]
    TMS320C55XX.TMS320VC5505.USBSTK5505_VC5505 [USBSTK5505_VC5505]
    TMS320C55XX.TMS320C5515.USBSTK5515 [USBSTK5515]

ISA family: C6000
    com.ti.ccstudio.deviceModel.C6000.CustomC6000Device [Custom C6000 Device]
    com.ti.ccstudio.deviceModel.C6000.GenericC62xxDevice [Generic C62xx Device]
    com.ti.ccstudio.deviceModel.C6000.GenericC64xxDevice [Generic C64xx Device]
    com.ti.ccstudio.deviceModel.C6000.GenericC64xPlusDevice [Generic C64x+ Device]
    com.ti.ccstudio.deviceModel.C6000.GenericC66xxDevice [Generic C66xx Device]
    com.ti.ccstudio.deviceModel.C6000.GenericC674xDevice [Generic C674x Device]
    com.ti.ccstudio.deviceModel.C6000.GenericC67xxDevice [Generic C67xx Device]
    com.ti.ccstudio.deviceModel.C6000.GenericC67xPlusDevice [Generic C67x+ Device]
    TMS320C66XX.66AK2E05 [66AK2E05]
    TMS320C66XX.66AK2G01 [66AK2G01]
    TMS320C66XX.66AK2G02 [66AK2G02]
    TMS320C66XX.66AK2G12 [66AK2G12]
    TMS320C66XX.66AK2H06 [66AK2H06]
    TMS320C66XX.66AK2H12 [66AK2H12]
    TMS320C66XX.66AK2H14 [66AK2H14]
    TMS320C66XX.66AK2L06 [66AK2L06]
    TMS320C66XX.AM273x [AM273x]
    TMS320C66XX.AM5706 [AM5706]
    TMS320C66XX.AM5708 [AM5708]
    TMS320C66XX.AM5716 [AM5716]
    TMS320C66XX.AM5718 [AM5718]
    TMS320C66XX.AM5726 [AM5726]
    TMS320C66XX.AM5726_RevA [AM5726_RevA]
    TMS320C66XX.AM5728 [AM5728]
    TMS320C66XX.AM5728_RevA [AM5728_RevA]
    TMS320C66XX.AM5729 [AM5729]
    TMS320C66XX.AM5746 [AM5746]
    TMS320C66XX.AM5748 [AM5748]
    TMS320C66XX.AM5749 [AM5749]
    TMS320C66XX.AM5766 [AM5766]
    TMS320C66XX.AM5768 [AM5768]
    TMS320C67XX.AWR1642 [AWR1642]
    TMS320C67XX.AWR1843 [AWR1843]
    TMS320C66XX.AWR2943 [AWR2943]
    TMS320C66XX.AWR2944 [AWR2944]
    TMS320C67XX.AWR6843 [AWR6843]
    TMS320C67XX.AWR6843AOP [AWR6843AOP]
    TMS320C64XX.OMAP3530.BeagleBoard [BeagleBoard]
    TMS320C64XX.DM3730.BeagleBoard_xM [BeagleBoard_xM]
    TMS320C64XX.OMAP4430.Blaze_4430 [Blaze_4430]
    TMS320C64XX.OMAP4460.Blaze_4460 [Blaze_4460]
    TMS320C67XX.DA804/DA803/DA802 [DA804/DA803/DA802]
    TMS320C67XX.DA810/DA80x [DA810/DA80x]
    TMS320C67XX.DA830/DA828 [DA830/DA828]
    TMS320C64XX.DM3725 [DM3725]
    TMS320C64XX.DM3730 [DM3730]
    TMS320C66XX.DM50x [DM50x]
    TMS320C67XX.TMS320DM8127 [DM8127]
    TMS320C67XX.TMS320DM8127.DM8127CSK [DM8127CSK]
    TMS320C67XX.TMS320DM8146 [DM8146]
    TMS320C67XX.TMS320DM8147 [DM8147]
    TMS320C67XX.TMS320DM8148 [DM8148]
    TMS320C67XX.DM814x [DM814x]
    TMS320C67XX.TMS320DM8165 [DM8165]
    TMS320C67XX.TMS320DM8166 [DM8166]
    TMS320C67XX.TMS320DM8167 [DM8167]
    TMS320C67XX.TMS320DM8168 [DM8168]
    TMS320C67XX.DM816x [DM816x]
    TMS320C66XX.DRA71x [DRA71x]
    TMS320C66XX.DRA72x [DRA72x]
    TMS320C66XX.DRA74xP_75xP_76xP_77xP [DRA74xP_75xP_76xP_77xP]
    TMS320C66XX.DRA75x_DRA74x [DRA75x_DRA74x]
    TMS320C66XX.DRA78x [DRA78x]
    TMS320C66XX.DRA79x [DRA79x]
    TMS320C64XX.TMS320C6416.DSK6416 [DSK6416]
    TMS320C64XX.TMS320C6455.DSK6455 [DSK6455]
    TMS320C67XX.DSK6713 [DSK6713]
    TMS320C67XX.DA830/DA828.DSKDA830 [DSKDA830]
    TMS320C64XX.TMS320TCI6482.DSKTCI6482 [DSKTCI6482]
    TMS320C64XX.TMS320C6413.EVM6413 [EVM6413]
    TMS320C64XX.TMS320C6418.EVM6418 [EVM6418]
    TMS320C64XX.TMS320C6455.EVM6455 [EVM6455 (TMS320C6455)]
    TMS320C66XX.J721E_DRA829_TDA4VM.EVM_J721E [EVM_J721E]
    TMS320C66XX.AM273x.evmAM273x [evmAM273x]
    TMS320C64XX.TMS320C6424.EVMC6424 [EVMC6424]
    TMS320C64XX.TMS320C6457.EVMC6457 [EVMC6457 (TMS320C6457)]
    TMS320C64XX.TMS320C6472.EVMC6472 [EVMC6472]
    TMS320C64XX.EVMC6474 [EVMC6474]
    TMS320C67XX.TMS320C6747.EVMC6747 [EVMC6747]
    TMS320C67XX.TMS320C6748.EVMC6748 [EVMC6748]
    TMS320C64XX.DM3730.EVMDM3730 [EVMDM3730]
    TMS320C64XX.TMS320DM642.EVMDM642 [EVMDM642]
    TMS320C64XX.TMS320DM6437.EVMDM6437 [EVMDM6437]
    TMS320C64XX.TMS320DM6446.EVMDM6446 [EVMDM6446]
    TMS320C64XX.TMS320DM6467.EVMDM6467 [EVMDM6467]
    TMS320C64XX.TMS320DM6467.EVMDM6467T [EVMDM6467T]
    TMS320C64XX.TMS320DM648.EVMDM648 [EVMDM648]
    TMS320C67XX.TMS320DM8148.EVMDM8148 [EVMDM8148]
    TMS320C67XX.TMS320DM8168.EVMDM8168 [EVMDM8168]
    TMS320C64XX.OMAP3530.EVMOMAP3530 [EVMOMAP3530]
    TMS320C67XX.OMAPL137.EVMOMAPL137 [EVMOMAPL137]
    TMS320C67XX.OMAPL138.EVMOMAPL138 [EVMOMAPL138]
    TMS320C64XX.TMS320TCI6482.EVMTCI6482 [EVMTCI6482 (TMS320TCI6482)]
    TMS320C64XX.EVMTCI6488 [EVMTCI6488]
    TMS320C67XX.OMAPL138.EXPKITOMAPL138 [EXPKITOMAPL138]
    TMS320C66XX.AM5728.GPEVM_AM572X [GPEVM_AM572X]
    TMS320C66XX.AM5728_RevA.GPEVM_AM572X_SiRevA [GPEVM_AM572X_SiRevA]
    TMS320C66XX.AM5718.IDK_AM571X [IDK_AM571X]
    TMS320C66XX.AM5728.IDK_AM572X [IDK_AM572X]
    TMS320C66XX.AM5748.IDK_AM574X [IDK_AM574X]
    TMS320C67XX.IWR1642 [IWR1642]
    TMS320C67XX.IWR1843 [IWR1843]
    TMS320C67XX.IWR1843AOP [IWR1843AOP]
    TMS320C67XX.IWR6843 [IWR6843]
    TMS320C67XX.IWR6843AOP [IWR6843AOP]
    TMS320C66XX.J721E_DRA829_TDA4VM [J721E_DRA829_TDA4VM]
    TMS320C66XX.66AK2G02.K2GEVM [K2GEVM]
    TMS320C66XX.66AK2G02.K2GICE [K2GICE]
    TMS320C67XX.TMS320C6748.LCDKC6748 [LCDKC6748]
    TMS320C67XX.OMAPL138.LCDKOMAPL138 [LCDKOMAPL138]
    TMS320C64XX.OMAP3430 [OMAP3430]
    TMS320C64XX.OMAP3525 [OMAP3525]
    TMS320C64XX.OMAP3530 [OMAP3530]
    TMS320C64XX.OMAP3630 [OMAP3630]
    TMS320C64XX.OMAP4430 [OMAP4430]
    TMS320C64XX.OMAP4460 [OMAP4460]
    TMS320C64XX.OMAP5430 [OMAP5430]
    TMS320C64XX.OMAP5432 [OMAP5432]
    TMS320C64XX.OMAP5432.OMAP5432_UEVM [OMAP5432_UEVM]
    TMS320C67XX.OMAPL132 [OMAPL132]
    TMS320C67XX.OMAPL137 [OMAPL137]
    TMS320C67XX.OMAPL138 [OMAPL138]
    TMS320C64XX.OMAP4430.PandaBoard [PandaBoard]
    TMS320C64XX.OMAP4460.PandaBoard_ES [PandaBoard_ES]
    TMS320C66XX.TCI6608 [TCI6608]
    TMS320C66XX.TCI6614 [TCI6614]
    TMS320C66XX.TCI6616 [TCI6616]
    TMS320C66XX.TCI6618 [TCI6618]
    TMS320C66XX.TCI6630K2L [TCI6630K2L]
    TMS320C66XX.TCI6634K2K [TCI6634K2K]
    TMS320C66XX.TCI6636K2H [TCI6636K2H]
    TMS320C66XX.TCI6638K2K [TCI6638K2K]
    TMS320C66XX.TDA2Ex [TDA2Ex]
    TMS320C66XX.TDA2Px [TDA2Px]
    TMS320C66XX.TDA2x [TDA2x]
    TMS320C66XX.TDA3x [TDA3x]
    TMS320C67XX.TI814x [TI814x]
    TMS320C67XX.TI816x [TI816x]
    TMS320C64XX.TMS320C6457.TMDSEVM6457L [TMDSEVM6457L]
    TMS320C64XX.TMS320C6474.TMDSEVM6474L [TMDSEVM6474L]
    TMS320C64XX.TMS320C6410 [TMS320C6410]
    TMS320C64XX.TMS320C6411 [TMS320C6411]
    TMS320C64XX.TMS320C6412 [TMS320C6412]
    TMS320C64XX.TMS320C6413 [TMS320C6413]
    TMS320C64XX.TMS320C6414 [TMS320C6414]
    TMS320C64XX.TMS320C6415 [TMS320C6415]
    TMS320C64XX.TMS320C6416 [TMS320C6416]
    TMS320C64XX.TMS320C6418 [TMS320C6418]
    TMS320C64XX.TMS320C6421 [TMS320C6421]
    TMS320C64XX.TMS320C6424 [TMS320C6424]
    TMS320C64XX.TMS320C6452 [TMS320C6452]
    TMS320C64XX.TMS320C6454 [TMS320C6454]
    TMS320C64XX.TMS320C6455 [TMS320C6455]
    TMS320C64XX.TMS320C6457 [TMS320C6457]
    TMS320C64XX.TMS320C6472 [TMS320C6472]
    TMS320C64XX.TMS320C6474 [TMS320C6474]
    TMS320C66XX.TMS320C6652 [TMS320C6652]
    TMS320C66XX.TMS320C6654 [TMS320C6654]
    TMS320C66XX.TMS320C6655 [TMS320C6655]
    TMS320C66XX.TMS320C6657 [TMS320C6657]
    TMS320C66XX.TMS320C6670 [TMS320C6670]
    TMS320C66XX.TMS320C6671 [TMS320C6671]
    TMS320C66XX.TMS320C6672 [TMS320C6672]
    TMS320C66XX.TMS320C6674 [TMS320C6674]
    TMS320C66XX.TMS320C6678 [TMS320C6678]
    TMS320C67XX.TMS320C6701 [TMS320C6701]
    TMS320C67XX.TMS320C6711 [TMS320C6711]
    TMS320C67XX.TMS320C6712 [TMS320C6712]
    TMS320C67XX.TMS320C6713 [TMS320C6713]
    TMS320C67XX.TMS320C6720 [TMS320C6720]
    TMS320C67XX.TMS320C6722 [TMS320C6722]
    TMS320C67XX.TMS320C6726 [TMS320C6726]
    TMS320C67XX.TMS320C6727 [TMS320C6727]
    TMS320C67XX.TMS320C6742 [TMS320C6742]
    TMS320C67XX.TMS320C6743 [TMS320C6743]
    TMS320C67XX.TMS320C6745 [TMS320C6745]
    TMS320C67XX.TMS320C6746 [TMS320C6746]
    TMS320C67XX.TMS320C6747 [TMS320C6747]
    TMS320C67XX.TMS320C6748 [TMS320C6748]
    TMS320C64XX.TMS320DM640 [TMS320DM640]
    TMS320C64XX.TMS320DM641 [TMS320DM641]
    TMS320C64XX.TMS320DM642 [TMS320DM642]
    TMS320C64XX.TMS320DM643 [TMS320DM643]
    TMS320C64XX.TMS320DM6431 [TMS320DM6431]
    TMS320C64XX.TMS320DM6433 [TMS320DM6433]
    TMS320C64XX.TMS320DM6435 [TMS320DM6435]
    TMS320C64XX.TMS320DM6437 [TMS320DM6437]
    TMS320C64XX.TMS320DM6441 [TMS320DM6441]
    TMS320C64XX.TMS320DM6443 [TMS320DM6443]
    TMS320C64XX.TMS320DM6446 [TMS320DM6446]
    TMS320C64XX.TMS320DM6467 [TMS320DM6467]
    TMS320C64XX.TMS320DM647 [TMS320DM647]
    TMS320C64XX.TMS320DM648 [TMS320DM648]
    TMS320C64XX.TMS320TCI6482 [TMS320TCI6482]
    TMS320C64XX.TMS320TCI6484 [TMS320TCI6484]
    TMS320C64XX.TMS320TCI6486 [TMS320TCI6486]
    TMS320C64XX.TMS320TCI6487 [TMS320TCI6487]
    TMS320C64XX.TMS320TCI6488 [TMS320TCI6488]
    TMS320C66XX.TPR12 [TPR12]

ISA family: C7000
    com.ti.ccstudio.deviceModel.C7000.CustomC7000Device [Custom C7000 Device]
    com.ti.ccstudio.deviceModel.C7000.GenericC71xxDevice [Generic C71xx Device]
    TMS320C71XX.J721E_DRA829_TDA4VM.EVM_J721E [EVM_J721E]
    TMS320C71XX.J721E_DRA829_TDA4VM [J721E_DRA829_TDA4VM]

ISA family: EVE
    EVE.genericDevice.EVE [Generic EVE Device]
    EVE.DM50x [DM50x]
    EVE.DRA74xP_75xP_76xP_77xP [DRA74xP_75xP_76xP_77xP]
    EVE.DRA75x_DRA74x [DRA75x_DRA74x]
    EVE.DRA78x [DRA78x]
    EVE.TDA2Px [TDA2Px]
    EVE.TDA2x [TDA2x]
    EVE.TDA3x [TDA3x]

ISA family: MSP430
    com.ti.ccstudio.deviceModel.MSP430.CustomMSP430Device [Custom MSP430 Device]
    CC430F5123
    CC430F5125
    CC430F5133
    CC430F5135
    CC430F5137
    CC430F5143
    CC430F5145
    CC430F5147
    CC430F6125
    CC430F6126
    CC430F6127
    CC430F6135
    CC430F6137
    CC430F6143
    CC430F6145
    CC430F6147
    MSP430AFE221
    MSP430AFE222
    MSP430AFE223
    MSP430AFE231
    MSP430AFE232
    MSP430AFE233
    MSP430AFE251
    MSP430AFE252
    MSP430AFE253
    MSP430BT5190
    MSP430C091
    MSP430C092
    MSP430C111
    MSP430C1111
    MSP430C112
    MSP430C1121
    MSP430C1331
    MSP430C1351
    MSP430C311S
    MSP430C312
    MSP430C313
    MSP430C314
    MSP430C315
    MSP430C323
    MSP430C325
    MSP430C336
    MSP430C337
    MSP430C412
    MSP430C413
    MSP430CG4616
    MSP430CG4617
    MSP430CG4618
    MSP430CG4619
    MSP430E112
    MSP430E313
    MSP430E315
    MSP430E325
    MSP430E337
    MSP430F110
    MSP430F1101
    MSP430F1101A
    MSP430F1111
    MSP430F1111A
    MSP430F112
    MSP430F1121
    MSP430F1121A
    MSP430F1122
    MSP430F1132
    MSP430F122
    MSP430F1222
    MSP430F123
    MSP430F1232
    MSP430F133
    MSP430F135
    MSP430F147
    MSP430F1471
    MSP430F148
    MSP430F1481
    MSP430F149
    MSP430F1491
    MSP430F155
    MSP430F156
    MSP430F157
    MSP430F1610
    MSP430F1611
    MSP430F1612
    MSP430F167
    MSP430F168
    MSP430F169
    MSP430F2001
    MSP430F2002
    MSP430F2003
    MSP430F2011
    MSP430F2012
    MSP430F2013
    MSP430F2101
    MSP430F2111
    MSP430F2112
    MSP430F2121
    MSP430F2122
    MSP430F2131
    MSP430F2132
    MSP430F2232
    MSP430F2234
    MSP430F2252
    MSP430F2254
    MSP430F2272
    MSP430F2274
    MSP430F233
    MSP430F2330
    MSP430F235
    MSP430F2350
    MSP430F2370
    MSP430F2410
    MSP430F2416
    MSP430F2417
    MSP430F2418
    MSP430F2419
    MSP430F247
    MSP430F2471
    MSP430F248
    MSP430F2481
    MSP430F249
    MSP430F2491
    MSP430F2616
    MSP430F2617
    MSP430F2618
    MSP430F2619
    MSP430F412
    MSP430F413
    MSP430F4132
    MSP430F415
    MSP430F4152
    MSP430F417
    MSP430F423
    MSP430F423A
    MSP430F425
    MSP430F4250
    MSP430F425A
    MSP430F4260
    MSP430F427
    MSP430F4270
    MSP430F427A
    MSP430F435
    MSP430F4351
    MSP430F436
    MSP430F4361
    MSP430F437
    MSP430F4371
    MSP430F438
    MSP430F439
    MSP430F447
    MSP430F448
    MSP430F4481
    MSP430F449
    MSP430F4491
    MSP430F4616
    MSP430F46161
    MSP430F4617
    MSP430F46171
    MSP430F4618
    MSP430F46181
    MSP430F4619
    MSP430F46191
    MSP430F47126
    MSP430F47127
    MSP430F47163
    MSP430F47166
    MSP430F47167
    MSP430F47173
    MSP430F47176
    MSP430F47177
    MSP430F47183
    MSP430F47186
    MSP430F47187
    MSP430F47193
    MSP430F47196
    MSP430F47197
    MSP430F477
    MSP430F478
    MSP430F4783
    MSP430F4784
    MSP430F479
    MSP430F4793
    MSP430F4794
    MSP430F5131
    MSP430F5132
    MSP430F5151
    MSP430F5152
    MSP430F5171
    MSP430F5172
    MSP430F5212
    MSP430F5213
    MSP430F5214
    MSP430F5217
    MSP430F5218
    MSP430F5219
    MSP430F5222
    MSP430F5223
    MSP430F5224
    MSP430F5227
    MSP430F5228
    MSP430F5229
    MSP430F5232
    MSP430F5234
    MSP430F5237
    MSP430F5239
    MSP430F5242
    MSP430F5244
    MSP430F5247
    MSP430F5249
    MSP430F5252
    MSP430F5253
    MSP430F5254
    MSP430F5255
    MSP430F5256
    MSP430F5257
    MSP430F5258
    MSP430F5259
    MSP430F5304
    MSP430F5308
    MSP430F5309
    MSP430F5310
    MSP430F5324
    MSP430F5325
    MSP430F5326
    MSP430F5327
    MSP430F5328
    MSP430F5329
    MSP430F5333
    MSP430F5335
    MSP430F5336
    MSP430F5338
    MSP430F5340
    MSP430F5341
    MSP430F5342
    MSP430F5358
    MSP430F5359
    MSP430F5418
    MSP430F5418A
    MSP430F5419
    MSP430F5419A
    MSP430F5435
    MSP430F5435A
    MSP430F5436
    MSP430F5436A
    MSP430F5437
    MSP430F5437A
    MSP430F5438
    MSP430F5438A
    MSP430F5500
    MSP430F5501
    MSP430F5502
    MSP430F5503
    MSP430F5504
    MSP430F5505
    MSP430F5506
    MSP430F5507
    MSP430F5508
    MSP430F5509
    MSP430F5510
    MSP430F5513
    MSP430F5514
    MSP430F5515
    MSP430F5517
    MSP430F5519
    MSP430F5521
    MSP430F5522
    MSP430F5524
    MSP430F5525
    MSP430F5526
    MSP430F5527
    MSP430F5528
    MSP430F5529
    MSP430F5630
    MSP430F5631
    MSP430F5632
    MSP430F5633
    MSP430F5634
    MSP430F5635
    MSP430F5636
    MSP430F5637
    MSP430F5638
    MSP430F5658
    MSP430F5659
    MSP430F6433
    MSP430F6435
    MSP430F6436
    MSP430F6438
    MSP430F6458
    MSP430F6459
    MSP430F6630
    MSP430F6631
    MSP430F6632
    MSP430F6633
    MSP430F6634
    MSP430F6635
    MSP430F6636
    MSP430F6637
    MSP430F6638
    MSP430F6658
    MSP430F6659
    MSP430F6720
    MSP430F6720A
    MSP430F6721
    MSP430F6721A
    MSP430F6723
    MSP430F6723A
    MSP430F6724
    MSP430F6724A
    MSP430F6725
    MSP430F6725A
    MSP430F6726
    MSP430F6726A
    MSP430F6730
    MSP430F6730A
    MSP430F6731
    MSP430F6731A
    MSP430F6733
    MSP430F6733A
    MSP430F6734
    MSP430F6734A
    MSP430F6735
    MSP430F6735A
    MSP430F6736
    MSP430F6736A
    MSP430F6745
    MSP430F67451
    MSP430F67451A
    MSP430F6745A
    MSP430F6746
    MSP430F67461
    MSP430F67461A
    MSP430F6746A
    MSP430F6747
    MSP430F67471
    MSP430F67471A
    MSP430F6747A
    MSP430F6748
    MSP430F67481
    MSP430F67481A
    MSP430F6748A
    MSP430F6749
    MSP430F67491
    MSP430F67491A
    MSP430F6749A
    MSP430F67621
    MSP430F67621A
    MSP430F67641
    MSP430F67641A
    MSP430F6765
    MSP430F67651
    MSP430F67651A
    MSP430F6765A
    MSP430F6766
    MSP430F67661
    MSP430F67661A
    MSP430F6766A
    MSP430F6767
    MSP430F67671
    MSP430F67671A
    MSP430F6767A
    MSP430F6768
    MSP430F67681
    MSP430F67681A
    MSP430F6768A
    MSP430F6769
    MSP430F67691
    MSP430F67691A
    MSP430F6769A
    MSP430F6775
    MSP430F67751
    MSP430F67751A
    MSP430F6775A
    MSP430F6776
    MSP430F67761
    MSP430F67761A
    MSP430F6776A
    MSP430F6777
    MSP430F67771
    MSP430F67771A
    MSP430F6777A
    MSP430F6778
    MSP430F67781
    MSP430F67781A
    MSP430F6778A
    MSP430F6779
    MSP430F67791
    MSP430F67791A
    MSP430F6779A
    MSP430FE423
    MSP430FE4232
    MSP430FE423A
    MSP430FE4242
    MSP430FE425
    MSP430FE4252
    MSP430FE425A
    MSP430FE427
    MSP430FE4272
    MSP430FE427A
    MSP430FG4250
    MSP430FG4260
    MSP430FG4270
    MSP430FG437
    MSP430FG438
    MSP430FG439
    MSP430FG4616
    MSP430FG4617
    MSP430FG4618
    MSP430FG4619
    MSP430FG477
    MSP430FG478
    MSP430FG479
    MSP430FG6425
    MSP430FG6426
    MSP430FG6625
    MSP430FG6626
    MSP430FR2000
    MSP430FR2032
    MSP430FR2033
    MSP430FR2100
    MSP430FR2110
    MSP430FR2111
    MSP430FR2153
    MSP430FR2155
    MSP430FR2310
    MSP430FR2311
    MSP430FR2353
    MSP430FR2355
    MSP430FR2422
    MSP430FR2433
    MSP430FR2475
    MSP430FR2476
    MSP430FR2512
    MSP430FR2522
    MSP430FR2532
    MSP430FR2533
    MSP430FR2632
    MSP430FR2633
    MSP430FR2672
    MSP430FR2673
    MSP430FR2675
    MSP430FR2676
    MSP430FR4131
    MSP430FR4132
    MSP430FR4133
    MSP430FR5041
    MSP430FR5043
    MSP430FR50431
    MSP430FR5720
    MSP430FR5721
    MSP430FR5722
    MSP430FR5723
    MSP430FR5724
    MSP430FR5725
    MSP430FR5726
    MSP430FR5727
    MSP430FR5728
    MSP430FR5729
    MSP430FR5730
    MSP430FR5731
    MSP430FR5732
    MSP430FR5733
    MSP430FR5734
    MSP430FR5735
    MSP430FR5736
    MSP430FR5737
    MSP430FR5738
    MSP430FR5739
    MSP430FR5847
    MSP430FR58471
    MSP430FR5848
    MSP430FR5849
    MSP430FR5857
    MSP430FR5858
    MSP430FR5859
    MSP430FR5867
    MSP430FR58671
    MSP430FR5868
    MSP430FR5869
    MSP430FR5870
    MSP430FR5872
    MSP430FR58721
    MSP430FR5887
    MSP430FR5888
    MSP430FR5889
    MSP430FR58891
    MSP430FR5922
    MSP430FR59221
    MSP430FR5947
    MSP430FR59471
    MSP430FR5948
    MSP430FR5949
    MSP430FR5957
    MSP430FR5958
    MSP430FR5959
    MSP430FR5962
    MSP430FR5964
    MSP430FR5967
    MSP430FR5968
    MSP430FR5969
    MSP430FR59691
    MSP430FR5970
    MSP430FR5972
    MSP430FR59721
    MSP430FR5986
    MSP430FR5987
    MSP430FR5988
    MSP430FR5989
    MSP430FR59891
    MSP430FR5992
    MSP430FR5994
    MSP430FR59941
    MSP430FR6005
    MSP430FR6007
    MSP430FR6035
    MSP430FR6037
    MSP430FR60371
    MSP430FR6041
    MSP430FR6043
    MSP430FR60431
    MSP430FR6045
    MSP430FR6047
    MSP430FR60471
    MSP430FR6820
    MSP430FR6822
    MSP430FR68221
    MSP430FR6870
    MSP430FR6872
    MSP430FR68721
    MSP430FR6877
    MSP430FR6879
    MSP430FR68791
    MSP430FR6887
    MSP430FR6888
    MSP430FR6889
    MSP430FR68891
    MSP430FR6920
    MSP430FR6922
    MSP430FR69221
    MSP430FR6927
    MSP430FR69271
    MSP430FR6928
    MSP430FR6970
    MSP430FR6972
    MSP430FR69721
    MSP430FR6977
    MSP430FR6979
    MSP430FR69791
    MSP430FR6987
    MSP430FR6988
    MSP430FR6989
    MSP430FR69891
    MSP430FW423
    MSP430FW425
    MSP430FW427
    MSP430FW428
    MSP430FW429
    MSP430G2001
    MSP430G2101
    MSP430G2102
    MSP430G2111
    MSP430G2112
    MSP430G2113
    MSP430G2121
    MSP430G2131
    MSP430G2132
    MSP430G2152
    MSP430G2153
    MSP430G2201
    MSP430G2202
    MSP430G2203
    MSP430G2210
    MSP430G2211
    MSP430G2212
    MSP430G2213
    MSP430G2221
    MSP430G2230
    MSP430G2231
    MSP430G2232
    MSP430G2233
    MSP430G2252
    MSP430G2253
    MSP430G2302
    MSP430G2303
    MSP430G2312
    MSP430G2313
    MSP430G2332
    MSP430G2333
    MSP430G2352
    MSP430G2353
    MSP430G2402
    MSP430G2403
    MSP430G2412
    MSP430G2413
    MSP430G2432
    MSP430G2433
    MSP430G2444
    MSP430G2452
    MSP430G2453
    MSP430G2513
    MSP430G2533
    MSP430G2544
    MSP430G2553
    MSP430G2744
    MSP430G2755
    MSP430G2855
    MSP430G2955
    MSP430i2020
    MSP430i2021
    MSP430i2030
    MSP430i2031
    MSP430i2040
    MSP430i2041
    MSP430L092
    MSP430P112
    MSP430P313
    MSP430P315
    MSP430P315S
    MSP430P325
    MSP430P337
    MSP430SL5438A
    MSP430TCH5E
    RF430F5144
    RF430F5155
    RF430F5175
    RF430FRL152H
    RF430FRL153H
    RF430FRL154H

ISA family: MSP432
    com.ti.ccstudio.deviceModel.MSP432.CustomMSP432Device [Custom MSP432 Device]
    MSP432E401Y
    MSP432E411Y
    MSP432P4011
    MSP432P401M
    MSP432P401R
    MSP432P401V
    MSP432P401Y
    MSP432P4111
    MSP432P411V
    MSP432P411Y

ISA family: PRU
    TMS192C2026.66AK2G02 [66AK2G02]
    TMS192C2026.66AK2G12 [66AK2G12]
    TMS192C2026.AM1802 [AM1802]
    TMS192C2026.AM1806 [AM1806]
    TMS192C2026.AM1808 [AM1808]
    TMS192C2026.AM1810 [AM1810]
    TMS192C2026.AM2434_ALV [AM2434_ALV]
    TMS192C2026.AM2434_ALX [AM2434_ALX]
    TMS192C2026.AM2434_ALV.AM243x_GP_EVM [AM243x_GP_EVM]
    TMS192C2026.AM2434_ALX.AM243x_LAUNCHPAD [AM243x_LAUNCHPAD]
    TMS192C2026.AM2632 [AM2632]
    TMS192C2026.AM3356 [AM3356]
    TMS192C2026.AM3357 [AM3357]
    TMS192C2026.AM3358 [AM3358]
    TMS192C2026.AM3359 [AM3359]
    TMS192C2026.AM4376 [AM4376]
    TMS192C2026.AM4377 [AM4377]
    TMS192C2026.AM4378 [AM4378]
    TMS192C2026.AM4379 [AM4379]
    TMS192C2026.AM4388 [AM4388]
    TMS192C2026.AM5706 [AM5706]
    TMS192C2026.AM5708 [AM5708]
    TMS192C2026.AM5716 [AM5716]
    TMS192C2026.AM5718 [AM5718]
    TMS192C2026.AM5726 [AM5726]
    TMS192C2026.AM5726_RevA [AM5726_RevA]
    TMS192C2026.AM5728 [AM5728]
    TMS192C2026.AM5728_RevA [AM5728_RevA]
    TMS192C2026.AM5729 [AM5729]
    TMS192C2026.AM5746 [AM5746]
    TMS192C2026.AM5748 [AM5748]
    TMS192C2026.AM5749 [AM5749]
    TMS192C2026.AM5766 [AM5766]
    TMS192C2026.AM5768 [AM5768]
    TMS192C2026.AM64x [AM64x]
    TMS192C2026.AM64x.AM64x_GP_EVM [AM64x_GP_EVM]
    TMS192C2026.AM64x.AM64x_SK_EVM [AM64x_SK_EVM]
    TMS192C2026.AM6526 [AM6526]
    TMS192C2026.AM6526_RevA [AM6526_RevA]
    TMS192C2026.AM6527 [AM6527]
    TMS192C2026.AM6527_RevA [AM6527_RevA]
    TMS192C2026.AM6528 [AM6528]
    TMS192C2026.AM6528_RevA [AM6528_RevA]
    TMS192C2026.AM6546 [AM6546]
    TMS192C2026.AM6546_RevA [AM6546_RevA]
    TMS192C2026.AM6548 [AM6548]
    TMS192C2026.AM6548_RevA [AM6548_RevA]
    TMS192C2026.AMIC110 [AMIC110]
    TMS192C2026.AMIC120 [AMIC120]
    TMS192C2026.AM3359.BeagleBone [BeagleBone]
    TMS192C2026.AM3359.BeagleBone_Black [BeagleBone_Black]
    TMS192C2026.DRA71x [DRA71x]
    TMS192C2026.DRA79x [DRA79x]
    TMS192C2026.DRA80xM [DRA80xM]
    TMS192C2026.AM4388.EPOSAM438X [EPOSAM438X]
    TMS192C2026.J721E_DRA829_TDA4VM.EVM_J721E [EVM_J721E]
    TMS192C2026.AM1808.EVMAM1808 [EVMAM1808]
    TMS192C2026.AM3358.EVMAM3358 [EVMAM3358]
    TMS192C2026.AM4378.EVMAM437X [EVMAM437X]
    TMS192C2026.TMS320C6748.EVMC6748 [EVMC6748]
    TMS192C2026.OMAPL138.EVMOMAPL138 [EVMOMAPL138]
    TMS192C2026.OMAPL138.EXPKITOMAPL138 [EXPKITOMAPL138]
    TMS192C2026.AM5728.GPEVM_AM572X [GPEVM_AM572X]
    TMS192C2026.AM5728_RevA.GPEVM_AM572X_SiRevA [GPEVM_AM572X_SiRevA]
    TMS192C2026.AM6548.GPEVM_AM65x [GPEVM_AM65x]
    TMS192C2026.AM6548_RevA.GPEVM_AM65x_SiRevA [GPEVM_AM65x_SiRevA]
    TMS192C2026.AM3359.ICE_AM3359 [ICE_AM3359]
    TMS192C2026.AMIC110.ICE_AMIC110 [ICE_AMIC110]
    TMS192C2026.AM4379.IDK_AM437X [IDK_AM437X]
    TMS192C2026.AM5718.IDK_AM571X [IDK_AM571X]
    TMS192C2026.AM5728.IDK_AM572X [IDK_AM572X]
    TMS192C2026.AM5748.IDK_AM574X [IDK_AM574X]
    TMS192C2026.AM6548.IDK_AM65x [IDK_AM65x]
    TMS192C2026.AM6548_RevA.IDK_AM65x_SiRevA [IDK_AM65x_SiRevA]
    TMS192C2026.J721E_DRA829_TDA4VM [J721E_DRA829_TDA4VM]
    TMS192C2026.66AK2G02.K2GEVM [K2GEVM]
    TMS192C2026.66AK2G02.K2GICE [K2GICE]
    TMS192C2026.TMS320C6748.LCDKC6748 [LCDKC6748]
    TMS192C2026.OMAPL138.LCDKOMAPL138 [LCDKOMAPL138]
    TMS192C2026.OMAPL132 [OMAPL132]
    TMS192C2026.OMAPL138 [OMAPL138]
    TMS192C2026.AM3358.SK_AM3358 [SK_AM3358]
    TMS192C2026.AM4378.SK_AM437X [SK_AM437X]
    TMS192C2026.TMS320C6742 [TMS320C6742]
    TMS192C2026.TMS320C6746 [TMS320C6746]
    TMS192C2026.TMS320C6748 [TMS320C6748]