TM4C CPU Support Package Guide - studio.segger.com CPU Sup… · TM4C CPU Support Package Guide...

86
TM4C CPU Support Package Guide Version: 1.0 Copyright 2018 SEGGER Microcontroller GmbH & Co. KG

Transcript of TM4C CPU Support Package Guide - studio.segger.com CPU Sup… · TM4C CPU Support Package Guide...

TM4C CPU Support Package Guide

Version: 1.0

Copyright 2018 SEGGER Microcontroller GmbH & Co. KG

TM4C CPU Support Package Guide

2

TM4C CPU Support Package Guide Contents

3

ContentsTM4C Support Package ........................................................................................................................................................................... 7

Creating TM4C Projects ............................................................................................................................................................ 8

Opening TM4C Sample Solutions ...................................................................................................................................... 10

TM4C Project Properties ........................................................................................................................................................ 11

TM4C Project Templates ........................................................................................................................................................ 12

TM4C Devices .............................................................................................................................................................................. 13

TM4C123x Series Family .......................................................................................................................................... 14

TM4C1230C3PM ............................................................................................................................................ 16

TM4C1230D5PM ........................................................................................................................................... 17

TM4C1230E6PM ............................................................................................................................................ 18

TM4C1230H6PM ........................................................................................................................................... 19

TM4C1231C3PM ............................................................................................................................................ 20

TM4C1231D5PM ........................................................................................................................................... 21

TM4C1231D5PZ ............................................................................................................................................. 22

TM4C1231E6PM ............................................................................................................................................ 23

TM4C1231E6PZ .............................................................................................................................................. 24

TM4C1231H6PGE .......................................................................................................................................... 25

TM4C1231H6PM ........................................................................................................................................... 26

TM4C1231H6PZ ............................................................................................................................................. 27

TM4C1232C3PM ............................................................................................................................................ 28

TM4C1232D5PM ........................................................................................................................................... 29

TM4C1232E6PM ............................................................................................................................................ 30

TM4C1232H6PM ........................................................................................................................................... 31

TM4C CPU Support Package Guide Contents

4

TM4C1233C3PM ............................................................................................................................................ 32

TM4C1233D5PM ........................................................................................................................................... 33

TM4C1233D5PZ ............................................................................................................................................. 34

TM4C1233E6PM ............................................................................................................................................ 35

TM4C1233E6PZ .............................................................................................................................................. 36

TM4C1233H6PGE .......................................................................................................................................... 37

TM4C1233H6PM ........................................................................................................................................... 38

TM4C1233H6PZ ............................................................................................................................................. 39

TM4C1236D5PM ........................................................................................................................................... 40

TM4C1236E6PM ............................................................................................................................................ 41

TM4C1236H6PM ........................................................................................................................................... 42

TM4C1237D5PM ........................................................................................................................................... 43

TM4C1237D5PZ ............................................................................................................................................. 44

TM4C1237E6PM ............................................................................................................................................ 45

TM4C1237E6PZ .............................................................................................................................................. 46

TM4C1237H6PGE .......................................................................................................................................... 47

TM4C1237H6PM ........................................................................................................................................... 48

TM4C1237H6PZ ............................................................................................................................................. 49

TM4C123AE6PM ............................................................................................................................................ 50

TM4C123AH6PM ........................................................................................................................................... 51

TM4C123BE6PM ............................................................................................................................................ 52

TM4C123BE6PZ ............................................................................................................................................. 53

TM4C123BH6PGE .......................................................................................................................................... 54

TM4C123BH6PM ........................................................................................................................................... 55

TM4C123BH6PZ ............................................................................................................................................. 56

TM4C123BH6ZRB .......................................................................................................................................... 57

TM4C123FE6PM ............................................................................................................................................ 58

TM4C123FH6PM ............................................................................................................................................ 59

TM4C123GE6PM ............................................................................................................................................ 60

TM4C123GE6PZ ............................................................................................................................................. 61

TM4C123GH6PGE ......................................................................................................................................... 62

TM4C123GH6PM ........................................................................................................................................... 63

TM4C123GH6PZ ............................................................................................................................................ 64

TM4C123GH6ZRB ......................................................................................................................................... 65

TM4C129x Series Family .......................................................................................................................................... 66

TM4C1290NCPDT ......................................................................................................................................... 67

TM4C1290NCZAD ......................................................................................................................................... 68

TM4C1292NCPDT ......................................................................................................................................... 69

TM4C1292NCZAD ......................................................................................................................................... 70

TM4C1294KCPDT .......................................................................................................................................... 71

TM4C1294NCPDT ......................................................................................................................................... 72

TM4C CPU Support Package Guide Contents

5

TM4C1294NCZAD ......................................................................................................................................... 73

TM4C1297NCZAD ......................................................................................................................................... 74

TM4C1299KCZAD ......................................................................................................................................... 75

TM4C1299NCZAD ......................................................................................................................................... 76

TM4C129CNCPDT ......................................................................................................................................... 77

TM4C129CNCZAD ......................................................................................................................................... 78

TM4C129DNCPDT ......................................................................................................................................... 79

TM4C129DNCZAD ........................................................................................................................................ 80

TM4C129EKCPDT .......................................................................................................................................... 81

TM4C129ENCPDT ......................................................................................................................................... 82

TM4C129ENCZAD ......................................................................................................................................... 83

TM4C129LNCZAD ......................................................................................................................................... 84

TM4C129XKCZAD ......................................................................................................................................... 85

TM4C129XNCZAD ......................................................................................................................................... 86

TM4C CPU Support Package Guide Contents

6

TM4C CPU Support Package Guide TM4C Support Package

7

TM4C Support PackageThis guide describes the following features of the TM4C CPU support package:

How to create TM4C projects

How to open TM4C sample projects

TM4C specific project properties

TM4C specific project templates

Supported TM4C devices

TM4C CPU Support Package Guide TM4C Support Package

8

Creating TM4C Projects

Creating an TM4C C/C++ executable project

To create a new minimal C/C++ executable project:

Select the File > New > New Project menu item.

Select the A C/C++ executable for Texas Instruments TM4C project template.

Set the required project name and location directory.

Click Next.

If required, change any of the default project settings.

Click Finish to create the project.

Creating an TM4C library project

To create a new library project:

Select the File > New > New Project menu item.

Select the A library for Texas Instruments TM4C project template.

Set the required project name and location directory.

Click Next.

If required, change any of the default project settings.

Click Finish to create the project.

Creating an TM4C externally built executable project

To create a new project that will allow you to debug an existing externally built executable file:

Select the File > New > New Project menu item.

Select the An externally built executable for Texas Instruments TM4C project template.

Set the required project name and location directory.

Click Next.

Set the Load File project property to point to the executable file you want to download and debug.

If required, change any of the other default project settings.

Click Finish to create the project.

Creating an TM4C assembly code only executable project

Please note, this template does not add any C/C++ startup code or libraries and is therefore not suitable for creating

projects that include C/C++ code.

To create a new assembly code only executable project without:

Select the File > New > New Project menu item.

Select the An assembly code only executable for Texas Instruments TM4C project template.

Set the required project name and location directory.

Click Next.

TM4C CPU Support Package Guide TM4C Support Package

9

If required, change any of the other default project settings.

Click Finish to create the project.

TM4C CPU Support Package Guide TM4C Support Package

10

Opening TM4C Sample Solutions

TM4C Samples Solution

This solution contains general sample projects that run on TM4C devices. To open the TM4C Samples Solution:

Select the Tools > Show Installed Packages menu item.

Select the Texas Instruments TM4C CPU Support Package link.

Select the Samples Solutions > TM4C Samples Solution link.

TM4C CMSIS-DSP Samples Solution

This solution contains sample projects that use the CMSIS-DSP library running on TM4C devices. To open the

TM4C CMSIS-DSP Samples Solution:

Select the Tools > Show Installed Packages menu item.

Select the Texas Instruments TM4C CPU Support Package link.

Select the Sample Solutions > TM4C CMSIS-DSP Samples Solution link.

TM4C CPU Support Package Guide TM4C Support Package

11

TM4C Project PropertiesProjects creating using the project templates in this support package have the following device specific project

properties:

Heap Size

The heap size is set to be 256 bytes when a project is created. The heap size can be modified using the Heap Size

project property.

Section Placement

You can select the memory configuration you require using the Section Placement project property.

For TM4C projects, the set of placements are:

Flash - The application runs in internal Flash memory (default).

Flash Vectors In RAM - The application runs in internal Flash memory and exception vectors are copied to

RAM memory.

Flash Copy To RAM - The application starts in internal flash and copies itself to run internal RAM memory.

RAM - The application runs internal RAM memory.

Stack Sizes

The main stack size is set to be 256 bytes when a project is created.

The process stack size is set to be 0 bytes when a project is created.

The main and process stack sizes can be modified using the Main Stack Size and Process Stack Size project

properties.

To change the location of the stacks, edit the section placement file and place the .stack and .stack_process

sections as required.

Target Processor

Once a project has been created you can target different devices by modifying the Target Processor project

property. See the TM4C Devices section for details on the files, preprocessor definitions and macro definitions

used when a device is selected.

TM4C CPU Support Package Guide TM4C Support Package

12

TM4C Project TemplatesThe project template system simplifies the creation of new projects with the IDE, it also system makes it easy to

create new projects with a text editor or script. All that needs to be specified is the project name, the support

packages that the project is dependent on, the target processor and the source files you want to add to the

project. For example, create a file called example.emProject with the following contents:

<!DOCTYPE CrossStudio_Project_File><solution Name="Example Solution"> <project Name="Example Project" template_name="TM4C_EXE"> <configuration Name="Common" package_dependencies="TM4C" Target="TM4C1290NCPDT" /> <folder Name="Source Files"> <file file_name="file1.c" /> <file file_name="file2.c" /> </folder> </project></solution>

You can also add any other property settings that the project requires such as preprocessor definitions or

include paths using the property save name, for example:

<!DOCTYPE CrossStudio_Project_File><solution Name="Example Solution"> <project Name="Example Project" template_name="TM4C_EXE"> <configuration Name="Common" package_dependencies="TM4C" Target="TM4C1290NCPDT" c_preprocessor_definitions="MYDEF1=1;MYDEF2=TWO" c_user_include_directories="$(ProjectDir)/include1;$(ProjectDir)/include2" /> <folder Name="Source Files"> <file file_name="file1.c" /> <file file_name="file2.c" /> </folder> </project></solution>

Available TM4C project templates

Template Name Template Description

TM4C_ASM_EXE TM4C Assembly Code Only Executable

TM4C_EXE TM4C C/C++ Executable

TM4C_EXT_EXE TM4C Externally Built Executable

TM4C_LIB TM4C Library

TM4C CPU Support Package Guide TM4C Support Package

13

TM4C DevicesThis package supports the following TM4C devices:

TM4C123x Series Family

TM4C129x Series Family

TM4C CPU Support Package Guide TM4C Support Package

14

TM4C123x Series FamilyTM4C1230C3PM

TM4C1230D5PM

TM4C1230E6PM

TM4C1230H6PM

TM4C1231C3PM

TM4C1231D5PM

TM4C1231D5PZ

TM4C1231E6PM

TM4C1231E6PZ

TM4C1231H6PGE

TM4C1231H6PM

TM4C1231H6PZ

TM4C1232C3PM

TM4C1232D5PM

TM4C1232E6PM

TM4C1232H6PM

TM4C1233C3PM

TM4C1233D5PM

TM4C1233D5PZ

TM4C1233E6PM

TM4C1233E6PZ

TM4C1233H6PGE

TM4C1233H6PM

TM4C1233H6PZ

TM4C1236D5PM

TM4C1236E6PM

TM4C1236H6PM

TM4C1237D5PM

TM4C1237D5PZ

TM4C1237E6PM

TM4C1237E6PZ

TM4C1237H6PGE

TM4C1237H6PM

TM4C1237H6PZ

TM4C123AE6PM

TM4C123AH6PM

TM4C123BE6PM

TM4C123BE6PZ

TM4C CPU Support Package Guide TM4C Support Package

15

TM4C123BH6PGE

TM4C123BH6PM

TM4C123BH6PZ

TM4C123BH6ZRB

TM4C123FE6PM

TM4C123FH6PM

TM4C123GE6PM

TM4C123GE6PZ

TM4C123GH6PGE

TM4C123GH6PM

TM4C123GH6PZ

TM4C123GH6ZRB

TM4C CPU Support Package Guide TM4C Support Package

16

TM4C1230C3PMDevice Details

CMSIS Header File$(PackagesDir)/TM4C/CMSIS/Device/Include/TM4C123/TM4C123.h

CMSIS Include Path $(PackagesDir)/TM4C/CMSIS/Device/Include

CMSIS System File$(PackagesDir)/TM4C/CMSIS/Device/Source/system_TM4C123.c

Family TM4C

Sub Family TM4C123x Series

Memory Map File$(PackagesDir)/TM4C/XML/TM4C1230C3PM_MemoryMap.xml

Register Definition File$(PackagesDir)/TM4C/XML/TM4C1230C3PM_Registers.xml

Vectors File$(PackagesDir)/TM4C/Source/TM4C1230C3PM_Vectors.s

Preprocessor Definitions

ARM_MATH_CM4

TM4C1230C3PM

__TM4C123x_Series_SUBFAMILY

__TM4C_FAMILY

Memory Segments

FLASH 0x00000000 - 0x00007FFF

RAM 0x20000000 - 0x20002FFF

Project Macros

DeviceHeaderFile=$(PackagesDir)/TM4C/CMSIS/Device/Include/TM4C123/TM4C123.h

DeviceLibraryIdentifier=M4lf

DeviceSystemFile=$(PackagesDir)/TM4C/CMSIS/Device/Source/system_TM4C123.c

DeviceVectorsFile=$(PackagesDir)/TM4C/Source/TM4C1230C3PM_Vectors.s

DeviceFamily=TM4C

DeviceSubFamily=TM4C123x Series

TM4C CPU Support Package Guide TM4C Support Package

17

TM4C1230D5PMDevice Details

CMSIS Header File$(PackagesDir)/TM4C/CMSIS/Device/Include/TM4C123/TM4C123.h

CMSIS Include Path $(PackagesDir)/TM4C/CMSIS/Device/Include

CMSIS System File$(PackagesDir)/TM4C/CMSIS/Device/Source/system_TM4C123.c

Family TM4C

Sub Family TM4C123x Series

Memory Map File$(PackagesDir)/TM4C/XML/TM4C1230D5PM_MemoryMap.xml

Register Definition File$(PackagesDir)/TM4C/XML/TM4C1230D5PM_Registers.xml

Vectors File$(PackagesDir)/TM4C/Source/TM4C1230D5PM_Vectors.s

Preprocessor Definitions

ARM_MATH_CM4

TM4C1230D5PM

__TM4C123x_Series_SUBFAMILY

__TM4C_FAMILY

Memory Segments

FLASH 0x00000000 - 0x0000FFFF

RAM 0x20000000 - 0x20005FFF

Project Macros

DeviceHeaderFile=$(PackagesDir)/TM4C/CMSIS/Device/Include/TM4C123/TM4C123.h

DeviceLibraryIdentifier=M4lf

DeviceSystemFile=$(PackagesDir)/TM4C/CMSIS/Device/Source/system_TM4C123.c

DeviceVectorsFile=$(PackagesDir)/TM4C/Source/TM4C1230D5PM_Vectors.s

DeviceFamily=TM4C

DeviceSubFamily=TM4C123x Series

TM4C CPU Support Package Guide TM4C Support Package

18

TM4C1230E6PMDevice Details

CMSIS Header File$(PackagesDir)/TM4C/CMSIS/Device/Include/TM4C123/TM4C123.h

CMSIS Include Path $(PackagesDir)/TM4C/CMSIS/Device/Include

CMSIS System File$(PackagesDir)/TM4C/CMSIS/Device/Source/system_TM4C123.c

Family TM4C

Sub Family TM4C123x Series

Memory Map File$(PackagesDir)/TM4C/XML/TM4C1230E6PM_MemoryMap.xml

Register Definition File$(PackagesDir)/TM4C/XML/TM4C1230E6PM_Registers.xml

Vectors File$(PackagesDir)/TM4C/Source/TM4C1230E6PM_Vectors.s

Preprocessor Definitions

ARM_MATH_CM4

TM4C1230E6PM

__TM4C123x_Series_SUBFAMILY

__TM4C_FAMILY

Memory Segments

FLASH 0x00000000 - 0x0001FFFF

RAM 0x20000000 - 0x20007FFF

Project Macros

DeviceHeaderFile=$(PackagesDir)/TM4C/CMSIS/Device/Include/TM4C123/TM4C123.h

DeviceLibraryIdentifier=M4lf

DeviceSystemFile=$(PackagesDir)/TM4C/CMSIS/Device/Source/system_TM4C123.c

DeviceVectorsFile=$(PackagesDir)/TM4C/Source/TM4C1230E6PM_Vectors.s

DeviceFamily=TM4C

DeviceSubFamily=TM4C123x Series

TM4C CPU Support Package Guide TM4C Support Package

19

TM4C1230H6PMDevice Details

CMSIS Header File$(PackagesDir)/TM4C/CMSIS/Device/Include/TM4C123/TM4C123.h

CMSIS Include Path $(PackagesDir)/TM4C/CMSIS/Device/Include

CMSIS System File$(PackagesDir)/TM4C/CMSIS/Device/Source/system_TM4C123.c

Family TM4C

Sub Family TM4C123x Series

Memory Map File$(PackagesDir)/TM4C/XML/TM4C1230H6PM_MemoryMap.xml

Register Definition File$(PackagesDir)/TM4C/XML/TM4C1230H6PM_Registers.xml

Vectors File$(PackagesDir)/TM4C/Source/TM4C1230H6PM_Vectors.s

Preprocessor Definitions

ARM_MATH_CM4

TM4C1230H6PM

__TM4C123x_Series_SUBFAMILY

__TM4C_FAMILY

Memory Segments

FLASH 0x00000000 - 0x0003FFFF

RAM 0x20000000 - 0x20007FFF

Project Macros

DeviceHeaderFile=$(PackagesDir)/TM4C/CMSIS/Device/Include/TM4C123/TM4C123.h

DeviceLibraryIdentifier=M4lf

DeviceSystemFile=$(PackagesDir)/TM4C/CMSIS/Device/Source/system_TM4C123.c

DeviceVectorsFile=$(PackagesDir)/TM4C/Source/TM4C1230H6PM_Vectors.s

DeviceFamily=TM4C

DeviceSubFamily=TM4C123x Series

TM4C CPU Support Package Guide TM4C Support Package

20

TM4C1231C3PMDevice Details

CMSIS Header File$(PackagesDir)/TM4C/CMSIS/Device/Include/TM4C123/TM4C123.h

CMSIS Include Path $(PackagesDir)/TM4C/CMSIS/Device/Include

CMSIS System File$(PackagesDir)/TM4C/CMSIS/Device/Source/system_TM4C123.c

Family TM4C

Sub Family TM4C123x Series

Memory Map File$(PackagesDir)/TM4C/XML/TM4C1231C3PM_MemoryMap.xml

Register Definition File$(PackagesDir)/TM4C/XML/TM4C1231C3PM_Registers.xml

Vectors File$(PackagesDir)/TM4C/Source/TM4C1231C3PM_Vectors.s

Preprocessor Definitions

ARM_MATH_CM4

TM4C1231C3PM

__TM4C123x_Series_SUBFAMILY

__TM4C_FAMILY

Memory Segments

FLASH 0x00000000 - 0x00007FFF

RAM 0x20000000 - 0x20002FFF

Project Macros

DeviceHeaderFile=$(PackagesDir)/TM4C/CMSIS/Device/Include/TM4C123/TM4C123.h

DeviceLibraryIdentifier=M4lf

DeviceSystemFile=$(PackagesDir)/TM4C/CMSIS/Device/Source/system_TM4C123.c

DeviceVectorsFile=$(PackagesDir)/TM4C/Source/TM4C1231C3PM_Vectors.s

DeviceFamily=TM4C

DeviceSubFamily=TM4C123x Series

TM4C CPU Support Package Guide TM4C Support Package

21

TM4C1231D5PMDevice Details

CMSIS Header File$(PackagesDir)/TM4C/CMSIS/Device/Include/TM4C123/TM4C123.h

CMSIS Include Path $(PackagesDir)/TM4C/CMSIS/Device/Include

CMSIS System File$(PackagesDir)/TM4C/CMSIS/Device/Source/system_TM4C123.c

Family TM4C

Sub Family TM4C123x Series

Memory Map File$(PackagesDir)/TM4C/XML/TM4C1231D5PM_MemoryMap.xml

Register Definition File$(PackagesDir)/TM4C/XML/TM4C1231D5PM_Registers.xml

Vectors File$(PackagesDir)/TM4C/Source/TM4C1231D5PM_Vectors.s

Preprocessor Definitions

ARM_MATH_CM4

TM4C1231D5PM

__TM4C123x_Series_SUBFAMILY

__TM4C_FAMILY

Memory Segments

FLASH 0x00000000 - 0x0000FFFF

RAM 0x20000000 - 0x20005FFF

Project Macros

DeviceHeaderFile=$(PackagesDir)/TM4C/CMSIS/Device/Include/TM4C123/TM4C123.h

DeviceLibraryIdentifier=M4lf

DeviceSystemFile=$(PackagesDir)/TM4C/CMSIS/Device/Source/system_TM4C123.c

DeviceVectorsFile=$(PackagesDir)/TM4C/Source/TM4C1231D5PM_Vectors.s

DeviceFamily=TM4C

DeviceSubFamily=TM4C123x Series

TM4C CPU Support Package Guide TM4C Support Package

22

TM4C1231D5PZDevice Details

CMSIS Header File$(PackagesDir)/TM4C/CMSIS/Device/Include/TM4C123/TM4C123.h

CMSIS Include Path $(PackagesDir)/TM4C/CMSIS/Device/Include

CMSIS System File$(PackagesDir)/TM4C/CMSIS/Device/Source/system_TM4C123.c

Family TM4C

Sub Family TM4C123x Series

Memory Map File$(PackagesDir)/TM4C/XML/TM4C1231D5PZ_MemoryMap.xml

Register Definition File$(PackagesDir)/TM4C/XML/TM4C1231D5PZ_Registers.xml

Vectors File$(PackagesDir)/TM4C/Source/TM4C1231D5PZ_Vectors.s

Preprocessor Definitions

ARM_MATH_CM4

TM4C1231D5PZ

__TM4C123x_Series_SUBFAMILY

__TM4C_FAMILY

Memory Segments

FLASH 0x00000000 - 0x0000FFFF

RAM 0x20000000 - 0x20005FFF

Project Macros

DeviceHeaderFile=$(PackagesDir)/TM4C/CMSIS/Device/Include/TM4C123/TM4C123.h

DeviceLibraryIdentifier=M4lf

DeviceSystemFile=$(PackagesDir)/TM4C/CMSIS/Device/Source/system_TM4C123.c

DeviceVectorsFile=$(PackagesDir)/TM4C/Source/TM4C1231D5PZ_Vectors.s

DeviceFamily=TM4C

DeviceSubFamily=TM4C123x Series

TM4C CPU Support Package Guide TM4C Support Package

23

TM4C1231E6PMDevice Details

CMSIS Header File$(PackagesDir)/TM4C/CMSIS/Device/Include/TM4C123/TM4C123.h

CMSIS Include Path $(PackagesDir)/TM4C/CMSIS/Device/Include

CMSIS System File$(PackagesDir)/TM4C/CMSIS/Device/Source/system_TM4C123.c

Family TM4C

Sub Family TM4C123x Series

Memory Map File$(PackagesDir)/TM4C/XML/TM4C1231E6PM_MemoryMap.xml

Register Definition File$(PackagesDir)/TM4C/XML/TM4C1231E6PM_Registers.xml

Vectors File$(PackagesDir)/TM4C/Source/TM4C1231E6PM_Vectors.s

Preprocessor Definitions

ARM_MATH_CM4

TM4C1231E6PM

__TM4C123x_Series_SUBFAMILY

__TM4C_FAMILY

Memory Segments

FLASH 0x00000000 - 0x0001FFFF

RAM 0x20000000 - 0x20007FFF

Project Macros

DeviceHeaderFile=$(PackagesDir)/TM4C/CMSIS/Device/Include/TM4C123/TM4C123.h

DeviceLibraryIdentifier=M4lf

DeviceSystemFile=$(PackagesDir)/TM4C/CMSIS/Device/Source/system_TM4C123.c

DeviceVectorsFile=$(PackagesDir)/TM4C/Source/TM4C1231E6PM_Vectors.s

DeviceFamily=TM4C

DeviceSubFamily=TM4C123x Series

TM4C CPU Support Package Guide TM4C Support Package

24

TM4C1231E6PZDevice Details

CMSIS Header File$(PackagesDir)/TM4C/CMSIS/Device/Include/TM4C123/TM4C123.h

CMSIS Include Path $(PackagesDir)/TM4C/CMSIS/Device/Include

CMSIS System File$(PackagesDir)/TM4C/CMSIS/Device/Source/system_TM4C123.c

Family TM4C

Sub Family TM4C123x Series

Memory Map File$(PackagesDir)/TM4C/XML/TM4C1231E6PZ_MemoryMap.xml

Register Definition File$(PackagesDir)/TM4C/XML/TM4C1231E6PZ_Registers.xml

Vectors File$(PackagesDir)/TM4C/Source/TM4C1231E6PZ_Vectors.s

Preprocessor Definitions

ARM_MATH_CM4

TM4C1231E6PZ

__TM4C123x_Series_SUBFAMILY

__TM4C_FAMILY

Memory Segments

FLASH 0x00000000 - 0x0001FFFF

RAM 0x20000000 - 0x20007FFF

Project Macros

DeviceHeaderFile=$(PackagesDir)/TM4C/CMSIS/Device/Include/TM4C123/TM4C123.h

DeviceLibraryIdentifier=M4lf

DeviceSystemFile=$(PackagesDir)/TM4C/CMSIS/Device/Source/system_TM4C123.c

DeviceVectorsFile=$(PackagesDir)/TM4C/Source/TM4C1231E6PZ_Vectors.s

DeviceFamily=TM4C

DeviceSubFamily=TM4C123x Series

TM4C CPU Support Package Guide TM4C Support Package

25

TM4C1231H6PGEDevice Details

CMSIS Header File$(PackagesDir)/TM4C/CMSIS/Device/Include/TM4C123/TM4C123.h

CMSIS Include Path $(PackagesDir)/TM4C/CMSIS/Device/Include

CMSIS System File$(PackagesDir)/TM4C/CMSIS/Device/Source/system_TM4C123.c

Family TM4C

Sub Family TM4C123x Series

Memory Map File$(PackagesDir)/TM4C/XML/TM4C1231H6PGE_MemoryMap.xml

Register Definition File$(PackagesDir)/TM4C/XML/TM4C1231H6PGE_Registers.xml

Vectors File$(PackagesDir)/TM4C/Source/TM4C1231H6PGE_Vectors.s

Preprocessor Definitions

ARM_MATH_CM4

TM4C1231H6PGE

__TM4C123x_Series_SUBFAMILY

__TM4C_FAMILY

Memory Segments

FLASH 0x00000000 - 0x0003FFFF

RAM 0x20000000 - 0x20007FFF

Project Macros

DeviceHeaderFile=$(PackagesDir)/TM4C/CMSIS/Device/Include/TM4C123/TM4C123.h

DeviceLibraryIdentifier=M4lf

DeviceSystemFile=$(PackagesDir)/TM4C/CMSIS/Device/Source/system_TM4C123.c

DeviceVectorsFile=$(PackagesDir)/TM4C/Source/TM4C1231H6PGE_Vectors.s

DeviceFamily=TM4C

DeviceSubFamily=TM4C123x Series

TM4C CPU Support Package Guide TM4C Support Package

26

TM4C1231H6PMDevice Details

CMSIS Header File$(PackagesDir)/TM4C/CMSIS/Device/Include/TM4C123/TM4C123.h

CMSIS Include Path $(PackagesDir)/TM4C/CMSIS/Device/Include

CMSIS System File$(PackagesDir)/TM4C/CMSIS/Device/Source/system_TM4C123.c

Family TM4C

Sub Family TM4C123x Series

Memory Map File$(PackagesDir)/TM4C/XML/TM4C1231H6PM_MemoryMap.xml

Register Definition File$(PackagesDir)/TM4C/XML/TM4C1231H6PM_Registers.xml

Vectors File$(PackagesDir)/TM4C/Source/TM4C1231H6PM_Vectors.s

Preprocessor Definitions

ARM_MATH_CM4

TM4C1231H6PM

__TM4C123x_Series_SUBFAMILY

__TM4C_FAMILY

Memory Segments

FLASH 0x00000000 - 0x0003FFFF

RAM 0x20000000 - 0x20007FFF

Project Macros

DeviceHeaderFile=$(PackagesDir)/TM4C/CMSIS/Device/Include/TM4C123/TM4C123.h

DeviceLibraryIdentifier=M4lf

DeviceSystemFile=$(PackagesDir)/TM4C/CMSIS/Device/Source/system_TM4C123.c

DeviceVectorsFile=$(PackagesDir)/TM4C/Source/TM4C1231H6PM_Vectors.s

DeviceFamily=TM4C

DeviceSubFamily=TM4C123x Series

TM4C CPU Support Package Guide TM4C Support Package

27

TM4C1231H6PZDevice Details

CMSIS Header File$(PackagesDir)/TM4C/CMSIS/Device/Include/TM4C123/TM4C123.h

CMSIS Include Path $(PackagesDir)/TM4C/CMSIS/Device/Include

CMSIS System File$(PackagesDir)/TM4C/CMSIS/Device/Source/system_TM4C123.c

Family TM4C

Sub Family TM4C123x Series

Memory Map File$(PackagesDir)/TM4C/XML/TM4C1231H6PZ_MemoryMap.xml

Register Definition File$(PackagesDir)/TM4C/XML/TM4C1231H6PZ_Registers.xml

Vectors File$(PackagesDir)/TM4C/Source/TM4C1231H6PZ_Vectors.s

Preprocessor Definitions

ARM_MATH_CM4

TM4C1231H6PZ

__TM4C123x_Series_SUBFAMILY

__TM4C_FAMILY

Memory Segments

FLASH 0x00000000 - 0x0003FFFF

RAM 0x20000000 - 0x20007FFF

Project Macros

DeviceHeaderFile=$(PackagesDir)/TM4C/CMSIS/Device/Include/TM4C123/TM4C123.h

DeviceLibraryIdentifier=M4lf

DeviceSystemFile=$(PackagesDir)/TM4C/CMSIS/Device/Source/system_TM4C123.c

DeviceVectorsFile=$(PackagesDir)/TM4C/Source/TM4C1231H6PZ_Vectors.s

DeviceFamily=TM4C

DeviceSubFamily=TM4C123x Series

TM4C CPU Support Package Guide TM4C Support Package

28

TM4C1232C3PMDevice Details

CMSIS Header File$(PackagesDir)/TM4C/CMSIS/Device/Include/TM4C123/TM4C123.h

CMSIS Include Path $(PackagesDir)/TM4C/CMSIS/Device/Include

CMSIS System File$(PackagesDir)/TM4C/CMSIS/Device/Source/system_TM4C123.c

Family TM4C

Sub Family TM4C123x Series

Memory Map File$(PackagesDir)/TM4C/XML/TM4C1232C3PM_MemoryMap.xml

Register Definition File$(PackagesDir)/TM4C/XML/TM4C1232C3PM_Registers.xml

Vectors File$(PackagesDir)/TM4C/Source/TM4C1232C3PM_Vectors.s

Preprocessor Definitions

ARM_MATH_CM4

TM4C1232C3PM

__TM4C123x_Series_SUBFAMILY

__TM4C_FAMILY

Memory Segments

FLASH 0x00000000 - 0x00007FFF

RAM 0x20000000 - 0x20002FFF

Project Macros

DeviceHeaderFile=$(PackagesDir)/TM4C/CMSIS/Device/Include/TM4C123/TM4C123.h

DeviceLibraryIdentifier=M4lf

DeviceSystemFile=$(PackagesDir)/TM4C/CMSIS/Device/Source/system_TM4C123.c

DeviceVectorsFile=$(PackagesDir)/TM4C/Source/TM4C1232C3PM_Vectors.s

DeviceFamily=TM4C

DeviceSubFamily=TM4C123x Series

TM4C CPU Support Package Guide TM4C Support Package

29

TM4C1232D5PMDevice Details

CMSIS Header File$(PackagesDir)/TM4C/CMSIS/Device/Include/TM4C123/TM4C123.h

CMSIS Include Path $(PackagesDir)/TM4C/CMSIS/Device/Include

CMSIS System File$(PackagesDir)/TM4C/CMSIS/Device/Source/system_TM4C123.c

Family TM4C

Sub Family TM4C123x Series

Memory Map File$(PackagesDir)/TM4C/XML/TM4C1232D5PM_MemoryMap.xml

Register Definition File$(PackagesDir)/TM4C/XML/TM4C1232D5PM_Registers.xml

Vectors File$(PackagesDir)/TM4C/Source/TM4C1232D5PM_Vectors.s

Preprocessor Definitions

ARM_MATH_CM4

TM4C1232D5PM

__TM4C123x_Series_SUBFAMILY

__TM4C_FAMILY

Memory Segments

FLASH 0x00000000 - 0x0000FFFF

RAM 0x20000000 - 0x20005FFF

Project Macros

DeviceHeaderFile=$(PackagesDir)/TM4C/CMSIS/Device/Include/TM4C123/TM4C123.h

DeviceLibraryIdentifier=M4lf

DeviceSystemFile=$(PackagesDir)/TM4C/CMSIS/Device/Source/system_TM4C123.c

DeviceVectorsFile=$(PackagesDir)/TM4C/Source/TM4C1232D5PM_Vectors.s

DeviceFamily=TM4C

DeviceSubFamily=TM4C123x Series

TM4C CPU Support Package Guide TM4C Support Package

30

TM4C1232E6PMDevice Details

CMSIS Header File$(PackagesDir)/TM4C/CMSIS/Device/Include/TM4C123/TM4C123.h

CMSIS Include Path $(PackagesDir)/TM4C/CMSIS/Device/Include

CMSIS System File$(PackagesDir)/TM4C/CMSIS/Device/Source/system_TM4C123.c

Family TM4C

Sub Family TM4C123x Series

Memory Map File$(PackagesDir)/TM4C/XML/TM4C1232E6PM_MemoryMap.xml

Register Definition File$(PackagesDir)/TM4C/XML/TM4C1232E6PM_Registers.xml

Vectors File$(PackagesDir)/TM4C/Source/TM4C1232E6PM_Vectors.s

Preprocessor Definitions

ARM_MATH_CM4

TM4C1232E6PM

__TM4C123x_Series_SUBFAMILY

__TM4C_FAMILY

Memory Segments

FLASH 0x00000000 - 0x0001FFFF

RAM 0x20000000 - 0x20007FFF

Project Macros

DeviceHeaderFile=$(PackagesDir)/TM4C/CMSIS/Device/Include/TM4C123/TM4C123.h

DeviceLibraryIdentifier=M4lf

DeviceSystemFile=$(PackagesDir)/TM4C/CMSIS/Device/Source/system_TM4C123.c

DeviceVectorsFile=$(PackagesDir)/TM4C/Source/TM4C1232E6PM_Vectors.s

DeviceFamily=TM4C

DeviceSubFamily=TM4C123x Series

TM4C CPU Support Package Guide TM4C Support Package

31

TM4C1232H6PMDevice Details

CMSIS Header File$(PackagesDir)/TM4C/CMSIS/Device/Include/TM4C123/TM4C123.h

CMSIS Include Path $(PackagesDir)/TM4C/CMSIS/Device/Include

CMSIS System File$(PackagesDir)/TM4C/CMSIS/Device/Source/system_TM4C123.c

Family TM4C

Sub Family TM4C123x Series

Memory Map File$(PackagesDir)/TM4C/XML/TM4C1232H6PM_MemoryMap.xml

Register Definition File$(PackagesDir)/TM4C/XML/TM4C1232H6PM_Registers.xml

Vectors File$(PackagesDir)/TM4C/Source/TM4C1232H6PM_Vectors.s

Preprocessor Definitions

ARM_MATH_CM4

TM4C1232H6PM

__TM4C123x_Series_SUBFAMILY

__TM4C_FAMILY

Memory Segments

FLASH 0x00000000 - 0x0003FFFF

RAM 0x20000000 - 0x20007FFF

Project Macros

DeviceHeaderFile=$(PackagesDir)/TM4C/CMSIS/Device/Include/TM4C123/TM4C123.h

DeviceLibraryIdentifier=M4lf

DeviceSystemFile=$(PackagesDir)/TM4C/CMSIS/Device/Source/system_TM4C123.c

DeviceVectorsFile=$(PackagesDir)/TM4C/Source/TM4C1232H6PM_Vectors.s

DeviceFamily=TM4C

DeviceSubFamily=TM4C123x Series

TM4C CPU Support Package Guide TM4C Support Package

32

TM4C1233C3PMDevice Details

CMSIS Header File$(PackagesDir)/TM4C/CMSIS/Device/Include/TM4C123/TM4C123.h

CMSIS Include Path $(PackagesDir)/TM4C/CMSIS/Device/Include

CMSIS System File$(PackagesDir)/TM4C/CMSIS/Device/Source/system_TM4C123.c

Family TM4C

Sub Family TM4C123x Series

Memory Map File$(PackagesDir)/TM4C/XML/TM4C1233C3PM_MemoryMap.xml

Register Definition File$(PackagesDir)/TM4C/XML/TM4C1233C3PM_Registers.xml

Vectors File$(PackagesDir)/TM4C/Source/TM4C1233C3PM_Vectors.s

Preprocessor Definitions

ARM_MATH_CM4

TM4C1233C3PM

__TM4C123x_Series_SUBFAMILY

__TM4C_FAMILY

Memory Segments

FLASH 0x00000000 - 0x00007FFF

RAM 0x20000000 - 0x20002FFF

Project Macros

DeviceHeaderFile=$(PackagesDir)/TM4C/CMSIS/Device/Include/TM4C123/TM4C123.h

DeviceLibraryIdentifier=M4lf

DeviceSystemFile=$(PackagesDir)/TM4C/CMSIS/Device/Source/system_TM4C123.c

DeviceVectorsFile=$(PackagesDir)/TM4C/Source/TM4C1233C3PM_Vectors.s

DeviceFamily=TM4C

DeviceSubFamily=TM4C123x Series

TM4C CPU Support Package Guide TM4C Support Package

33

TM4C1233D5PMDevice Details

CMSIS Header File$(PackagesDir)/TM4C/CMSIS/Device/Include/TM4C123/TM4C123.h

CMSIS Include Path $(PackagesDir)/TM4C/CMSIS/Device/Include

CMSIS System File$(PackagesDir)/TM4C/CMSIS/Device/Source/system_TM4C123.c

Family TM4C

Sub Family TM4C123x Series

Memory Map File$(PackagesDir)/TM4C/XML/TM4C1233D5PM_MemoryMap.xml

Register Definition File$(PackagesDir)/TM4C/XML/TM4C1233D5PM_Registers.xml

Vectors File$(PackagesDir)/TM4C/Source/TM4C1233D5PM_Vectors.s

Preprocessor Definitions

ARM_MATH_CM4

TM4C1233D5PM

__TM4C123x_Series_SUBFAMILY

__TM4C_FAMILY

Memory Segments

FLASH 0x00000000 - 0x0000FFFF

RAM 0x20000000 - 0x20005FFF

Project Macros

DeviceHeaderFile=$(PackagesDir)/TM4C/CMSIS/Device/Include/TM4C123/TM4C123.h

DeviceLibraryIdentifier=M4lf

DeviceSystemFile=$(PackagesDir)/TM4C/CMSIS/Device/Source/system_TM4C123.c

DeviceVectorsFile=$(PackagesDir)/TM4C/Source/TM4C1233D5PM_Vectors.s

DeviceFamily=TM4C

DeviceSubFamily=TM4C123x Series

TM4C CPU Support Package Guide TM4C Support Package

34

TM4C1233D5PZDevice Details

CMSIS Header File$(PackagesDir)/TM4C/CMSIS/Device/Include/TM4C123/TM4C123.h

CMSIS Include Path $(PackagesDir)/TM4C/CMSIS/Device/Include

CMSIS System File$(PackagesDir)/TM4C/CMSIS/Device/Source/system_TM4C123.c

Family TM4C

Sub Family TM4C123x Series

Memory Map File$(PackagesDir)/TM4C/XML/TM4C1233D5PZ_MemoryMap.xml

Register Definition File$(PackagesDir)/TM4C/XML/TM4C1233D5PZ_Registers.xml

Vectors File$(PackagesDir)/TM4C/Source/TM4C1233D5PZ_Vectors.s

Preprocessor Definitions

ARM_MATH_CM4

TM4C1233D5PZ

__TM4C123x_Series_SUBFAMILY

__TM4C_FAMILY

Memory Segments

FLASH 0x00000000 - 0x0000FFFF

RAM 0x20000000 - 0x20005FFF

Project Macros

DeviceHeaderFile=$(PackagesDir)/TM4C/CMSIS/Device/Include/TM4C123/TM4C123.h

DeviceLibraryIdentifier=M4lf

DeviceSystemFile=$(PackagesDir)/TM4C/CMSIS/Device/Source/system_TM4C123.c

DeviceVectorsFile=$(PackagesDir)/TM4C/Source/TM4C1233D5PZ_Vectors.s

DeviceFamily=TM4C

DeviceSubFamily=TM4C123x Series

TM4C CPU Support Package Guide TM4C Support Package

35

TM4C1233E6PMDevice Details

CMSIS Header File$(PackagesDir)/TM4C/CMSIS/Device/Include/TM4C123/TM4C123.h

CMSIS Include Path $(PackagesDir)/TM4C/CMSIS/Device/Include

CMSIS System File$(PackagesDir)/TM4C/CMSIS/Device/Source/system_TM4C123.c

Family TM4C

Sub Family TM4C123x Series

Memory Map File$(PackagesDir)/TM4C/XML/TM4C1233E6PM_MemoryMap.xml

Register Definition File$(PackagesDir)/TM4C/XML/TM4C1233E6PM_Registers.xml

Vectors File$(PackagesDir)/TM4C/Source/TM4C1233E6PM_Vectors.s

Preprocessor Definitions

ARM_MATH_CM4

TM4C1233E6PM

__TM4C123x_Series_SUBFAMILY

__TM4C_FAMILY

Memory Segments

FLASH 0x00000000 - 0x0001FFFF

RAM 0x20000000 - 0x20007FFF

Project Macros

DeviceHeaderFile=$(PackagesDir)/TM4C/CMSIS/Device/Include/TM4C123/TM4C123.h

DeviceLibraryIdentifier=M4lf

DeviceSystemFile=$(PackagesDir)/TM4C/CMSIS/Device/Source/system_TM4C123.c

DeviceVectorsFile=$(PackagesDir)/TM4C/Source/TM4C1233E6PM_Vectors.s

DeviceFamily=TM4C

DeviceSubFamily=TM4C123x Series

TM4C CPU Support Package Guide TM4C Support Package

36

TM4C1233E6PZDevice Details

CMSIS Header File$(PackagesDir)/TM4C/CMSIS/Device/Include/TM4C123/TM4C123.h

CMSIS Include Path $(PackagesDir)/TM4C/CMSIS/Device/Include

CMSIS System File$(PackagesDir)/TM4C/CMSIS/Device/Source/system_TM4C123.c

Family TM4C

Sub Family TM4C123x Series

Memory Map File$(PackagesDir)/TM4C/XML/TM4C1233E6PZ_MemoryMap.xml

Register Definition File$(PackagesDir)/TM4C/XML/TM4C1233E6PZ_Registers.xml

Vectors File$(PackagesDir)/TM4C/Source/TM4C1233E6PZ_Vectors.s

Preprocessor Definitions

ARM_MATH_CM4

TM4C1233E6PZ

__TM4C123x_Series_SUBFAMILY

__TM4C_FAMILY

Memory Segments

FLASH 0x00000000 - 0x0001FFFF

RAM 0x20000000 - 0x20007FFF

Project Macros

DeviceHeaderFile=$(PackagesDir)/TM4C/CMSIS/Device/Include/TM4C123/TM4C123.h

DeviceLibraryIdentifier=M4lf

DeviceSystemFile=$(PackagesDir)/TM4C/CMSIS/Device/Source/system_TM4C123.c

DeviceVectorsFile=$(PackagesDir)/TM4C/Source/TM4C1233E6PZ_Vectors.s

DeviceFamily=TM4C

DeviceSubFamily=TM4C123x Series

TM4C CPU Support Package Guide TM4C Support Package

37

TM4C1233H6PGEDevice Details

CMSIS Header File$(PackagesDir)/TM4C/CMSIS/Device/Include/TM4C123/TM4C123.h

CMSIS Include Path $(PackagesDir)/TM4C/CMSIS/Device/Include

CMSIS System File$(PackagesDir)/TM4C/CMSIS/Device/Source/system_TM4C123.c

Family TM4C

Sub Family TM4C123x Series

Memory Map File$(PackagesDir)/TM4C/XML/TM4C1233H6PGE_MemoryMap.xml

Register Definition File$(PackagesDir)/TM4C/XML/TM4C1233H6PGE_Registers.xml

Vectors File$(PackagesDir)/TM4C/Source/TM4C1233H6PGE_Vectors.s

Preprocessor Definitions

ARM_MATH_CM4

TM4C1233H6PGE

__TM4C123x_Series_SUBFAMILY

__TM4C_FAMILY

Memory Segments

FLASH 0x00000000 - 0x0003FFFF

RAM 0x20000000 - 0x20007FFF

Project Macros

DeviceHeaderFile=$(PackagesDir)/TM4C/CMSIS/Device/Include/TM4C123/TM4C123.h

DeviceLibraryIdentifier=M4lf

DeviceSystemFile=$(PackagesDir)/TM4C/CMSIS/Device/Source/system_TM4C123.c

DeviceVectorsFile=$(PackagesDir)/TM4C/Source/TM4C1233H6PGE_Vectors.s

DeviceFamily=TM4C

DeviceSubFamily=TM4C123x Series

TM4C CPU Support Package Guide TM4C Support Package

38

TM4C1233H6PMDevice Details

CMSIS Header File$(PackagesDir)/TM4C/CMSIS/Device/Include/TM4C123/TM4C123.h

CMSIS Include Path $(PackagesDir)/TM4C/CMSIS/Device/Include

CMSIS System File$(PackagesDir)/TM4C/CMSIS/Device/Source/system_TM4C123.c

Family TM4C

Sub Family TM4C123x Series

Memory Map File$(PackagesDir)/TM4C/XML/TM4C1233H6PM_MemoryMap.xml

Register Definition File$(PackagesDir)/TM4C/XML/TM4C1233H6PM_Registers.xml

Vectors File$(PackagesDir)/TM4C/Source/TM4C1233H6PM_Vectors.s

Preprocessor Definitions

ARM_MATH_CM4

TM4C1233H6PM

__TM4C123x_Series_SUBFAMILY

__TM4C_FAMILY

Memory Segments

FLASH 0x00000000 - 0x0003FFFF

RAM 0x20000000 - 0x20007FFF

Project Macros

DeviceHeaderFile=$(PackagesDir)/TM4C/CMSIS/Device/Include/TM4C123/TM4C123.h

DeviceLibraryIdentifier=M4lf

DeviceSystemFile=$(PackagesDir)/TM4C/CMSIS/Device/Source/system_TM4C123.c

DeviceVectorsFile=$(PackagesDir)/TM4C/Source/TM4C1233H6PM_Vectors.s

DeviceFamily=TM4C

DeviceSubFamily=TM4C123x Series

TM4C CPU Support Package Guide TM4C Support Package

39

TM4C1233H6PZDevice Details

CMSIS Header File$(PackagesDir)/TM4C/CMSIS/Device/Include/TM4C123/TM4C123.h

CMSIS Include Path $(PackagesDir)/TM4C/CMSIS/Device/Include

CMSIS System File$(PackagesDir)/TM4C/CMSIS/Device/Source/system_TM4C123.c

Family TM4C

Sub Family TM4C123x Series

Memory Map File$(PackagesDir)/TM4C/XML/TM4C1233H6PZ_MemoryMap.xml

Register Definition File$(PackagesDir)/TM4C/XML/TM4C1233H6PZ_Registers.xml

Vectors File$(PackagesDir)/TM4C/Source/TM4C1233H6PZ_Vectors.s

Preprocessor Definitions

ARM_MATH_CM4

TM4C1233H6PZ

__TM4C123x_Series_SUBFAMILY

__TM4C_FAMILY

Memory Segments

FLASH 0x00000000 - 0x0003FFFF

RAM 0x20000000 - 0x20007FFF

Project Macros

DeviceHeaderFile=$(PackagesDir)/TM4C/CMSIS/Device/Include/TM4C123/TM4C123.h

DeviceLibraryIdentifier=M4lf

DeviceSystemFile=$(PackagesDir)/TM4C/CMSIS/Device/Source/system_TM4C123.c

DeviceVectorsFile=$(PackagesDir)/TM4C/Source/TM4C1233H6PZ_Vectors.s

DeviceFamily=TM4C

DeviceSubFamily=TM4C123x Series

TM4C CPU Support Package Guide TM4C Support Package

40

TM4C1236D5PMDevice Details

CMSIS Header File$(PackagesDir)/TM4C/CMSIS/Device/Include/TM4C123/TM4C123.h

CMSIS Include Path $(PackagesDir)/TM4C/CMSIS/Device/Include

CMSIS System File$(PackagesDir)/TM4C/CMSIS/Device/Source/system_TM4C123.c

Family TM4C

Sub Family TM4C123x Series

Memory Map File$(PackagesDir)/TM4C/XML/TM4C1236D5PM_MemoryMap.xml

Register Definition File$(PackagesDir)/TM4C/XML/TM4C1236D5PM_Registers.xml

Vectors File$(PackagesDir)/TM4C/Source/TM4C1236D5PM_Vectors.s

Preprocessor Definitions

ARM_MATH_CM4

TM4C1236D5PM

__TM4C123x_Series_SUBFAMILY

__TM4C_FAMILY

Memory Segments

FLASH 0x00000000 - 0x0000FFFF

RAM 0x20000000 - 0x20005FFF

Project Macros

DeviceHeaderFile=$(PackagesDir)/TM4C/CMSIS/Device/Include/TM4C123/TM4C123.h

DeviceLibraryIdentifier=M4lf

DeviceSystemFile=$(PackagesDir)/TM4C/CMSIS/Device/Source/system_TM4C123.c

DeviceVectorsFile=$(PackagesDir)/TM4C/Source/TM4C1236D5PM_Vectors.s

DeviceFamily=TM4C

DeviceSubFamily=TM4C123x Series

TM4C CPU Support Package Guide TM4C Support Package

41

TM4C1236E6PMDevice Details

CMSIS Header File$(PackagesDir)/TM4C/CMSIS/Device/Include/TM4C123/TM4C123.h

CMSIS Include Path $(PackagesDir)/TM4C/CMSIS/Device/Include

CMSIS System File$(PackagesDir)/TM4C/CMSIS/Device/Source/system_TM4C123.c

Family TM4C

Sub Family TM4C123x Series

Memory Map File$(PackagesDir)/TM4C/XML/TM4C1236E6PM_MemoryMap.xml

Register Definition File$(PackagesDir)/TM4C/XML/TM4C1236E6PM_Registers.xml

Vectors File$(PackagesDir)/TM4C/Source/TM4C1236E6PM_Vectors.s

Preprocessor Definitions

ARM_MATH_CM4

TM4C1236E6PM

__TM4C123x_Series_SUBFAMILY

__TM4C_FAMILY

Memory Segments

FLASH 0x00000000 - 0x0001FFFF

RAM 0x20000000 - 0x20007FFF

Project Macros

DeviceHeaderFile=$(PackagesDir)/TM4C/CMSIS/Device/Include/TM4C123/TM4C123.h

DeviceLibraryIdentifier=M4lf

DeviceSystemFile=$(PackagesDir)/TM4C/CMSIS/Device/Source/system_TM4C123.c

DeviceVectorsFile=$(PackagesDir)/TM4C/Source/TM4C1236E6PM_Vectors.s

DeviceFamily=TM4C

DeviceSubFamily=TM4C123x Series

TM4C CPU Support Package Guide TM4C Support Package

42

TM4C1236H6PMDevice Details

CMSIS Header File$(PackagesDir)/TM4C/CMSIS/Device/Include/TM4C123/TM4C123.h

CMSIS Include Path $(PackagesDir)/TM4C/CMSIS/Device/Include

CMSIS System File$(PackagesDir)/TM4C/CMSIS/Device/Source/system_TM4C123.c

Family TM4C

Sub Family TM4C123x Series

Memory Map File$(PackagesDir)/TM4C/XML/TM4C1236H6PM_MemoryMap.xml

Register Definition File$(PackagesDir)/TM4C/XML/TM4C1236H6PM_Registers.xml

Vectors File$(PackagesDir)/TM4C/Source/TM4C1236H6PM_Vectors.s

Preprocessor Definitions

ARM_MATH_CM4

TM4C1236H6PM

__TM4C123x_Series_SUBFAMILY

__TM4C_FAMILY

Memory Segments

FLASH 0x00000000 - 0x0003FFFF

RAM 0x20000000 - 0x20007FFF

Project Macros

DeviceHeaderFile=$(PackagesDir)/TM4C/CMSIS/Device/Include/TM4C123/TM4C123.h

DeviceLibraryIdentifier=M4lf

DeviceSystemFile=$(PackagesDir)/TM4C/CMSIS/Device/Source/system_TM4C123.c

DeviceVectorsFile=$(PackagesDir)/TM4C/Source/TM4C1236H6PM_Vectors.s

DeviceFamily=TM4C

DeviceSubFamily=TM4C123x Series

TM4C CPU Support Package Guide TM4C Support Package

43

TM4C1237D5PMDevice Details

CMSIS Header File$(PackagesDir)/TM4C/CMSIS/Device/Include/TM4C123/TM4C123.h

CMSIS Include Path $(PackagesDir)/TM4C/CMSIS/Device/Include

CMSIS System File$(PackagesDir)/TM4C/CMSIS/Device/Source/system_TM4C123.c

Family TM4C

Sub Family TM4C123x Series

Memory Map File$(PackagesDir)/TM4C/XML/TM4C1237D5PM_MemoryMap.xml

Register Definition File$(PackagesDir)/TM4C/XML/TM4C1237D5PM_Registers.xml

Vectors File$(PackagesDir)/TM4C/Source/TM4C1237D5PM_Vectors.s

Preprocessor Definitions

ARM_MATH_CM4

TM4C1237D5PM

__TM4C123x_Series_SUBFAMILY

__TM4C_FAMILY

Memory Segments

FLASH 0x00000000 - 0x0000FFFF

RAM 0x20000000 - 0x20005FFF

Project Macros

DeviceHeaderFile=$(PackagesDir)/TM4C/CMSIS/Device/Include/TM4C123/TM4C123.h

DeviceLibraryIdentifier=M4lf

DeviceSystemFile=$(PackagesDir)/TM4C/CMSIS/Device/Source/system_TM4C123.c

DeviceVectorsFile=$(PackagesDir)/TM4C/Source/TM4C1237D5PM_Vectors.s

DeviceFamily=TM4C

DeviceSubFamily=TM4C123x Series

TM4C CPU Support Package Guide TM4C Support Package

44

TM4C1237D5PZDevice Details

CMSIS Header File$(PackagesDir)/TM4C/CMSIS/Device/Include/TM4C123/TM4C123.h

CMSIS Include Path $(PackagesDir)/TM4C/CMSIS/Device/Include

CMSIS System File$(PackagesDir)/TM4C/CMSIS/Device/Source/system_TM4C123.c

Family TM4C

Sub Family TM4C123x Series

Memory Map File$(PackagesDir)/TM4C/XML/TM4C1237D5PZ_MemoryMap.xml

Register Definition File$(PackagesDir)/TM4C/XML/TM4C1237D5PZ_Registers.xml

Vectors File$(PackagesDir)/TM4C/Source/TM4C1237D5PZ_Vectors.s

Preprocessor Definitions

ARM_MATH_CM4

TM4C1237D5PZ

__TM4C123x_Series_SUBFAMILY

__TM4C_FAMILY

Memory Segments

FLASH 0x00000000 - 0x0000FFFF

RAM 0x20000000 - 0x20005FFF

Project Macros

DeviceHeaderFile=$(PackagesDir)/TM4C/CMSIS/Device/Include/TM4C123/TM4C123.h

DeviceLibraryIdentifier=M4lf

DeviceSystemFile=$(PackagesDir)/TM4C/CMSIS/Device/Source/system_TM4C123.c

DeviceVectorsFile=$(PackagesDir)/TM4C/Source/TM4C1237D5PZ_Vectors.s

DeviceFamily=TM4C

DeviceSubFamily=TM4C123x Series

TM4C CPU Support Package Guide TM4C Support Package

45

TM4C1237E6PMDevice Details

CMSIS Header File$(PackagesDir)/TM4C/CMSIS/Device/Include/TM4C123/TM4C123.h

CMSIS Include Path $(PackagesDir)/TM4C/CMSIS/Device/Include

CMSIS System File$(PackagesDir)/TM4C/CMSIS/Device/Source/system_TM4C123.c

Family TM4C

Sub Family TM4C123x Series

Memory Map File$(PackagesDir)/TM4C/XML/TM4C1237E6PM_MemoryMap.xml

Register Definition File$(PackagesDir)/TM4C/XML/TM4C1237E6PM_Registers.xml

Vectors File$(PackagesDir)/TM4C/Source/TM4C1237E6PM_Vectors.s

Preprocessor Definitions

ARM_MATH_CM4

TM4C1237E6PM

__TM4C123x_Series_SUBFAMILY

__TM4C_FAMILY

Memory Segments

FLASH 0x00000000 - 0x0001FFFF

RAM 0x20000000 - 0x20007FFF

Project Macros

DeviceHeaderFile=$(PackagesDir)/TM4C/CMSIS/Device/Include/TM4C123/TM4C123.h

DeviceLibraryIdentifier=M4lf

DeviceSystemFile=$(PackagesDir)/TM4C/CMSIS/Device/Source/system_TM4C123.c

DeviceVectorsFile=$(PackagesDir)/TM4C/Source/TM4C1237E6PM_Vectors.s

DeviceFamily=TM4C

DeviceSubFamily=TM4C123x Series

TM4C CPU Support Package Guide TM4C Support Package

46

TM4C1237E6PZDevice Details

CMSIS Header File$(PackagesDir)/TM4C/CMSIS/Device/Include/TM4C123/TM4C123.h

CMSIS Include Path $(PackagesDir)/TM4C/CMSIS/Device/Include

CMSIS System File$(PackagesDir)/TM4C/CMSIS/Device/Source/system_TM4C123.c

Family TM4C

Sub Family TM4C123x Series

Memory Map File$(PackagesDir)/TM4C/XML/TM4C1237E6PZ_MemoryMap.xml

Register Definition File$(PackagesDir)/TM4C/XML/TM4C1237E6PZ_Registers.xml

Vectors File$(PackagesDir)/TM4C/Source/TM4C1237E6PZ_Vectors.s

Preprocessor Definitions

ARM_MATH_CM4

TM4C1237E6PZ

__TM4C123x_Series_SUBFAMILY

__TM4C_FAMILY

Memory Segments

FLASH 0x00000000 - 0x0001FFFF

RAM 0x20000000 - 0x20007FFF

Project Macros

DeviceHeaderFile=$(PackagesDir)/TM4C/CMSIS/Device/Include/TM4C123/TM4C123.h

DeviceLibraryIdentifier=M4lf

DeviceSystemFile=$(PackagesDir)/TM4C/CMSIS/Device/Source/system_TM4C123.c

DeviceVectorsFile=$(PackagesDir)/TM4C/Source/TM4C1237E6PZ_Vectors.s

DeviceFamily=TM4C

DeviceSubFamily=TM4C123x Series

TM4C CPU Support Package Guide TM4C Support Package

47

TM4C1237H6PGEDevice Details

CMSIS Header File$(PackagesDir)/TM4C/CMSIS/Device/Include/TM4C123/TM4C123.h

CMSIS Include Path $(PackagesDir)/TM4C/CMSIS/Device/Include

CMSIS System File$(PackagesDir)/TM4C/CMSIS/Device/Source/system_TM4C123.c

Family TM4C

Sub Family TM4C123x Series

Memory Map File$(PackagesDir)/TM4C/XML/TM4C1237H6PGE_MemoryMap.xml

Register Definition File$(PackagesDir)/TM4C/XML/TM4C1237H6PGE_Registers.xml

Vectors File$(PackagesDir)/TM4C/Source/TM4C1237H6PGE_Vectors.s

Preprocessor Definitions

ARM_MATH_CM4

TM4C1237H6PGE

__TM4C123x_Series_SUBFAMILY

__TM4C_FAMILY

Memory Segments

FLASH 0x00000000 - 0x0003FFFF

RAM 0x20000000 - 0x20007FFF

Project Macros

DeviceHeaderFile=$(PackagesDir)/TM4C/CMSIS/Device/Include/TM4C123/TM4C123.h

DeviceLibraryIdentifier=M4lf

DeviceSystemFile=$(PackagesDir)/TM4C/CMSIS/Device/Source/system_TM4C123.c

DeviceVectorsFile=$(PackagesDir)/TM4C/Source/TM4C1237H6PGE_Vectors.s

DeviceFamily=TM4C

DeviceSubFamily=TM4C123x Series

TM4C CPU Support Package Guide TM4C Support Package

48

TM4C1237H6PMDevice Details

CMSIS Header File$(PackagesDir)/TM4C/CMSIS/Device/Include/TM4C123/TM4C123.h

CMSIS Include Path $(PackagesDir)/TM4C/CMSIS/Device/Include

CMSIS System File$(PackagesDir)/TM4C/CMSIS/Device/Source/system_TM4C123.c

Family TM4C

Sub Family TM4C123x Series

Memory Map File$(PackagesDir)/TM4C/XML/TM4C1237H6PM_MemoryMap.xml

Register Definition File$(PackagesDir)/TM4C/XML/TM4C1237H6PM_Registers.xml

Vectors File$(PackagesDir)/TM4C/Source/TM4C1237H6PM_Vectors.s

Preprocessor Definitions

ARM_MATH_CM4

TM4C1237H6PM

__TM4C123x_Series_SUBFAMILY

__TM4C_FAMILY

Memory Segments

FLASH 0x00000000 - 0x0003FFFF

RAM 0x20000000 - 0x20007FFF

Project Macros

DeviceHeaderFile=$(PackagesDir)/TM4C/CMSIS/Device/Include/TM4C123/TM4C123.h

DeviceLibraryIdentifier=M4lf

DeviceSystemFile=$(PackagesDir)/TM4C/CMSIS/Device/Source/system_TM4C123.c

DeviceVectorsFile=$(PackagesDir)/TM4C/Source/TM4C1237H6PM_Vectors.s

DeviceFamily=TM4C

DeviceSubFamily=TM4C123x Series

TM4C CPU Support Package Guide TM4C Support Package

49

TM4C1237H6PZDevice Details

CMSIS Header File$(PackagesDir)/TM4C/CMSIS/Device/Include/TM4C123/TM4C123.h

CMSIS Include Path $(PackagesDir)/TM4C/CMSIS/Device/Include

CMSIS System File$(PackagesDir)/TM4C/CMSIS/Device/Source/system_TM4C123.c

Family TM4C

Sub Family TM4C123x Series

Memory Map File$(PackagesDir)/TM4C/XML/TM4C1237H6PZ_MemoryMap.xml

Register Definition File$(PackagesDir)/TM4C/XML/TM4C1237H6PZ_Registers.xml

Vectors File$(PackagesDir)/TM4C/Source/TM4C1237H6PZ_Vectors.s

Preprocessor Definitions

ARM_MATH_CM4

TM4C1237H6PZ

__TM4C123x_Series_SUBFAMILY

__TM4C_FAMILY

Memory Segments

FLASH 0x00000000 - 0x0003FFFF

RAM 0x20000000 - 0x20007FFF

Project Macros

DeviceHeaderFile=$(PackagesDir)/TM4C/CMSIS/Device/Include/TM4C123/TM4C123.h

DeviceLibraryIdentifier=M4lf

DeviceSystemFile=$(PackagesDir)/TM4C/CMSIS/Device/Source/system_TM4C123.c

DeviceVectorsFile=$(PackagesDir)/TM4C/Source/TM4C1237H6PZ_Vectors.s

DeviceFamily=TM4C

DeviceSubFamily=TM4C123x Series

TM4C CPU Support Package Guide TM4C Support Package

50

TM4C123AE6PMDevice Details

CMSIS Header File$(PackagesDir)/TM4C/CMSIS/Device/Include/TM4C123/TM4C123.h

CMSIS Include Path $(PackagesDir)/TM4C/CMSIS/Device/Include

CMSIS System File$(PackagesDir)/TM4C/CMSIS/Device/Source/system_TM4C123.c

Family TM4C

Sub Family TM4C123x Series

Memory Map File$(PackagesDir)/TM4C/XML/TM4C123AE6PM_MemoryMap.xml

Register Definition File$(PackagesDir)/TM4C/XML/TM4C123AE6PM_Registers.xml

Vectors File$(PackagesDir)/TM4C/Source/TM4C123AE6PM_Vectors.s

Preprocessor Definitions

ARM_MATH_CM4

TM4C123AE6PM

__TM4C123x_Series_SUBFAMILY

__TM4C_FAMILY

Memory Segments

FLASH 0x00000000 - 0x0001FFFF

RAM 0x20000000 - 0x20007FFF

Project Macros

DeviceHeaderFile=$(PackagesDir)/TM4C/CMSIS/Device/Include/TM4C123/TM4C123.h

DeviceLibraryIdentifier=M4lf

DeviceSystemFile=$(PackagesDir)/TM4C/CMSIS/Device/Source/system_TM4C123.c

DeviceVectorsFile=$(PackagesDir)/TM4C/Source/TM4C123AE6PM_Vectors.s

DeviceFamily=TM4C

DeviceSubFamily=TM4C123x Series

TM4C CPU Support Package Guide TM4C Support Package

51

TM4C123AH6PMDevice Details

CMSIS Header File$(PackagesDir)/TM4C/CMSIS/Device/Include/TM4C123/TM4C123.h

CMSIS Include Path $(PackagesDir)/TM4C/CMSIS/Device/Include

CMSIS System File$(PackagesDir)/TM4C/CMSIS/Device/Source/system_TM4C123.c

Family TM4C

Sub Family TM4C123x Series

Memory Map File$(PackagesDir)/TM4C/XML/TM4C123AH6PM_MemoryMap.xml

Register Definition File$(PackagesDir)/TM4C/XML/TM4C123AH6PM_Registers.xml

Vectors File$(PackagesDir)/TM4C/Source/TM4C123AH6PM_Vectors.s

Preprocessor Definitions

ARM_MATH_CM4

TM4C123AH6PM

__TM4C123x_Series_SUBFAMILY

__TM4C_FAMILY

Memory Segments

FLASH 0x00000000 - 0x0003FFFF

RAM 0x20000000 - 0x20007FFF

Project Macros

DeviceHeaderFile=$(PackagesDir)/TM4C/CMSIS/Device/Include/TM4C123/TM4C123.h

DeviceLibraryIdentifier=M4lf

DeviceSystemFile=$(PackagesDir)/TM4C/CMSIS/Device/Source/system_TM4C123.c

DeviceVectorsFile=$(PackagesDir)/TM4C/Source/TM4C123AH6PM_Vectors.s

DeviceFamily=TM4C

DeviceSubFamily=TM4C123x Series

TM4C CPU Support Package Guide TM4C Support Package

52

TM4C123BE6PMDevice Details

CMSIS Header File$(PackagesDir)/TM4C/CMSIS/Device/Include/TM4C123/TM4C123.h

CMSIS Include Path $(PackagesDir)/TM4C/CMSIS/Device/Include

CMSIS System File$(PackagesDir)/TM4C/CMSIS/Device/Source/system_TM4C123.c

Family TM4C

Sub Family TM4C123x Series

Memory Map File$(PackagesDir)/TM4C/XML/TM4C123BE6PM_MemoryMap.xml

Register Definition File$(PackagesDir)/TM4C/XML/TM4C123BE6PM_Registers.xml

Vectors File$(PackagesDir)/TM4C/Source/TM4C123BE6PM_Vectors.s

Preprocessor Definitions

ARM_MATH_CM4

TM4C123BE6PM

__TM4C123x_Series_SUBFAMILY

__TM4C_FAMILY

Memory Segments

FLASH 0x00000000 - 0x0001FFFF

RAM 0x20000000 - 0x20007FFF

Project Macros

DeviceHeaderFile=$(PackagesDir)/TM4C/CMSIS/Device/Include/TM4C123/TM4C123.h

DeviceLibraryIdentifier=M4lf

DeviceSystemFile=$(PackagesDir)/TM4C/CMSIS/Device/Source/system_TM4C123.c

DeviceVectorsFile=$(PackagesDir)/TM4C/Source/TM4C123BE6PM_Vectors.s

DeviceFamily=TM4C

DeviceSubFamily=TM4C123x Series

TM4C CPU Support Package Guide TM4C Support Package

53

TM4C123BE6PZDevice Details

CMSIS Header File$(PackagesDir)/TM4C/CMSIS/Device/Include/TM4C123/TM4C123.h

CMSIS Include Path $(PackagesDir)/TM4C/CMSIS/Device/Include

CMSIS System File$(PackagesDir)/TM4C/CMSIS/Device/Source/system_TM4C123.c

Family TM4C

Sub Family TM4C123x Series

Memory Map File$(PackagesDir)/TM4C/XML/TM4C123BE6PZ_MemoryMap.xml

Register Definition File$(PackagesDir)/TM4C/XML/TM4C123BE6PZ_Registers.xml

Vectors File$(PackagesDir)/TM4C/Source/TM4C123BE6PZ_Vectors.s

Preprocessor Definitions

ARM_MATH_CM4

TM4C123BE6PZ

__TM4C123x_Series_SUBFAMILY

__TM4C_FAMILY

Memory Segments

FLASH 0x00000000 - 0x0001FFFF

RAM 0x20000000 - 0x20007FFF

Project Macros

DeviceHeaderFile=$(PackagesDir)/TM4C/CMSIS/Device/Include/TM4C123/TM4C123.h

DeviceLibraryIdentifier=M4lf

DeviceSystemFile=$(PackagesDir)/TM4C/CMSIS/Device/Source/system_TM4C123.c

DeviceVectorsFile=$(PackagesDir)/TM4C/Source/TM4C123BE6PZ_Vectors.s

DeviceFamily=TM4C

DeviceSubFamily=TM4C123x Series

TM4C CPU Support Package Guide TM4C Support Package

54

TM4C123BH6PGEDevice Details

CMSIS Header File$(PackagesDir)/TM4C/CMSIS/Device/Include/TM4C123/TM4C123.h

CMSIS Include Path $(PackagesDir)/TM4C/CMSIS/Device/Include

CMSIS System File$(PackagesDir)/TM4C/CMSIS/Device/Source/system_TM4C123.c

Family TM4C

Sub Family TM4C123x Series

Memory Map File$(PackagesDir)/TM4C/XML/TM4C123BH6PGE_MemoryMap.xml

Register Definition File$(PackagesDir)/TM4C/XML/TM4C123BH6PGE_Registers.xml

Vectors File$(PackagesDir)/TM4C/Source/TM4C123BH6PGE_Vectors.s

Preprocessor Definitions

ARM_MATH_CM4

TM4C123BH6PGE

__TM4C123x_Series_SUBFAMILY

__TM4C_FAMILY

Memory Segments

FLASH 0x00000000 - 0x0003FFFF

RAM 0x20000000 - 0x20007FFF

Project Macros

DeviceHeaderFile=$(PackagesDir)/TM4C/CMSIS/Device/Include/TM4C123/TM4C123.h

DeviceLibraryIdentifier=M4lf

DeviceSystemFile=$(PackagesDir)/TM4C/CMSIS/Device/Source/system_TM4C123.c

DeviceVectorsFile=$(PackagesDir)/TM4C/Source/TM4C123BH6PGE_Vectors.s

DeviceFamily=TM4C

DeviceSubFamily=TM4C123x Series

TM4C CPU Support Package Guide TM4C Support Package

55

TM4C123BH6PMDevice Details

CMSIS Header File$(PackagesDir)/TM4C/CMSIS/Device/Include/TM4C123/TM4C123.h

CMSIS Include Path $(PackagesDir)/TM4C/CMSIS/Device/Include

CMSIS System File$(PackagesDir)/TM4C/CMSIS/Device/Source/system_TM4C123.c

Family TM4C

Sub Family TM4C123x Series

Memory Map File$(PackagesDir)/TM4C/XML/TM4C123BH6PM_MemoryMap.xml

Register Definition File$(PackagesDir)/TM4C/XML/TM4C123BH6PM_Registers.xml

Vectors File$(PackagesDir)/TM4C/Source/TM4C123BH6PM_Vectors.s

Preprocessor Definitions

ARM_MATH_CM4

TM4C123BH6PM

__TM4C123x_Series_SUBFAMILY

__TM4C_FAMILY

Memory Segments

FLASH 0x00000000 - 0x0003FFFF

RAM 0x20000000 - 0x20007FFF

Project Macros

DeviceHeaderFile=$(PackagesDir)/TM4C/CMSIS/Device/Include/TM4C123/TM4C123.h

DeviceLibraryIdentifier=M4lf

DeviceSystemFile=$(PackagesDir)/TM4C/CMSIS/Device/Source/system_TM4C123.c

DeviceVectorsFile=$(PackagesDir)/TM4C/Source/TM4C123BH6PM_Vectors.s

DeviceFamily=TM4C

DeviceSubFamily=TM4C123x Series

TM4C CPU Support Package Guide TM4C Support Package

56

TM4C123BH6PZDevice Details

CMSIS Header File$(PackagesDir)/TM4C/CMSIS/Device/Include/TM4C123/TM4C123.h

CMSIS Include Path $(PackagesDir)/TM4C/CMSIS/Device/Include

CMSIS System File$(PackagesDir)/TM4C/CMSIS/Device/Source/system_TM4C123.c

Family TM4C

Sub Family TM4C123x Series

Memory Map File$(PackagesDir)/TM4C/XML/TM4C123BH6PZ_MemoryMap.xml

Register Definition File$(PackagesDir)/TM4C/XML/TM4C123BH6PZ_Registers.xml

Vectors File$(PackagesDir)/TM4C/Source/TM4C123BH6PZ_Vectors.s

Preprocessor Definitions

ARM_MATH_CM4

TM4C123BH6PZ

__TM4C123x_Series_SUBFAMILY

__TM4C_FAMILY

Memory Segments

FLASH 0x00000000 - 0x0003FFFF

RAM 0x20000000 - 0x20007FFF

Project Macros

DeviceHeaderFile=$(PackagesDir)/TM4C/CMSIS/Device/Include/TM4C123/TM4C123.h

DeviceLibraryIdentifier=M4lf

DeviceSystemFile=$(PackagesDir)/TM4C/CMSIS/Device/Source/system_TM4C123.c

DeviceVectorsFile=$(PackagesDir)/TM4C/Source/TM4C123BH6PZ_Vectors.s

DeviceFamily=TM4C

DeviceSubFamily=TM4C123x Series

TM4C CPU Support Package Guide TM4C Support Package

57

TM4C123BH6ZRBDevice Details

CMSIS Header File$(PackagesDir)/TM4C/CMSIS/Device/Include/TM4C123/TM4C123.h

CMSIS Include Path $(PackagesDir)/TM4C/CMSIS/Device/Include

CMSIS System File$(PackagesDir)/TM4C/CMSIS/Device/Source/system_TM4C123.c

Family TM4C

Sub Family TM4C123x Series

Memory Map File$(PackagesDir)/TM4C/XML/TM4C123BH6ZRB_MemoryMap.xml

Register Definition File$(PackagesDir)/TM4C/XML/TM4C123BH6ZRB_Registers.xml

Vectors File$(PackagesDir)/TM4C/Source/TM4C123BH6ZRB_Vectors.s

Preprocessor Definitions

ARM_MATH_CM4

TM4C123BH6ZRB

__TM4C123x_Series_SUBFAMILY

__TM4C_FAMILY

Memory Segments

FLASH 0x00000000 - 0x0003FFFF

RAM 0x20000000 - 0x20007FFF

Project Macros

DeviceHeaderFile=$(PackagesDir)/TM4C/CMSIS/Device/Include/TM4C123/TM4C123.h

DeviceLibraryIdentifier=M4lf

DeviceSystemFile=$(PackagesDir)/TM4C/CMSIS/Device/Source/system_TM4C123.c

DeviceVectorsFile=$(PackagesDir)/TM4C/Source/TM4C123BH6ZRB_Vectors.s

DeviceFamily=TM4C

DeviceSubFamily=TM4C123x Series

TM4C CPU Support Package Guide TM4C Support Package

58

TM4C123FE6PMDevice Details

CMSIS Header File$(PackagesDir)/TM4C/CMSIS/Device/Include/TM4C123/TM4C123.h

CMSIS Include Path $(PackagesDir)/TM4C/CMSIS/Device/Include

CMSIS System File$(PackagesDir)/TM4C/CMSIS/Device/Source/system_TM4C123.c

Family TM4C

Sub Family TM4C123x Series

Memory Map File$(PackagesDir)/TM4C/XML/TM4C123FE6PM_MemoryMap.xml

Register Definition File$(PackagesDir)/TM4C/XML/TM4C123FE6PM_Registers.xml

Vectors File$(PackagesDir)/TM4C/Source/TM4C123FE6PM_Vectors.s

Preprocessor Definitions

ARM_MATH_CM4

TM4C123FE6PM

__TM4C123x_Series_SUBFAMILY

__TM4C_FAMILY

Memory Segments

FLASH 0x00000000 - 0x0001FFFF

RAM 0x20000000 - 0x20007FFF

Project Macros

DeviceHeaderFile=$(PackagesDir)/TM4C/CMSIS/Device/Include/TM4C123/TM4C123.h

DeviceLibraryIdentifier=M4lf

DeviceSystemFile=$(PackagesDir)/TM4C/CMSIS/Device/Source/system_TM4C123.c

DeviceVectorsFile=$(PackagesDir)/TM4C/Source/TM4C123FE6PM_Vectors.s

DeviceFamily=TM4C

DeviceSubFamily=TM4C123x Series

TM4C CPU Support Package Guide TM4C Support Package

59

TM4C123FH6PMDevice Details

CMSIS Header File$(PackagesDir)/TM4C/CMSIS/Device/Include/TM4C123/TM4C123.h

CMSIS Include Path $(PackagesDir)/TM4C/CMSIS/Device/Include

CMSIS System File$(PackagesDir)/TM4C/CMSIS/Device/Source/system_TM4C123.c

Family TM4C

Sub Family TM4C123x Series

Memory Map File$(PackagesDir)/TM4C/XML/TM4C123FH6PM_MemoryMap.xml

Register Definition File$(PackagesDir)/TM4C/XML/TM4C123FH6PM_Registers.xml

Vectors File$(PackagesDir)/TM4C/Source/TM4C123FH6PM_Vectors.s

Preprocessor Definitions

ARM_MATH_CM4

TM4C123FH6PM

__TM4C123x_Series_SUBFAMILY

__TM4C_FAMILY

Memory Segments

FLASH 0x00000000 - 0x0003FFFF

RAM 0x20000000 - 0x20007FFF

Project Macros

DeviceHeaderFile=$(PackagesDir)/TM4C/CMSIS/Device/Include/TM4C123/TM4C123.h

DeviceLibraryIdentifier=M4lf

DeviceSystemFile=$(PackagesDir)/TM4C/CMSIS/Device/Source/system_TM4C123.c

DeviceVectorsFile=$(PackagesDir)/TM4C/Source/TM4C123FH6PM_Vectors.s

DeviceFamily=TM4C

DeviceSubFamily=TM4C123x Series

TM4C CPU Support Package Guide TM4C Support Package

60

TM4C123GE6PMDevice Details

CMSIS Header File$(PackagesDir)/TM4C/CMSIS/Device/Include/TM4C123/TM4C123.h

CMSIS Include Path $(PackagesDir)/TM4C/CMSIS/Device/Include

CMSIS System File$(PackagesDir)/TM4C/CMSIS/Device/Source/system_TM4C123.c

Family TM4C

Sub Family TM4C123x Series

Memory Map File$(PackagesDir)/TM4C/XML/TM4C123GE6PM_MemoryMap.xml

Register Definition File$(PackagesDir)/TM4C/XML/TM4C123GE6PM_Registers.xml

Vectors File$(PackagesDir)/TM4C/Source/TM4C123GE6PM_Vectors.s

Preprocessor Definitions

ARM_MATH_CM4

TM4C123GE6PM

__TM4C123x_Series_SUBFAMILY

__TM4C_FAMILY

Memory Segments

FLASH 0x00000000 - 0x0001FFFF

RAM 0x20000000 - 0x20007FFF

Project Macros

DeviceHeaderFile=$(PackagesDir)/TM4C/CMSIS/Device/Include/TM4C123/TM4C123.h

DeviceLibraryIdentifier=M4lf

DeviceSystemFile=$(PackagesDir)/TM4C/CMSIS/Device/Source/system_TM4C123.c

DeviceVectorsFile=$(PackagesDir)/TM4C/Source/TM4C123GE6PM_Vectors.s

DeviceFamily=TM4C

DeviceSubFamily=TM4C123x Series

TM4C CPU Support Package Guide TM4C Support Package

61

TM4C123GE6PZDevice Details

CMSIS Header File$(PackagesDir)/TM4C/CMSIS/Device/Include/TM4C123/TM4C123.h

CMSIS Include Path $(PackagesDir)/TM4C/CMSIS/Device/Include

CMSIS System File$(PackagesDir)/TM4C/CMSIS/Device/Source/system_TM4C123.c

Family TM4C

Sub Family TM4C123x Series

Memory Map File$(PackagesDir)/TM4C/XML/TM4C123GE6PZ_MemoryMap.xml

Register Definition File$(PackagesDir)/TM4C/XML/TM4C123GE6PZ_Registers.xml

Vectors File$(PackagesDir)/TM4C/Source/TM4C123GE6PZ_Vectors.s

Preprocessor Definitions

ARM_MATH_CM4

TM4C123GE6PZ

__TM4C123x_Series_SUBFAMILY

__TM4C_FAMILY

Memory Segments

FLASH 0x00000000 - 0x0001FFFF

RAM 0x20000000 - 0x20007FFF

Project Macros

DeviceHeaderFile=$(PackagesDir)/TM4C/CMSIS/Device/Include/TM4C123/TM4C123.h

DeviceLibraryIdentifier=M4lf

DeviceSystemFile=$(PackagesDir)/TM4C/CMSIS/Device/Source/system_TM4C123.c

DeviceVectorsFile=$(PackagesDir)/TM4C/Source/TM4C123GE6PZ_Vectors.s

DeviceFamily=TM4C

DeviceSubFamily=TM4C123x Series

TM4C CPU Support Package Guide TM4C Support Package

62

TM4C123GH6PGEDevice Details

CMSIS Header File$(PackagesDir)/TM4C/CMSIS/Device/Include/TM4C123/TM4C123.h

CMSIS Include Path $(PackagesDir)/TM4C/CMSIS/Device/Include

CMSIS System File$(PackagesDir)/TM4C/CMSIS/Device/Source/system_TM4C123.c

Family TM4C

Sub Family TM4C123x Series

Memory Map File$(PackagesDir)/TM4C/XML/TM4C123GH6PGE_MemoryMap.xml

Register Definition File$(PackagesDir)/TM4C/XML/TM4C123GH6PGE_Registers.xml

Vectors File$(PackagesDir)/TM4C/Source/TM4C123GH6PGE_Vectors.s

Preprocessor Definitions

ARM_MATH_CM4

TM4C123GH6PGE

__TM4C123x_Series_SUBFAMILY

__TM4C_FAMILY

Memory Segments

FLASH 0x00000000 - 0x0003FFFF

RAM 0x20000000 - 0x20007FFF

Project Macros

DeviceHeaderFile=$(PackagesDir)/TM4C/CMSIS/Device/Include/TM4C123/TM4C123.h

DeviceLibraryIdentifier=M4lf

DeviceSystemFile=$(PackagesDir)/TM4C/CMSIS/Device/Source/system_TM4C123.c

DeviceVectorsFile=$(PackagesDir)/TM4C/Source/TM4C123GH6PGE_Vectors.s

DeviceFamily=TM4C

DeviceSubFamily=TM4C123x Series

TM4C CPU Support Package Guide TM4C Support Package

63

TM4C123GH6PMDevice Details

CMSIS Header File$(PackagesDir)/TM4C/CMSIS/Device/Include/TM4C123/TM4C123.h

CMSIS Include Path $(PackagesDir)/TM4C/CMSIS/Device/Include

CMSIS System File$(PackagesDir)/TM4C/CMSIS/Device/Source/system_TM4C123.c

Family TM4C

Sub Family TM4C123x Series

Memory Map File$(PackagesDir)/TM4C/XML/TM4C123GH6PM_MemoryMap.xml

Register Definition File$(PackagesDir)/TM4C/XML/TM4C123GH6PM_Registers.xml

Vectors File$(PackagesDir)/TM4C/Source/TM4C123GH6PM_Vectors.s

Preprocessor Definitions

ARM_MATH_CM4

TM4C123GH6PM

__TM4C123x_Series_SUBFAMILY

__TM4C_FAMILY

Memory Segments

FLASH 0x00000000 - 0x0003FFFF

RAM 0x20000000 - 0x20007FFF

Project Macros

DeviceHeaderFile=$(PackagesDir)/TM4C/CMSIS/Device/Include/TM4C123/TM4C123.h

DeviceLibraryIdentifier=M4lf

DeviceSystemFile=$(PackagesDir)/TM4C/CMSIS/Device/Source/system_TM4C123.c

DeviceVectorsFile=$(PackagesDir)/TM4C/Source/TM4C123GH6PM_Vectors.s

DeviceFamily=TM4C

DeviceSubFamily=TM4C123x Series

TM4C CPU Support Package Guide TM4C Support Package

64

TM4C123GH6PZDevice Details

CMSIS Header File$(PackagesDir)/TM4C/CMSIS/Device/Include/TM4C123/TM4C123.h

CMSIS Include Path $(PackagesDir)/TM4C/CMSIS/Device/Include

CMSIS System File$(PackagesDir)/TM4C/CMSIS/Device/Source/system_TM4C123.c

Family TM4C

Sub Family TM4C123x Series

Memory Map File$(PackagesDir)/TM4C/XML/TM4C123GH6PZ_MemoryMap.xml

Register Definition File$(PackagesDir)/TM4C/XML/TM4C123GH6PZ_Registers.xml

Vectors File$(PackagesDir)/TM4C/Source/TM4C123GH6PZ_Vectors.s

Preprocessor Definitions

ARM_MATH_CM4

TM4C123GH6PZ

__TM4C123x_Series_SUBFAMILY

__TM4C_FAMILY

Memory Segments

FLASH 0x00000000 - 0x0003FFFF

RAM 0x20000000 - 0x20007FFF

Project Macros

DeviceHeaderFile=$(PackagesDir)/TM4C/CMSIS/Device/Include/TM4C123/TM4C123.h

DeviceLibraryIdentifier=M4lf

DeviceSystemFile=$(PackagesDir)/TM4C/CMSIS/Device/Source/system_TM4C123.c

DeviceVectorsFile=$(PackagesDir)/TM4C/Source/TM4C123GH6PZ_Vectors.s

DeviceFamily=TM4C

DeviceSubFamily=TM4C123x Series

TM4C CPU Support Package Guide TM4C Support Package

65

TM4C123GH6ZRBDevice Details

CMSIS Header File$(PackagesDir)/TM4C/CMSIS/Device/Include/TM4C123/TM4C123.h

CMSIS Include Path $(PackagesDir)/TM4C/CMSIS/Device/Include

CMSIS System File$(PackagesDir)/TM4C/CMSIS/Device/Source/system_TM4C123.c

Family TM4C

Sub Family TM4C123x Series

Memory Map File$(PackagesDir)/TM4C/XML/TM4C123GH6ZRB_MemoryMap.xml

Register Definition File$(PackagesDir)/TM4C/XML/TM4C123GH6ZRB_Registers.xml

Vectors File$(PackagesDir)/TM4C/Source/TM4C123GH6ZRB_Vectors.s

Preprocessor Definitions

ARM_MATH_CM4

TM4C123GH6ZRB

__TM4C123x_Series_SUBFAMILY

__TM4C_FAMILY

Memory Segments

FLASH 0x00000000 - 0x0003FFFF

RAM 0x20000000 - 0x20007FFF

Project Macros

DeviceHeaderFile=$(PackagesDir)/TM4C/CMSIS/Device/Include/TM4C123/TM4C123.h

DeviceLibraryIdentifier=M4lf

DeviceSystemFile=$(PackagesDir)/TM4C/CMSIS/Device/Source/system_TM4C123.c

DeviceVectorsFile=$(PackagesDir)/TM4C/Source/TM4C123GH6ZRB_Vectors.s

DeviceFamily=TM4C

DeviceSubFamily=TM4C123x Series

TM4C CPU Support Package Guide TM4C Support Package

66

TM4C129x Series FamilyTM4C1290NCPDT

TM4C1290NCZAD

TM4C1292NCPDT

TM4C1292NCZAD

TM4C1294KCPDT

TM4C1294NCPDT

TM4C1294NCZAD

TM4C1297NCZAD

TM4C1299KCZAD

TM4C1299NCZAD

TM4C129CNCPDT

TM4C129CNCZAD

TM4C129DNCPDT

TM4C129DNCZAD

TM4C129EKCPDT

TM4C129ENCPDT

TM4C129ENCZAD

TM4C129LNCZAD

TM4C129XKCZAD

TM4C129XNCZAD

TM4C CPU Support Package Guide TM4C Support Package

67

TM4C1290NCPDTDevice Details

CMSIS Header File$(PackagesDir)/TM4C/CMSIS/Device/Include/TM4C129/TM4C129.h

CMSIS Include Path $(PackagesDir)/TM4C/CMSIS/Device/Include

CMSIS System File$(PackagesDir)/TM4C/CMSIS/Device/Source/system_tm4c129.c

Family TM4C

Sub Family TM4C129x Series

Memory Map File$(PackagesDir)/TM4C/XML/TM4C1290NCPDT_MemoryMap.xml

Register Definition File$(PackagesDir)/TM4C/XML/TM4C1290NCPDT_Registers.xml

Vectors File$(PackagesDir)/TM4C/Source/TM4C1290NCPDT_Vectors.s

Preprocessor Definitions

ARM_MATH_CM4

TM4C1290NCPDT

__TM4C129x_Series_SUBFAMILY

__TM4C_FAMILY

Memory Segments

FLASH 0x00000000 - 0x000FFFFF

RAM 0x20000000 - 0x2003FFFF

Project Macros

DeviceHeaderFile=$(PackagesDir)/TM4C/CMSIS/Device/Include/TM4C129/TM4C129.h

DeviceLibraryIdentifier=M4lf

DeviceSystemFile=$(PackagesDir)/TM4C/CMSIS/Device/Source/system_tm4c129.c

DeviceVectorsFile=$(PackagesDir)/TM4C/Source/TM4C1290NCPDT_Vectors.s

DeviceFamily=TM4C

DeviceSubFamily=TM4C129x Series

TM4C CPU Support Package Guide TM4C Support Package

68

TM4C1290NCZADDevice Details

CMSIS Header File$(PackagesDir)/TM4C/CMSIS/Device/Include/TM4C129/TM4C129.h

CMSIS Include Path $(PackagesDir)/TM4C/CMSIS/Device/Include

CMSIS System File$(PackagesDir)/TM4C/CMSIS/Device/Source/system_tm4c129.c

Family TM4C

Sub Family TM4C129x Series

Memory Map File$(PackagesDir)/TM4C/XML/TM4C1290NCZAD_MemoryMap.xml

Register Definition File$(PackagesDir)/TM4C/XML/TM4C1290NCZAD_Registers.xml

Vectors File$(PackagesDir)/TM4C/Source/TM4C1290NCZAD_Vectors.s

Preprocessor Definitions

ARM_MATH_CM4

TM4C1290NCZAD

__TM4C129x_Series_SUBFAMILY

__TM4C_FAMILY

Memory Segments

FLASH 0x00000000 - 0x000FFFFF

RAM 0x20000000 - 0x2003FFFF

Project Macros

DeviceHeaderFile=$(PackagesDir)/TM4C/CMSIS/Device/Include/TM4C129/TM4C129.h

DeviceLibraryIdentifier=M4lf

DeviceSystemFile=$(PackagesDir)/TM4C/CMSIS/Device/Source/system_tm4c129.c

DeviceVectorsFile=$(PackagesDir)/TM4C/Source/TM4C1290NCZAD_Vectors.s

DeviceFamily=TM4C

DeviceSubFamily=TM4C129x Series

TM4C CPU Support Package Guide TM4C Support Package

69

TM4C1292NCPDTDevice Details

CMSIS Header File$(PackagesDir)/TM4C/CMSIS/Device/Include/TM4C129/TM4C129.h

CMSIS Include Path $(PackagesDir)/TM4C/CMSIS/Device/Include

CMSIS System File$(PackagesDir)/TM4C/CMSIS/Device/Source/system_tm4c129.c

Family TM4C

Sub Family TM4C129x Series

Memory Map File$(PackagesDir)/TM4C/XML/TM4C1292NCPDT_MemoryMap.xml

Register Definition File$(PackagesDir)/TM4C/XML/TM4C1292NCPDT_Registers.xml

Vectors File$(PackagesDir)/TM4C/Source/TM4C1292NCPDT_Vectors.s

Preprocessor Definitions

ARM_MATH_CM4

TM4C1292NCPDT

__TM4C129x_Series_SUBFAMILY

__TM4C_FAMILY

Memory Segments

FLASH 0x00000000 - 0x000FFFFF

RAM 0x20000000 - 0x2003FFFF

Project Macros

DeviceHeaderFile=$(PackagesDir)/TM4C/CMSIS/Device/Include/TM4C129/TM4C129.h

DeviceLibraryIdentifier=M4lf

DeviceSystemFile=$(PackagesDir)/TM4C/CMSIS/Device/Source/system_tm4c129.c

DeviceVectorsFile=$(PackagesDir)/TM4C/Source/TM4C1292NCPDT_Vectors.s

DeviceFamily=TM4C

DeviceSubFamily=TM4C129x Series

TM4C CPU Support Package Guide TM4C Support Package

70

TM4C1292NCZADDevice Details

CMSIS Header File$(PackagesDir)/TM4C/CMSIS/Device/Include/TM4C129/TM4C129.h

CMSIS Include Path $(PackagesDir)/TM4C/CMSIS/Device/Include

CMSIS System File$(PackagesDir)/TM4C/CMSIS/Device/Source/system_tm4c129.c

Family TM4C

Sub Family TM4C129x Series

Memory Map File$(PackagesDir)/TM4C/XML/TM4C1292NCZAD_MemoryMap.xml

Register Definition File$(PackagesDir)/TM4C/XML/TM4C1292NCZAD_Registers.xml

Vectors File$(PackagesDir)/TM4C/Source/TM4C1292NCZAD_Vectors.s

Preprocessor Definitions

ARM_MATH_CM4

TM4C1292NCZAD

__TM4C129x_Series_SUBFAMILY

__TM4C_FAMILY

Memory Segments

FLASH 0x00000000 - 0x000FFFFF

RAM 0x20000000 - 0x2003FFFF

Project Macros

DeviceHeaderFile=$(PackagesDir)/TM4C/CMSIS/Device/Include/TM4C129/TM4C129.h

DeviceLibraryIdentifier=M4lf

DeviceSystemFile=$(PackagesDir)/TM4C/CMSIS/Device/Source/system_tm4c129.c

DeviceVectorsFile=$(PackagesDir)/TM4C/Source/TM4C1292NCZAD_Vectors.s

DeviceFamily=TM4C

DeviceSubFamily=TM4C129x Series

TM4C CPU Support Package Guide TM4C Support Package

71

TM4C1294KCPDTDevice Details

CMSIS Header File$(PackagesDir)/TM4C/CMSIS/Device/Include/TM4C129/TM4C129.h

CMSIS Include Path $(PackagesDir)/TM4C/CMSIS/Device/Include

CMSIS System File$(PackagesDir)/TM4C/CMSIS/Device/Source/system_tm4c129.c

Family TM4C

Sub Family TM4C129x Series

Memory Map File$(PackagesDir)/TM4C/XML/TM4C1294KCPDT_MemoryMap.xml

Register Definition File$(PackagesDir)/TM4C/XML/TM4C1294KCPDT_Registers.xml

Vectors File$(PackagesDir)/TM4C/Source/TM4C1294KCPDT_Vectors.s

Preprocessor Definitions

ARM_MATH_CM4

TM4C1294KCPDT

__TM4C129x_Series_SUBFAMILY

__TM4C_FAMILY

Memory Segments

FLASH 0x00000000 - 0x0007FFFF

RAM 0x20000000 - 0x2003FFFF

Project Macros

DeviceHeaderFile=$(PackagesDir)/TM4C/CMSIS/Device/Include/TM4C129/TM4C129.h

DeviceLibraryIdentifier=M4lf

DeviceSystemFile=$(PackagesDir)/TM4C/CMSIS/Device/Source/system_tm4c129.c

DeviceVectorsFile=$(PackagesDir)/TM4C/Source/TM4C1294KCPDT_Vectors.s

DeviceFamily=TM4C

DeviceSubFamily=TM4C129x Series

TM4C CPU Support Package Guide TM4C Support Package

72

TM4C1294NCPDTDevice Details

CMSIS Header File$(PackagesDir)/TM4C/CMSIS/Device/Include/TM4C129/TM4C129.h

CMSIS Include Path $(PackagesDir)/TM4C/CMSIS/Device/Include

CMSIS System File$(PackagesDir)/TM4C/CMSIS/Device/Source/system_tm4c129.c

Family TM4C

Sub Family TM4C129x Series

Memory Map File$(PackagesDir)/TM4C/XML/TM4C1294NCPDT_MemoryMap.xml

Register Definition File$(PackagesDir)/TM4C/XML/TM4C1294NCPDT_Registers.xml

Vectors File$(PackagesDir)/TM4C/Source/TM4C1294NCPDT_Vectors.s

Preprocessor Definitions

ARM_MATH_CM4

TM4C1294NCPDT

__TM4C129x_Series_SUBFAMILY

__TM4C_FAMILY

Memory Segments

FLASH 0x00000000 - 0x000FFFFF

RAM 0x20000000 - 0x2003FFFF

Project Macros

DeviceHeaderFile=$(PackagesDir)/TM4C/CMSIS/Device/Include/TM4C129/TM4C129.h

DeviceLibraryIdentifier=M4lf

DeviceSystemFile=$(PackagesDir)/TM4C/CMSIS/Device/Source/system_tm4c129.c

DeviceVectorsFile=$(PackagesDir)/TM4C/Source/TM4C1294NCPDT_Vectors.s

DeviceFamily=TM4C

DeviceSubFamily=TM4C129x Series

TM4C CPU Support Package Guide TM4C Support Package

73

TM4C1294NCZADDevice Details

CMSIS Header File$(PackagesDir)/TM4C/CMSIS/Device/Include/TM4C129/TM4C129.h

CMSIS Include Path $(PackagesDir)/TM4C/CMSIS/Device/Include

CMSIS System File$(PackagesDir)/TM4C/CMSIS/Device/Source/system_tm4c129.c

Family TM4C

Sub Family TM4C129x Series

Memory Map File$(PackagesDir)/TM4C/XML/TM4C1294NCZAD_MemoryMap.xml

Register Definition File$(PackagesDir)/TM4C/XML/TM4C1294NCZAD_Registers.xml

Vectors File$(PackagesDir)/TM4C/Source/TM4C1294NCZAD_Vectors.s

Preprocessor Definitions

ARM_MATH_CM4

TM4C1294NCZAD

__TM4C129x_Series_SUBFAMILY

__TM4C_FAMILY

Memory Segments

FLASH 0x00000000 - 0x000FFFFF

RAM 0x20000000 - 0x2003FFFF

Project Macros

DeviceHeaderFile=$(PackagesDir)/TM4C/CMSIS/Device/Include/TM4C129/TM4C129.h

DeviceLibraryIdentifier=M4lf

DeviceSystemFile=$(PackagesDir)/TM4C/CMSIS/Device/Source/system_tm4c129.c

DeviceVectorsFile=$(PackagesDir)/TM4C/Source/TM4C1294NCZAD_Vectors.s

DeviceFamily=TM4C

DeviceSubFamily=TM4C129x Series

TM4C CPU Support Package Guide TM4C Support Package

74

TM4C1297NCZADDevice Details

CMSIS Header File$(PackagesDir)/TM4C/CMSIS/Device/Include/TM4C129/TM4C129.h

CMSIS Include Path $(PackagesDir)/TM4C/CMSIS/Device/Include

CMSIS System File$(PackagesDir)/TM4C/CMSIS/Device/Source/system_tm4c129.c

Family TM4C

Sub Family TM4C129x Series

Memory Map File$(PackagesDir)/TM4C/XML/TM4C1297NCZAD_MemoryMap.xml

Register Definition File$(PackagesDir)/TM4C/XML/TM4C1297NCZAD_Registers.xml

Vectors File$(PackagesDir)/TM4C/Source/TM4C1297NCZAD_Vectors.s

Preprocessor Definitions

ARM_MATH_CM4

TM4C1297NCZAD

__TM4C129x_Series_SUBFAMILY

__TM4C_FAMILY

Memory Segments

FLASH 0x00000000 - 0x000FFFFF

RAM 0x20000000 - 0x2003FFFF

Project Macros

DeviceHeaderFile=$(PackagesDir)/TM4C/CMSIS/Device/Include/TM4C129/TM4C129.h

DeviceLibraryIdentifier=M4lf

DeviceSystemFile=$(PackagesDir)/TM4C/CMSIS/Device/Source/system_tm4c129.c

DeviceVectorsFile=$(PackagesDir)/TM4C/Source/TM4C1297NCZAD_Vectors.s

DeviceFamily=TM4C

DeviceSubFamily=TM4C129x Series

TM4C CPU Support Package Guide TM4C Support Package

75

TM4C1299KCZADDevice Details

CMSIS Header File$(PackagesDir)/TM4C/CMSIS/Device/Include/TM4C129/TM4C129.h

CMSIS Include Path $(PackagesDir)/TM4C/CMSIS/Device/Include

CMSIS System File$(PackagesDir)/TM4C/CMSIS/Device/Source/system_tm4c129.c

Family TM4C

Sub Family TM4C129x Series

Memory Map File$(PackagesDir)/TM4C/XML/TM4C1299KCZAD_MemoryMap.xml

Register Definition File$(PackagesDir)/TM4C/XML/TM4C1299KCZAD_Registers.xml

Vectors File$(PackagesDir)/TM4C/Source/TM4C1299KCZAD_Vectors.s

Preprocessor Definitions

ARM_MATH_CM4

TM4C1299KCZAD

__TM4C129x_Series_SUBFAMILY

__TM4C_FAMILY

Memory Segments

FLASH 0x00000000 - 0x0007FFFF

RAM 0x20000000 - 0x2003FFFF

Project Macros

DeviceHeaderFile=$(PackagesDir)/TM4C/CMSIS/Device/Include/TM4C129/TM4C129.h

DeviceLibraryIdentifier=M4lf

DeviceSystemFile=$(PackagesDir)/TM4C/CMSIS/Device/Source/system_tm4c129.c

DeviceVectorsFile=$(PackagesDir)/TM4C/Source/TM4C1299KCZAD_Vectors.s

DeviceFamily=TM4C

DeviceSubFamily=TM4C129x Series

TM4C CPU Support Package Guide TM4C Support Package

76

TM4C1299NCZADDevice Details

CMSIS Header File$(PackagesDir)/TM4C/CMSIS/Device/Include/TM4C129/TM4C129.h

CMSIS Include Path $(PackagesDir)/TM4C/CMSIS/Device/Include

CMSIS System File$(PackagesDir)/TM4C/CMSIS/Device/Source/system_tm4c129.c

Family TM4C

Sub Family TM4C129x Series

Memory Map File$(PackagesDir)/TM4C/XML/TM4C1299NCZAD_MemoryMap.xml

Register Definition File$(PackagesDir)/TM4C/XML/TM4C1299NCZAD_Registers.xml

Vectors File$(PackagesDir)/TM4C/Source/TM4C1299NCZAD_Vectors.s

Preprocessor Definitions

ARM_MATH_CM4

TM4C1299NCZAD

__TM4C129x_Series_SUBFAMILY

__TM4C_FAMILY

Memory Segments

FLASH 0x00000000 - 0x000FFFFF

RAM 0x20000000 - 0x2003FFFF

Project Macros

DeviceHeaderFile=$(PackagesDir)/TM4C/CMSIS/Device/Include/TM4C129/TM4C129.h

DeviceLibraryIdentifier=M4lf

DeviceSystemFile=$(PackagesDir)/TM4C/CMSIS/Device/Source/system_tm4c129.c

DeviceVectorsFile=$(PackagesDir)/TM4C/Source/TM4C1299NCZAD_Vectors.s

DeviceFamily=TM4C

DeviceSubFamily=TM4C129x Series

TM4C CPU Support Package Guide TM4C Support Package

77

TM4C129CNCPDTDevice Details

CMSIS Header File$(PackagesDir)/TM4C/CMSIS/Device/Include/TM4C129/TM4C129.h

CMSIS Include Path $(PackagesDir)/TM4C/CMSIS/Device/Include

CMSIS System File$(PackagesDir)/TM4C/CMSIS/Device/Source/system_tm4c129.c

Family TM4C

Sub Family TM4C129x Series

Memory Map File$(PackagesDir)/TM4C/XML/TM4C129CNCPDT_MemoryMap.xml

Register Definition File$(PackagesDir)/TM4C/XML/TM4C129CNCPDT_Registers.xml

Vectors File$(PackagesDir)/TM4C/Source/TM4C129CNCPDT_Vectors.s

Preprocessor Definitions

ARM_MATH_CM4

TM4C129CNCPDT

__TM4C129x_Series_SUBFAMILY

__TM4C_FAMILY

Memory Segments

FLASH 0x00000000 - 0x000FFFFF

RAM 0x20000000 - 0x2003FFFF

Project Macros

DeviceHeaderFile=$(PackagesDir)/TM4C/CMSIS/Device/Include/TM4C129/TM4C129.h

DeviceLibraryIdentifier=M4lf

DeviceSystemFile=$(PackagesDir)/TM4C/CMSIS/Device/Source/system_tm4c129.c

DeviceVectorsFile=$(PackagesDir)/TM4C/Source/TM4C129CNCPDT_Vectors.s

DeviceFamily=TM4C

DeviceSubFamily=TM4C129x Series

TM4C CPU Support Package Guide TM4C Support Package

78

TM4C129CNCZADDevice Details

CMSIS Header File$(PackagesDir)/TM4C/CMSIS/Device/Include/TM4C129/TM4C129.h

CMSIS Include Path $(PackagesDir)/TM4C/CMSIS/Device/Include

CMSIS System File$(PackagesDir)/TM4C/CMSIS/Device/Source/system_tm4c129.c

Family TM4C

Sub Family TM4C129x Series

Memory Map File$(PackagesDir)/TM4C/XML/TM4C129CNCZAD_MemoryMap.xml

Register Definition File$(PackagesDir)/TM4C/XML/TM4C129CNCZAD_Registers.xml

Vectors File$(PackagesDir)/TM4C/Source/TM4C129CNCZAD_Vectors.s

Preprocessor Definitions

ARM_MATH_CM4

TM4C129CNCZAD

__TM4C129x_Series_SUBFAMILY

__TM4C_FAMILY

Memory Segments

FLASH 0x00000000 - 0x000FFFFF

RAM 0x20000000 - 0x2003FFFF

Project Macros

DeviceHeaderFile=$(PackagesDir)/TM4C/CMSIS/Device/Include/TM4C129/TM4C129.h

DeviceLibraryIdentifier=M4lf

DeviceSystemFile=$(PackagesDir)/TM4C/CMSIS/Device/Source/system_tm4c129.c

DeviceVectorsFile=$(PackagesDir)/TM4C/Source/TM4C129CNCZAD_Vectors.s

DeviceFamily=TM4C

DeviceSubFamily=TM4C129x Series

TM4C CPU Support Package Guide TM4C Support Package

79

TM4C129DNCPDTDevice Details

CMSIS Header File$(PackagesDir)/TM4C/CMSIS/Device/Include/TM4C129/TM4C129.h

CMSIS Include Path $(PackagesDir)/TM4C/CMSIS/Device/Include

CMSIS System File$(PackagesDir)/TM4C/CMSIS/Device/Source/system_tm4c129.c

Family TM4C

Sub Family TM4C129x Series

Memory Map File$(PackagesDir)/TM4C/XML/TM4C129DNCPDT_MemoryMap.xml

Register Definition File$(PackagesDir)/TM4C/XML/TM4C129DNCPDT_Registers.xml

Vectors File$(PackagesDir)/TM4C/Source/TM4C129DNCPDT_Vectors.s

Preprocessor Definitions

ARM_MATH_CM4

TM4C129DNCPDT

__TM4C129x_Series_SUBFAMILY

__TM4C_FAMILY

Memory Segments

FLASH 0x00000000 - 0x000FFFFF

RAM 0x20000000 - 0x2003FFFF

Project Macros

DeviceHeaderFile=$(PackagesDir)/TM4C/CMSIS/Device/Include/TM4C129/TM4C129.h

DeviceLibraryIdentifier=M4lf

DeviceSystemFile=$(PackagesDir)/TM4C/CMSIS/Device/Source/system_tm4c129.c

DeviceVectorsFile=$(PackagesDir)/TM4C/Source/TM4C129DNCPDT_Vectors.s

DeviceFamily=TM4C

DeviceSubFamily=TM4C129x Series

TM4C CPU Support Package Guide TM4C Support Package

80

TM4C129DNCZADDevice Details

CMSIS Header File$(PackagesDir)/TM4C/CMSIS/Device/Include/TM4C129/TM4C129.h

CMSIS Include Path $(PackagesDir)/TM4C/CMSIS/Device/Include

CMSIS System File$(PackagesDir)/TM4C/CMSIS/Device/Source/system_tm4c129.c

Family TM4C

Sub Family TM4C129x Series

Memory Map File$(PackagesDir)/TM4C/XML/TM4C129DNCZAD_MemoryMap.xml

Register Definition File$(PackagesDir)/TM4C/XML/TM4C129DNCZAD_Registers.xml

Vectors File$(PackagesDir)/TM4C/Source/TM4C129DNCZAD_Vectors.s

Preprocessor Definitions

ARM_MATH_CM4

TM4C129DNCZAD

__TM4C129x_Series_SUBFAMILY

__TM4C_FAMILY

Memory Segments

FLASH 0x00000000 - 0x000FFFFF

RAM 0x20000000 - 0x2003FFFF

Project Macros

DeviceHeaderFile=$(PackagesDir)/TM4C/CMSIS/Device/Include/TM4C129/TM4C129.h

DeviceLibraryIdentifier=M4lf

DeviceSystemFile=$(PackagesDir)/TM4C/CMSIS/Device/Source/system_tm4c129.c

DeviceVectorsFile=$(PackagesDir)/TM4C/Source/TM4C129DNCZAD_Vectors.s

DeviceFamily=TM4C

DeviceSubFamily=TM4C129x Series

TM4C CPU Support Package Guide TM4C Support Package

81

TM4C129EKCPDTDevice Details

CMSIS Header File$(PackagesDir)/TM4C/CMSIS/Device/Include/TM4C129/TM4C129.h

CMSIS Include Path $(PackagesDir)/TM4C/CMSIS/Device/Include

CMSIS System File$(PackagesDir)/TM4C/CMSIS/Device/Source/system_tm4c129.c

Family TM4C

Sub Family TM4C129x Series

Memory Map File$(PackagesDir)/TM4C/XML/TM4C129EKCPDT_MemoryMap.xml

Register Definition File$(PackagesDir)/TM4C/XML/TM4C129EKCPDT_Registers.xml

Vectors File$(PackagesDir)/TM4C/Source/TM4C129EKCPDT_Vectors.s

Preprocessor Definitions

ARM_MATH_CM4

TM4C129EKCPDT

__TM4C129x_Series_SUBFAMILY

__TM4C_FAMILY

Memory Segments

FLASH 0x00000000 - 0x0007FFFF

RAM 0x20000000 - 0x2003FFFF

Project Macros

DeviceHeaderFile=$(PackagesDir)/TM4C/CMSIS/Device/Include/TM4C129/TM4C129.h

DeviceLibraryIdentifier=M4lf

DeviceSystemFile=$(PackagesDir)/TM4C/CMSIS/Device/Source/system_tm4c129.c

DeviceVectorsFile=$(PackagesDir)/TM4C/Source/TM4C129EKCPDT_Vectors.s

DeviceFamily=TM4C

DeviceSubFamily=TM4C129x Series

TM4C CPU Support Package Guide TM4C Support Package

82

TM4C129ENCPDTDevice Details

CMSIS Header File$(PackagesDir)/TM4C/CMSIS/Device/Include/TM4C129/TM4C129.h

CMSIS Include Path $(PackagesDir)/TM4C/CMSIS/Device/Include

CMSIS System File$(PackagesDir)/TM4C/CMSIS/Device/Source/system_tm4c129.c

Family TM4C

Sub Family TM4C129x Series

Memory Map File$(PackagesDir)/TM4C/XML/TM4C129ENCPDT_MemoryMap.xml

Register Definition File$(PackagesDir)/TM4C/XML/TM4C129ENCPDT_Registers.xml

Vectors File$(PackagesDir)/TM4C/Source/TM4C129ENCPDT_Vectors.s

Preprocessor Definitions

ARM_MATH_CM4

TM4C129ENCPDT

__TM4C129x_Series_SUBFAMILY

__TM4C_FAMILY

Memory Segments

FLASH 0x00000000 - 0x000FFFFF

RAM 0x20000000 - 0x2003FFFF

Project Macros

DeviceHeaderFile=$(PackagesDir)/TM4C/CMSIS/Device/Include/TM4C129/TM4C129.h

DeviceLibraryIdentifier=M4lf

DeviceSystemFile=$(PackagesDir)/TM4C/CMSIS/Device/Source/system_tm4c129.c

DeviceVectorsFile=$(PackagesDir)/TM4C/Source/TM4C129ENCPDT_Vectors.s

DeviceFamily=TM4C

DeviceSubFamily=TM4C129x Series

TM4C CPU Support Package Guide TM4C Support Package

83

TM4C129ENCZADDevice Details

CMSIS Header File$(PackagesDir)/TM4C/CMSIS/Device/Include/TM4C129/TM4C129.h

CMSIS Include Path $(PackagesDir)/TM4C/CMSIS/Device/Include

CMSIS System File$(PackagesDir)/TM4C/CMSIS/Device/Source/system_tm4c129.c

Family TM4C

Sub Family TM4C129x Series

Memory Map File$(PackagesDir)/TM4C/XML/TM4C129ENCZAD_MemoryMap.xml

Register Definition File$(PackagesDir)/TM4C/XML/TM4C129ENCZAD_Registers.xml

Vectors File$(PackagesDir)/TM4C/Source/TM4C129ENCZAD_Vectors.s

Preprocessor Definitions

ARM_MATH_CM4

TM4C129ENCZAD

__TM4C129x_Series_SUBFAMILY

__TM4C_FAMILY

Memory Segments

FLASH 0x00000000 - 0x000FFFFF

RAM 0x20000000 - 0x2003FFFF

Project Macros

DeviceHeaderFile=$(PackagesDir)/TM4C/CMSIS/Device/Include/TM4C129/TM4C129.h

DeviceLibraryIdentifier=M4lf

DeviceSystemFile=$(PackagesDir)/TM4C/CMSIS/Device/Source/system_tm4c129.c

DeviceVectorsFile=$(PackagesDir)/TM4C/Source/TM4C129ENCZAD_Vectors.s

DeviceFamily=TM4C

DeviceSubFamily=TM4C129x Series

TM4C CPU Support Package Guide TM4C Support Package

84

TM4C129LNCZADDevice Details

CMSIS Header File$(PackagesDir)/TM4C/CMSIS/Device/Include/TM4C129/TM4C129.h

CMSIS Include Path $(PackagesDir)/TM4C/CMSIS/Device/Include

CMSIS System File$(PackagesDir)/TM4C/CMSIS/Device/Source/system_tm4c129.c

Family TM4C

Sub Family TM4C129x Series

Memory Map File$(PackagesDir)/TM4C/XML/TM4C129LNCZAD_MemoryMap.xml

Register Definition File$(PackagesDir)/TM4C/XML/TM4C129LNCZAD_Registers.xml

Vectors File$(PackagesDir)/TM4C/Source/TM4C129LNCZAD_Vectors.s

Preprocessor Definitions

ARM_MATH_CM4

TM4C129LNCZAD

__TM4C129x_Series_SUBFAMILY

__TM4C_FAMILY

Memory Segments

FLASH 0x00000000 - 0x000FFFFF

RAM 0x20000000 - 0x2003FFFF

Project Macros

DeviceHeaderFile=$(PackagesDir)/TM4C/CMSIS/Device/Include/TM4C129/TM4C129.h

DeviceLibraryIdentifier=M4lf

DeviceSystemFile=$(PackagesDir)/TM4C/CMSIS/Device/Source/system_tm4c129.c

DeviceVectorsFile=$(PackagesDir)/TM4C/Source/TM4C129LNCZAD_Vectors.s

DeviceFamily=TM4C

DeviceSubFamily=TM4C129x Series

TM4C CPU Support Package Guide TM4C Support Package

85

TM4C129XKCZADDevice Details

CMSIS Header File$(PackagesDir)/TM4C/CMSIS/Device/Include/TM4C129/TM4C129.h

CMSIS Include Path $(PackagesDir)/TM4C/CMSIS/Device/Include

CMSIS System File$(PackagesDir)/TM4C/CMSIS/Device/Source/system_tm4c129.c

Family TM4C

Sub Family TM4C129x Series

Memory Map File$(PackagesDir)/TM4C/XML/TM4C129XKCZAD_MemoryMap.xml

Register Definition File$(PackagesDir)/TM4C/XML/TM4C129XKCZAD_Registers.xml

Vectors File$(PackagesDir)/TM4C/Source/TM4C129XKCZAD_Vectors.s

Preprocessor Definitions

ARM_MATH_CM4

TM4C129XKCZAD

__TM4C129x_Series_SUBFAMILY

__TM4C_FAMILY

Memory Segments

FLASH 0x00000000 - 0x0007FFFF

RAM 0x20000000 - 0x2003FFFF

Project Macros

DeviceHeaderFile=$(PackagesDir)/TM4C/CMSIS/Device/Include/TM4C129/TM4C129.h

DeviceLibraryIdentifier=M4lf

DeviceSystemFile=$(PackagesDir)/TM4C/CMSIS/Device/Source/system_tm4c129.c

DeviceVectorsFile=$(PackagesDir)/TM4C/Source/TM4C129XKCZAD_Vectors.s

DeviceFamily=TM4C

DeviceSubFamily=TM4C129x Series

TM4C CPU Support Package Guide TM4C Support Package

86

TM4C129XNCZADDevice Details

CMSIS Header File$(PackagesDir)/TM4C/CMSIS/Device/Include/TM4C129/TM4C129.h

CMSIS Include Path $(PackagesDir)/TM4C/CMSIS/Device/Include

CMSIS System File$(PackagesDir)/TM4C/CMSIS/Device/Source/system_tm4c129.c

Family TM4C

Sub Family TM4C129x Series

Memory Map File$(PackagesDir)/TM4C/XML/TM4C129XNCZAD_MemoryMap.xml

Register Definition File$(PackagesDir)/TM4C/XML/TM4C129XNCZAD_Registers.xml

Vectors File$(PackagesDir)/TM4C/Source/TM4C129XNCZAD_Vectors.s

Preprocessor Definitions

ARM_MATH_CM4

TM4C129XNCZAD

__TM4C129x_Series_SUBFAMILY

__TM4C_FAMILY

Memory Segments

FLASH 0x00000000 - 0x000FFFFF

RAM 0x20000000 - 0x2003FFFF

Project Macros

DeviceHeaderFile=$(PackagesDir)/TM4C/CMSIS/Device/Include/TM4C129/TM4C129.h

DeviceLibraryIdentifier=M4lf

DeviceSystemFile=$(PackagesDir)/TM4C/CMSIS/Device/Source/system_tm4c129.c

DeviceVectorsFile=$(PackagesDir)/TM4C/Source/TM4C129XNCZAD_Vectors.s

DeviceFamily=TM4C

DeviceSubFamily=TM4C129x Series