Navigation Menu

Skip to content

Commit

Permalink
Working project
Browse files Browse the repository at this point in the history
  • Loading branch information
Andy Delay committed Jun 12, 2016
0 parents commit 6961067
Show file tree
Hide file tree
Showing 41 changed files with 14,155 additions and 0 deletions.
318 changes: 318 additions & 0 deletions .cproject

Large diffs are not rendered by default.

28 changes: 28 additions & 0 deletions .project
@@ -0,0 +1,28 @@
<?xml version="1.0" encoding="UTF-8"?>
<projectDescription>
<name>LTDCexample_playground</name>
<comment></comment>
<projects>
<project>stm32f429i-disco_hal_lib</project>
</projects>
<buildSpec>
<buildCommand>
<name>org.eclipse.cdt.managedbuilder.core.genmakebuilder</name>
<triggers>clean,full,incremental,</triggers>
<arguments>
</arguments>
</buildCommand>
<buildCommand>
<name>org.eclipse.cdt.managedbuilder.core.ScannerConfigBuilder</name>
<triggers>full,incremental,</triggers>
<arguments>
</arguments>
</buildCommand>
</buildSpec>
<natures>
<nature>org.eclipse.cdt.core.cnature</nature>
<nature>org.eclipse.cdt.managedbuilder.core.managedBuildNature</nature>
<nature>org.eclipse.cdt.managedbuilder.core.ScannerConfigNature</nature>
<nature>fr.ac6.mcu.ide.core.MCUProjectNature</nature>
</natures>
</projectDescription>
27 changes: 27 additions & 0 deletions .settings/language.settings.xml
@@ -0,0 +1,27 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<project>
<configuration id="fr.ac6.managedbuild.config.gnu.cross.exe.debug.1014268709" name="Debug">
<extension point="org.eclipse.cdt.core.LanguageSettingsProvider">
<provider copy-of="extension" id="org.eclipse.cdt.ui.UserLanguageSettingsProvider"/>
<provider-reference id="org.eclipse.cdt.core.ReferencedProjectsLanguageSettingsProvider" ref="shared-provider"/>
<provider-reference id="org.eclipse.cdt.managedbuilder.core.MBSLanguageSettingsProvider" ref="shared-provider"/>
<provider copy-of="extension" id="org.eclipse.cdt.managedbuilder.core.GCCBuildCommandParser"/>
<provider class="fr.ac6.mcu.ide.build.CrossBuiltinSpecsDetector" console="false" env-hash="82444638934680825" id="fr.ac6.mcu.ide.build.CrossBuiltinSpecsDetector" keep-relative-paths="false" name="Ac6 SW4 STM32 MCU Built-in Compiler Settings" parameter="${COMMAND} ${FLAGS} -E -P -v -dD &quot;${INPUTS}&quot;" prefer-non-shared="true">
<language-scope id="org.eclipse.cdt.core.gcc"/>
<language-scope id="org.eclipse.cdt.core.g++"/>
</provider>
</extension>
</configuration>
<configuration id="fr.ac6.managedbuild.config.gnu.cross.exe.release.1489054460" name="Release">
<extension point="org.eclipse.cdt.core.LanguageSettingsProvider">
<provider copy-of="extension" id="org.eclipse.cdt.ui.UserLanguageSettingsProvider"/>
<provider-reference id="org.eclipse.cdt.core.ReferencedProjectsLanguageSettingsProvider" ref="shared-provider"/>
<provider-reference id="org.eclipse.cdt.managedbuilder.core.MBSLanguageSettingsProvider" ref="shared-provider"/>
<provider copy-of="extension" id="org.eclipse.cdt.managedbuilder.core.GCCBuildCommandParser"/>
<provider class="fr.ac6.mcu.ide.build.CrossBuiltinSpecsDetector" console="false" env-hash="82444638934680825" id="fr.ac6.mcu.ide.build.CrossBuiltinSpecsDetector" keep-relative-paths="false" name="Ac6 SW4 STM32 MCU Built-in Compiler Settings" parameter="${COMMAND} ${FLAGS} -E -P -v -dD &quot;${INPUTS}&quot;" prefer-non-shared="true">
<language-scope id="org.eclipse.cdt.core.gcc"/>
<language-scope id="org.eclipse.cdt.core.g++"/>
</provider>
</extension>
</configuration>
</project>
Binary file added Debug/LTDCexample.bin
Binary file not shown.
Binary file added Debug/LTDCexample_playground.bin
Binary file not shown.
Binary file added Debug/LTDCexample_playground.elf
Binary file not shown.
59 changes: 59 additions & 0 deletions Debug/makefile
@@ -0,0 +1,59 @@
################################################################################
# Automatically-generated file. Do not edit!
################################################################################

-include ../makefile.init

RM := rm -rf

# All of the sources participating in the build are defined here
-include sources.mk
-include startup/subdir.mk
-include src/subdir.mk
-include subdir.mk
-include objects.mk

ifneq ($(MAKECMDGOALS),clean)
ifneq ($(strip $(S_UPPER_DEPS)),)
-include $(S_UPPER_DEPS)
endif
ifneq ($(strip $(C_DEPS)),)
-include $(C_DEPS)
endif
endif

-include ../makefile.defs

# Add inputs and outputs from these tool invocations to the build variables

# All Target
all: LTDCexample_playground.elf

dependents:
-cd /Users/Andy/Coding/workspace/stm32f429i-disco_hal_lib/Debug && $(MAKE) all

# Tool invocations
LTDCexample_playground.elf: $(OBJS) $(USER_OBJS) /Users/Andy/Coding/workspace/stm32f429i-disco_hal_lib/Debug/libstm32f429i-disco_hal_lib.a
@echo 'Building target: $@'
@echo 'Invoking: MCU GCC Linker'
arm-none-eabi-gcc -mcpu=cortex-m4 -mthumb -mfloat-abi=hard -mfpu=fpv4-sp-d16 -L"/Users/Andy/Coding/workspace/stm32f429i-disco_hal_lib/Debug" -T"/Users/Andy/Coding/workspace/LTDCexample_playground/LinkerScript.ld" -Wl,-Map=output.map -Wl,--gc-sections -lm -o "LTDCexample_playground.elf" @"objects.list" $(USER_OBJS) $(LIBS)
@echo 'Finished building target: $@'
@echo ' '
$(MAKE) --no-print-directory post-build

# Other Targets
clean:
-$(RM) *
-@echo ' '

post-build:
-@echo 'Generating binary and Printing size information:'
arm-none-eabi-objcopy -O binary "LTDCexample_playground.elf" "LTDCexample_playground.bin"
arm-none-eabi-size "LTDCexample_playground.elf"
-@echo ' '

.PHONY: all clean dependents
.SECONDARY: post-build
/Users/Andy/Coding/workspace/stm32f429i-disco_hal_lib/Debug/libstm32f429i-disco_hal_lib.a:

-include ../makefile.targets
6 changes: 6 additions & 0 deletions Debug/objects.list
@@ -0,0 +1,6 @@
"src/main.o"
"src/stm32f4xx_hal_msp.o"
"src/stm32f4xx_it.o"
"src/syscalls.o"
"src/system_stm32f4xx.o"
"startup/startup_stm32f429xx.o"
8 changes: 8 additions & 0 deletions Debug/objects.mk
@@ -0,0 +1,8 @@
################################################################################
# Automatically-generated file. Do not edit!
################################################################################

USER_OBJS :=

LIBS := -lstm32f429i-disco_hal_lib

0 comments on commit 6961067

Please sign in to comment.