diff options
| author | lynxeyed-atsu <lynxeyed@xj9.so-net.ne.jp> | 2012-08-09 22:13:57 +0900 |
|---|---|---|
| committer | lynxeyed-atsu <lynxeyed@xj9.so-net.ne.jp> | 2012-08-09 22:13:57 +0900 |
| commit | a936b176fe2aae6ac6378b73fcaad1a61cb8eca3 (patch) | |
| tree | f302e299bc5add3a7117b9f93b993cf741a2ee21 /LPC1114FN28_102_DIP28/src/core | |
| parent | b9cff0a1eac16d0351053ab41237a69dfcb3ca5e (diff) | |
changed MCU settings
We can switch linker script each MCU using Configuration tab of
LPCXpresso project's properties.
Diffstat (limited to 'LPC1114FN28_102_DIP28/src/core')
| -rw-r--r-- | LPC1114FN28_102_DIP28/src/core/LiquidCrystal.d | 27 | ||||
| -rw-r--r-- | LPC1114FN28_102_DIP28/src/core/Print.d | 11 | ||||
| -rw-r--r-- | LPC1114FN28_102_DIP28/src/core/SPI.d | 13 | ||||
| -rw-r--r-- | LPC1114FN28_102_DIP28/src/core/SPI1.d | 15 | ||||
| -rw-r--r-- | LPC1114FN28_102_DIP28/src/core/SoftwareSerial.d | 20 | ||||
| -rw-r--r-- | LPC1114FN28_102_DIP28/src/core/Wire.d | 38 | ||||
| -rw-r--r-- | LPC1114FN28_102_DIP28/src/core/analogio.d | 13 | ||||
| -rw-r--r-- | LPC1114FN28_102_DIP28/src/core/arithmetical.d | 34 | ||||
| -rw-r--r-- | LPC1114FN28_102_DIP28/src/core/cr_cpp_config.d | 1 | ||||
| -rw-r--r-- | LPC1114FN28_102_DIP28/src/core/cr_startup_lpc11.d | 4 | ||||
| -rw-r--r-- | LPC1114FN28_102_DIP28/src/core/delay.d | 15 | ||||
| -rw-r--r-- | LPC1114FN28_102_DIP28/src/core/gpio.d | 11 | ||||
| -rw-r--r-- | LPC1114FN28_102_DIP28/src/core/gpio_int.d | 11 | ||||
| -rw-r--r-- | LPC1114FN28_102_DIP28/src/core/maryoled.d | 22 | ||||
| -rw-r--r-- | LPC1114FN28_102_DIP28/src/core/startup_mary.d | 25 | ||||
| -rw-r--r-- | LPC1114FN28_102_DIP28/src/core/subdir.mk | 72 | ||||
| -rw-r--r-- | LPC1114FN28_102_DIP28/src/core/system_LPC11xx.d | 9 | ||||
| -rw-r--r-- | LPC1114FN28_102_DIP28/src/core/uart.d | 13 |
18 files changed, 354 insertions, 0 deletions
diff --git a/LPC1114FN28_102_DIP28/src/core/LiquidCrystal.d b/LPC1114FN28_102_DIP28/src/core/LiquidCrystal.d new file mode 100644 index 0000000..ac302ad --- /dev/null +++ b/LPC1114FN28_102_DIP28/src/core/LiquidCrystal.d @@ -0,0 +1,27 @@ +src/core/LiquidCrystal.d: ../src/core/LiquidCrystal.cpp \ + ../src/core/LiquidCrystal.h ../src/core/Print.h ../src/core/LPC11xx.h \ + ../src/core/core_cm0.h ../src/core/system_LPC11xx.h \ + ../src/core/libmary.h ../src/core/delay.h ../src/core/uart.h \ + ../src/core/gpio.h ../src/core/analogio.h ../src/core/arithmetical.h + +../src/core/LiquidCrystal.h: + +../src/core/Print.h: + +../src/core/LPC11xx.h: + +../src/core/core_cm0.h: + +../src/core/system_LPC11xx.h: + +../src/core/libmary.h: + +../src/core/delay.h: + +../src/core/uart.h: + +../src/core/gpio.h: + +../src/core/analogio.h: + +../src/core/arithmetical.h: diff --git a/LPC1114FN28_102_DIP28/src/core/Print.d b/LPC1114FN28_102_DIP28/src/core/Print.d new file mode 100644 index 0000000..f5409fa --- /dev/null +++ b/LPC1114FN28_102_DIP28/src/core/Print.d @@ -0,0 +1,11 @@ +src/core/Print.d: ../src/core/Print.cpp ../src/core/Print.h \ + ../src/core/LPC11xx.h ../src/core/core_cm0.h \ + ../src/core/system_LPC11xx.h + +../src/core/Print.h: + +../src/core/LPC11xx.h: + +../src/core/core_cm0.h: + +../src/core/system_LPC11xx.h: diff --git a/LPC1114FN28_102_DIP28/src/core/SPI.d b/LPC1114FN28_102_DIP28/src/core/SPI.d new file mode 100644 index 0000000..c306dc3 --- /dev/null +++ b/LPC1114FN28_102_DIP28/src/core/SPI.d @@ -0,0 +1,13 @@ +src/core/SPI.d: ../src/core/SPI.cpp ../src/core/gpio.h \ + ../src/core/LPC11xx.h ../src/core/core_cm0.h \ + ../src/core/system_LPC11xx.h ../src/core/SPI.h + +../src/core/gpio.h: + +../src/core/LPC11xx.h: + +../src/core/core_cm0.h: + +../src/core/system_LPC11xx.h: + +../src/core/SPI.h: diff --git a/LPC1114FN28_102_DIP28/src/core/SPI1.d b/LPC1114FN28_102_DIP28/src/core/SPI1.d new file mode 100644 index 0000000..62c5acf --- /dev/null +++ b/LPC1114FN28_102_DIP28/src/core/SPI1.d @@ -0,0 +1,15 @@ +src/core/SPI1.d: ../src/core/SPI1.cpp ../src/core/gpio.h \ + ../src/core/LPC11xx.h ../src/core/core_cm0.h \ + ../src/core/system_LPC11xx.h ../src/core/SPI1.h ../src/core/SPI.h + +../src/core/gpio.h: + +../src/core/LPC11xx.h: + +../src/core/core_cm0.h: + +../src/core/system_LPC11xx.h: + +../src/core/SPI1.h: + +../src/core/SPI.h: diff --git a/LPC1114FN28_102_DIP28/src/core/SoftwareSerial.d b/LPC1114FN28_102_DIP28/src/core/SoftwareSerial.d new file mode 100644 index 0000000..5b744b1 --- /dev/null +++ b/LPC1114FN28_102_DIP28/src/core/SoftwareSerial.d @@ -0,0 +1,20 @@ +src/core/SoftwareSerial.d: ../src/core/SoftwareSerial.cpp \ + ../src/core/SoftwareSerial.h ../src/core/Print.h ../src/core/LPC11xx.h \ + ../src/core/core_cm0.h ../src/core/system_LPC11xx.h ../src/core/gpio.h \ + ../src/core/delay.h ../src/core/uart.h + +../src/core/SoftwareSerial.h: + +../src/core/Print.h: + +../src/core/LPC11xx.h: + +../src/core/core_cm0.h: + +../src/core/system_LPC11xx.h: + +../src/core/gpio.h: + +../src/core/delay.h: + +../src/core/uart.h: diff --git a/LPC1114FN28_102_DIP28/src/core/Wire.d b/LPC1114FN28_102_DIP28/src/core/Wire.d new file mode 100644 index 0000000..01dd6e0 --- /dev/null +++ b/LPC1114FN28_102_DIP28/src/core/Wire.d @@ -0,0 +1,38 @@ +src/core/Wire.d: ../src/core/Wire.cpp ../src/core/Wire.h \ + ../src/core/LPC11xx.h ../src/core/core_cm0.h \ + ../src/core/system_LPC11xx.h \ + /Users/lynxeyed/Documents/workspace/eXodusino/src/core/libmary.h \ + /Users/lynxeyed/Documents/workspace/eXodusino/src/core/LPC11xx.h \ + /Users/lynxeyed/Documents/workspace/eXodusino/src/core/system_LPC11xx.h \ + /Users/lynxeyed/Documents/workspace/eXodusino/src/core/delay.h \ + /Users/lynxeyed/Documents/workspace/eXodusino/src/core/uart.h \ + /Users/lynxeyed/Documents/workspace/eXodusino/src/core/Print.h \ + /Users/lynxeyed/Documents/workspace/eXodusino/src/core/gpio.h \ + /Users/lynxeyed/Documents/workspace/eXodusino/src/core/analogio.h \ + /Users/lynxeyed/Documents/workspace/eXodusino/src/core/arithmetical.h + +../src/core/Wire.h: + +../src/core/LPC11xx.h: + +../src/core/core_cm0.h: + +../src/core/system_LPC11xx.h: + +/Users/lynxeyed/Documents/workspace/eXodusino/src/core/libmary.h: + +/Users/lynxeyed/Documents/workspace/eXodusino/src/core/LPC11xx.h: + +/Users/lynxeyed/Documents/workspace/eXodusino/src/core/system_LPC11xx.h: + +/Users/lynxeyed/Documents/workspace/eXodusino/src/core/delay.h: + +/Users/lynxeyed/Documents/workspace/eXodusino/src/core/uart.h: + +/Users/lynxeyed/Documents/workspace/eXodusino/src/core/Print.h: + +/Users/lynxeyed/Documents/workspace/eXodusino/src/core/gpio.h: + +/Users/lynxeyed/Documents/workspace/eXodusino/src/core/analogio.h: + +/Users/lynxeyed/Documents/workspace/eXodusino/src/core/arithmetical.h: diff --git a/LPC1114FN28_102_DIP28/src/core/analogio.d b/LPC1114FN28_102_DIP28/src/core/analogio.d new file mode 100644 index 0000000..abf5b13 --- /dev/null +++ b/LPC1114FN28_102_DIP28/src/core/analogio.d @@ -0,0 +1,13 @@ +src/core/analogio.d: ../src/core/analogio.cpp ../src/core/analogio.h \ + ../src/core/LPC11xx.h ../src/core/core_cm0.h \ + ../src/core/system_LPC11xx.h ../src/core/gpio.h + +../src/core/analogio.h: + +../src/core/LPC11xx.h: + +../src/core/core_cm0.h: + +../src/core/system_LPC11xx.h: + +../src/core/gpio.h: diff --git a/LPC1114FN28_102_DIP28/src/core/arithmetical.d b/LPC1114FN28_102_DIP28/src/core/arithmetical.d new file mode 100644 index 0000000..824993f --- /dev/null +++ b/LPC1114FN28_102_DIP28/src/core/arithmetical.d @@ -0,0 +1,34 @@ +src/core/arithmetical.d: ../src/core/arithmetical.cpp \ + /Users/lynxeyed/Documents/workspace/eXodusino/src/core/libmary.h \ + /Users/lynxeyed/Documents/workspace/eXodusino/src/core/LPC11xx.h \ + /Users/lynxeyed/Documents/workspace/eXodusino/src/core/core_cm0.h \ + /Users/lynxeyed/Documents/workspace/eXodusino/src/core/system_LPC11xx.h \ + /Users/lynxeyed/Documents/workspace/eXodusino/src/core/delay.h \ + /Users/lynxeyed/Documents/workspace/eXodusino/src/core/uart.h \ + /Users/lynxeyed/Documents/workspace/eXodusino/src/core/Print.h \ + /Users/lynxeyed/Documents/workspace/eXodusino/src/core/gpio.h \ + /Users/lynxeyed/Documents/workspace/eXodusino/src/core/analogio.h \ + /Users/lynxeyed/Documents/workspace/eXodusino/src/core/arithmetical.h \ + /Users/lynxeyed/Documents/workspace/eXodusino/src/core/arithmetical.h + +/Users/lynxeyed/Documents/workspace/eXodusino/src/core/libmary.h: + +/Users/lynxeyed/Documents/workspace/eXodusino/src/core/LPC11xx.h: + +/Users/lynxeyed/Documents/workspace/eXodusino/src/core/core_cm0.h: + +/Users/lynxeyed/Documents/workspace/eXodusino/src/core/system_LPC11xx.h: + +/Users/lynxeyed/Documents/workspace/eXodusino/src/core/delay.h: + +/Users/lynxeyed/Documents/workspace/eXodusino/src/core/uart.h: + +/Users/lynxeyed/Documents/workspace/eXodusino/src/core/Print.h: + +/Users/lynxeyed/Documents/workspace/eXodusino/src/core/gpio.h: + +/Users/lynxeyed/Documents/workspace/eXodusino/src/core/analogio.h: + +/Users/lynxeyed/Documents/workspace/eXodusino/src/core/arithmetical.h: + +/Users/lynxeyed/Documents/workspace/eXodusino/src/core/arithmetical.h: diff --git a/LPC1114FN28_102_DIP28/src/core/cr_cpp_config.d b/LPC1114FN28_102_DIP28/src/core/cr_cpp_config.d new file mode 100644 index 0000000..9e5f170 --- /dev/null +++ b/LPC1114FN28_102_DIP28/src/core/cr_cpp_config.d @@ -0,0 +1 @@ +src/core/cr_cpp_config.d: ../src/core/cr_cpp_config.cpp diff --git a/LPC1114FN28_102_DIP28/src/core/cr_startup_lpc11.d b/LPC1114FN28_102_DIP28/src/core/cr_startup_lpc11.d new file mode 100644 index 0000000..4f1c291 --- /dev/null +++ b/LPC1114FN28_102_DIP28/src/core/cr_startup_lpc11.d @@ -0,0 +1,4 @@ +src/core/cr_startup_lpc11.d: ../src/core/cr_startup_lpc11.cpp \ + ../src/core/system_LPC11xx.h + +../src/core/system_LPC11xx.h: diff --git a/LPC1114FN28_102_DIP28/src/core/delay.d b/LPC1114FN28_102_DIP28/src/core/delay.d new file mode 100644 index 0000000..96e0b43 --- /dev/null +++ b/LPC1114FN28_102_DIP28/src/core/delay.d @@ -0,0 +1,15 @@ +src/core/delay.d: ../src/core/delay.cpp ../src/core/delay.h \ + ../src/core/LPC11xx.h ../src/core/core_cm0.h \ + ../src/core/system_LPC11xx.h ../src/core/uart.h ../src/core/Print.h + +../src/core/delay.h: + +../src/core/LPC11xx.h: + +../src/core/core_cm0.h: + +../src/core/system_LPC11xx.h: + +../src/core/uart.h: + +../src/core/Print.h: diff --git a/LPC1114FN28_102_DIP28/src/core/gpio.d b/LPC1114FN28_102_DIP28/src/core/gpio.d new file mode 100644 index 0000000..c6c06a3 --- /dev/null +++ b/LPC1114FN28_102_DIP28/src/core/gpio.d @@ -0,0 +1,11 @@ +src/core/gpio.d: ../src/core/gpio.cpp ../src/core/gpio.h \ + ../src/core/LPC11xx.h ../src/core/core_cm0.h \ + ../src/core/system_LPC11xx.h + +../src/core/gpio.h: + +../src/core/LPC11xx.h: + +../src/core/core_cm0.h: + +../src/core/system_LPC11xx.h: diff --git a/LPC1114FN28_102_DIP28/src/core/gpio_int.d b/LPC1114FN28_102_DIP28/src/core/gpio_int.d new file mode 100644 index 0000000..83fe2cf --- /dev/null +++ b/LPC1114FN28_102_DIP28/src/core/gpio_int.d @@ -0,0 +1,11 @@ +src/core/gpio_int.d: ../src/core/gpio_int.cpp ../src/core/gpio.h \ + ../src/core/LPC11xx.h ../src/core/core_cm0.h \ + ../src/core/system_LPC11xx.h + +../src/core/gpio.h: + +../src/core/LPC11xx.h: + +../src/core/core_cm0.h: + +../src/core/system_LPC11xx.h: diff --git a/LPC1114FN28_102_DIP28/src/core/maryoled.d b/LPC1114FN28_102_DIP28/src/core/maryoled.d new file mode 100644 index 0000000..9291c21 --- /dev/null +++ b/LPC1114FN28_102_DIP28/src/core/maryoled.d @@ -0,0 +1,22 @@ +src/core/maryoled.d: ../src/core/maryoled.cpp ../src/core/delay.h \ + ../src/core/LPC11xx.h ../src/core/core_cm0.h \ + ../src/core/system_LPC11xx.h ../src/core/uart.h ../src/core/Print.h \ + ../src/core/maryoled.h ../src/core/SPI.h ../src/core/gpio.h + +../src/core/delay.h: + +../src/core/LPC11xx.h: + +../src/core/core_cm0.h: + +../src/core/system_LPC11xx.h: + +../src/core/uart.h: + +../src/core/Print.h: + +../src/core/maryoled.h: + +../src/core/SPI.h: + +../src/core/gpio.h: diff --git a/LPC1114FN28_102_DIP28/src/core/startup_mary.d b/LPC1114FN28_102_DIP28/src/core/startup_mary.d new file mode 100644 index 0000000..40dcbc0 --- /dev/null +++ b/LPC1114FN28_102_DIP28/src/core/startup_mary.d @@ -0,0 +1,25 @@ +src/core/startup_mary.d: ../src/core/startup_mary.cpp \ + ../src/core/libmary.h ../src/core/LPC11xx.h ../src/core/core_cm0.h \ + ../src/core/system_LPC11xx.h ../src/core/delay.h ../src/core/uart.h \ + ../src/core/Print.h ../src/core/gpio.h ../src/core/analogio.h \ + ../src/core/arithmetical.h + +../src/core/libmary.h: + +../src/core/LPC11xx.h: + +../src/core/core_cm0.h: + +../src/core/system_LPC11xx.h: + +../src/core/delay.h: + +../src/core/uart.h: + +../src/core/Print.h: + +../src/core/gpio.h: + +../src/core/analogio.h: + +../src/core/arithmetical.h: diff --git a/LPC1114FN28_102_DIP28/src/core/subdir.mk b/LPC1114FN28_102_DIP28/src/core/subdir.mk new file mode 100644 index 0000000..7186e01 --- /dev/null +++ b/LPC1114FN28_102_DIP28/src/core/subdir.mk @@ -0,0 +1,72 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +# Add inputs and outputs from these tool invocations to the build variables +CPP_SRCS += \ +../src/core/LiquidCrystal.cpp \ +../src/core/Print.cpp \ +../src/core/SPI.cpp \ +../src/core/SPI1.cpp \ +../src/core/SoftwareSerial.cpp \ +../src/core/Wire.cpp \ +../src/core/analogio.cpp \ +../src/core/arithmetical.cpp \ +../src/core/cr_cpp_config.cpp \ +../src/core/cr_startup_lpc11.cpp \ +../src/core/delay.cpp \ +../src/core/gpio.cpp \ +../src/core/gpio_int.cpp \ +../src/core/maryoled.cpp \ +../src/core/startup_mary.cpp \ +../src/core/system_LPC11xx.cpp \ +../src/core/uart.cpp + +OBJS += \ +./src/core/LiquidCrystal.o \ +./src/core/Print.o \ +./src/core/SPI.o \ +./src/core/SPI1.o \ +./src/core/SoftwareSerial.o \ +./src/core/Wire.o \ +./src/core/analogio.o \ +./src/core/arithmetical.o \ +./src/core/cr_cpp_config.o \ +./src/core/cr_startup_lpc11.o \ +./src/core/delay.o \ +./src/core/gpio.o \ +./src/core/gpio_int.o \ +./src/core/maryoled.o \ +./src/core/startup_mary.o \ +./src/core/system_LPC11xx.o \ +./src/core/uart.o + +CPP_DEPS += \ +./src/core/LiquidCrystal.d \ +./src/core/Print.d \ +./src/core/SPI.d \ +./src/core/SPI1.d \ +./src/core/SoftwareSerial.d \ +./src/core/Wire.d \ +./src/core/analogio.d \ +./src/core/arithmetical.d \ +./src/core/cr_cpp_config.d \ +./src/core/cr_startup_lpc11.d \ +./src/core/delay.d \ +./src/core/gpio.d \ +./src/core/gpio_int.d \ +./src/core/maryoled.d \ +./src/core/startup_mary.d \ +./src/core/system_LPC11xx.d \ +./src/core/uart.d + + +# Each subdirectory must supply rules for building sources it contributes +src/core/%.o: ../src/core/%.cpp + @echo 'Building file: $<' + @echo 'Invoking: MCU C++ Compiler' + arm-none-eabi-c++ -D__NEWLIB__ -DNDEBUG -D__CODE_RED -I"/Users/lynxeyed/Documents/workspace/eXodusino/src" -I"/Users/lynxeyed/Documents/workspace/eXodusino/src/XBee" -I"/Users/lynxeyed/Documents/workspace/eXodusino/src/FatFs" -I"/Users/lynxeyed/Documents/workspace/eXodusino/src/core" -Os -Os -g -Wall -c -fmessage-length=0 -fno-builtin -ffunction-sections -fdata-sections -fno-rtti -mcpu=cortex-m0 -mthumb -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o"$@" "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/LPC1114FN28_102_DIP28/src/core/system_LPC11xx.d b/LPC1114FN28_102_DIP28/src/core/system_LPC11xx.d new file mode 100644 index 0000000..1d0a92c --- /dev/null +++ b/LPC1114FN28_102_DIP28/src/core/system_LPC11xx.d @@ -0,0 +1,9 @@ +src/core/system_LPC11xx.d: ../src/core/system_LPC11xx.cpp \ + ../src/core/LPC11xx.h ../src/core/core_cm0.h \ + ../src/core/system_LPC11xx.h + +../src/core/LPC11xx.h: + +../src/core/core_cm0.h: + +../src/core/system_LPC11xx.h: diff --git a/LPC1114FN28_102_DIP28/src/core/uart.d b/LPC1114FN28_102_DIP28/src/core/uart.d new file mode 100644 index 0000000..a19fd82 --- /dev/null +++ b/LPC1114FN28_102_DIP28/src/core/uart.d @@ -0,0 +1,13 @@ +src/core/uart.d: ../src/core/uart.cpp ../src/core/LPC11xx.h \ + ../src/core/core_cm0.h ../src/core/system_LPC11xx.h ../src/core/uart.h \ + ../src/core/Print.h + +../src/core/LPC11xx.h: + +../src/core/core_cm0.h: + +../src/core/system_LPC11xx.h: + +../src/core/uart.h: + +../src/core/Print.h: |
