Skip to content

Commit

Permalink
MotorSeeker
Browse files Browse the repository at this point in the history
  • Loading branch information
97hackbrian committed Nov 16, 2023
1 parent f15b881 commit 0e404c2
Show file tree
Hide file tree
Showing 10 changed files with 832 additions and 0 deletions.
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 not shown.
Binary file not shown.
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 not shown.
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 not shown.
Loading

0 comments on commit 0e404c2

Please sign in to comment.