-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
f15b881
commit 0e404c2
Showing
10 changed files
with
832 additions
and
0 deletions.
There are no files selected for viewing
79 changes: 79 additions & 0 deletions
79
tiva/TivaWare/examples/boards/ek-tm4c1294xl/motorControllerSeeker/Makefile
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,79 @@ | ||
#****************************************************************************** | ||
# | ||
# Makefile - Rules for building the blinky example. | ||
# | ||
# Copyright (c) 2013-2020 Texas Instruments Incorporated. All rights reserved. | ||
# Software License Agreement | ||
# | ||
# Texas Instruments (TI) is supplying this software for use solely and | ||
# exclusively on TI's microcontroller products. The software is owned by | ||
# TI and/or its suppliers, and is protected under applicable copyright | ||
# laws. You may not combine this software with "viral" open-source | ||
# software in order to form a larger program. | ||
# | ||
# THIS SOFTWARE IS PROVIDED "AS IS" AND WITH ALL FAULTS. | ||
# NO WARRANTIES, WHETHER EXPRESS, IMPLIED OR STATUTORY, INCLUDING, BUT | ||
# NOT LIMITED TO, IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR | ||
# A PARTICULAR PURPOSE APPLY TO THIS SOFTWARE. TI SHALL NOT, UNDER ANY | ||
# CIRCUMSTANCES, BE LIABLE FOR SPECIAL, INCIDENTAL, OR CONSEQUENTIAL | ||
# DAMAGES, FOR ANY REASON WHATSOEVER. | ||
# | ||
# This is part of revision 2.2.0.295 of the EK-TM4C1294XL Firmware Package. | ||
# | ||
#****************************************************************************** | ||
|
||
# | ||
# Defines the part type that this project uses. | ||
# | ||
PART=TM4C1294NCPDT | ||
|
||
# | ||
# The base directory for TivaWare. | ||
# | ||
ROOT=../../../.. | ||
|
||
# | ||
# Include the common make definitions. | ||
# | ||
include ${ROOT}/makedefs | ||
|
||
# | ||
# Where to find header files that do not live in the source directory. | ||
# | ||
IPATH=../../../.. | ||
|
||
# | ||
# The default rule, which causes the blinky example to be built. | ||
# | ||
all: ${COMPILER} | ||
all: ${COMPILER}/motorControllerSeeker.axf | ||
|
||
# | ||
# The rule to clean out all the build products. | ||
# | ||
clean: | ||
@rm -rf ${COMPILER} ${wildcard *~} | ||
|
||
# | ||
# The rule to create the target directory. | ||
# | ||
${COMPILER}: | ||
@mkdir -p ${COMPILER} | ||
|
||
# | ||
# Rules for building the blinky example. | ||
# | ||
${COMPILER}/motorControllerSeeker.axf: ${COMPILER}/motorControllerSeeker.o | ||
${COMPILER}/motorControllerSeeker.axf: ${COMPILER}/startup_${COMPILER}.o | ||
${COMPILER}/motorControllerSeeker.axf: ${ROOT}/driverlib/${COMPILER}/libdriver.a | ||
${COMPILER}/motorControllerSeeker.axf: motorControllerSeeker.ld | ||
SCATTERgcc_motorControllerSeeker=motorControllerSeeker.ld | ||
ENTRY_motorControllerSeeker=ResetISR | ||
CFLAGSgcc=-DTARGET_IS_TM4C129_RA1 | ||
|
||
# | ||
# Include the automatically generated dependency files. | ||
# | ||
ifneq (${MAKECMDGOALS},clean) | ||
-include ${wildcard ${COMPILER}/*.d} __dummy__ | ||
endif |
Binary file added
BIN
+48.5 KB
tiva/TivaWare/examples/boards/ek-tm4c1294xl/motorControllerSeeker/gcc/motorController.axf
Binary file not shown.
Binary file added
BIN
+8.29 KB
tiva/TivaWare/examples/boards/ek-tm4c1294xl/motorControllerSeeker/gcc/motorController.bin
Binary file not shown.
26 changes: 26 additions & 0 deletions
26
tiva/TivaWare/examples/boards/ek-tm4c1294xl/motorControllerSeeker/gcc/motorController.d
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
gcc/motorController.o: motorController.c /usr/include/newlib/stdio.h \ | ||
/usr/include/newlib/_ansi.h /usr/include/newlib/newlib.h \ | ||
/usr/include/newlib/_newlib_version.h /usr/include/newlib/sys/config.h \ | ||
/usr/include/newlib/machine/ieeefp.h /usr/include/newlib/sys/features.h \ | ||
/usr/include/newlib/sys/cdefs.h \ | ||
/usr/include/newlib/machine/_default_types.h \ | ||
/usr/lib/gcc/arm-none-eabi/12.2.1/include/stddef.h \ | ||
/usr/lib/gcc/arm-none-eabi/12.2.1/include/stdarg.h \ | ||
/usr/include/newlib/sys/reent.h /usr/include/newlib/_ansi.h \ | ||
/usr/include/newlib/sys/_types.h /usr/include/newlib/machine/_types.h \ | ||
/usr/include/newlib/sys/lock.h /usr/include/newlib/sys/types.h \ | ||
/usr/include/newlib/sys/_stdint.h \ | ||
/usr/include/newlib/sys/_pthreadtypes.h \ | ||
/usr/include/newlib/machine/types.h /usr/include/newlib/sys/stdio.h \ | ||
/usr/lib/gcc/arm-none-eabi/12.2.1/include/stdint.h \ | ||
/usr/lib/gcc/arm-none-eabi/12.2.1/include/stdbool.h \ | ||
../../../../inc/hw_memmap.h ../../../../driverlib/debug.h \ | ||
../../../../driverlib/gpio.h ../../../../driverlib/sysctl.h \ | ||
../../../../driverlib/pin_map.h ../../../../driverlib/rom.h \ | ||
../../../../driverlib/rom_map.h ../../../../inc/hw_ints.h \ | ||
../../../../driverlib/interrupt.h ../../../../driverlib/timer.h \ | ||
../../../../inc/tm4c1294ncpdt.h ../../../../driverlib/uart.h \ | ||
../../../../utils/uartstdio.c ../../../../inc/hw_types.h \ | ||
../../../../inc/hw_uart.h ../../../../utils/uartstdio.h \ | ||
/usr/include/newlib/string.h /usr/include/newlib/sys/string.h \ | ||
../../../../driverlib/pwm.h |
Binary file added
BIN
+7.82 KB
tiva/TivaWare/examples/boards/ek-tm4c1294xl/motorControllerSeeker/gcc/motorController.o
Binary file not shown.
3 changes: 3 additions & 0 deletions
3
tiva/TivaWare/examples/boards/ek-tm4c1294xl/motorControllerSeeker/gcc/startup_gcc.d
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
gcc/startup_gcc.o: startup_gcc.c \ | ||
/usr/lib/gcc/arm-none-eabi/12.2.1/include/stdint.h \ | ||
../../../../inc/hw_nvic.h ../../../../inc/hw_types.h |
Binary file added
BIN
+3.31 KB
tiva/TivaWare/examples/boards/ek-tm4c1294xl/motorControllerSeeker/gcc/startup_gcc.o
Binary file not shown.
Oops, something went wrong.