"Hollowed out" version with no Ether and no SD, ready for Duet versions of those.
USB works, and firmware communicates over that.
This commit is contained in:
parent
4a335a6e86
commit
0d0672e49b
16 changed files with 9638 additions and 76 deletions
145
Platform.cpp
145
Platform.cpp
|
@ -75,6 +75,8 @@ void Platform::Init()
|
||||||
{
|
{
|
||||||
byte i;
|
byte i;
|
||||||
|
|
||||||
|
delay(4000); // Not needed in production...
|
||||||
|
|
||||||
if(!LoadFromStore())
|
if(!LoadFromStore())
|
||||||
{
|
{
|
||||||
// DRIVES
|
// DRIVES
|
||||||
|
@ -160,12 +162,6 @@ void Platform::Init()
|
||||||
for(i=0; i < MAX_FILES; i++)
|
for(i=0; i < MAX_FILES; i++)
|
||||||
files[i]->Init();
|
files[i]->Init();
|
||||||
|
|
||||||
// for(i=0; i < MAX_FILES; i++)
|
|
||||||
// {
|
|
||||||
// bPointer[i] = 0;
|
|
||||||
// inUse[i] = false;
|
|
||||||
// }
|
|
||||||
|
|
||||||
line->Init();
|
line->Init();
|
||||||
|
|
||||||
network->Init();
|
network->Init();
|
||||||
|
@ -255,9 +251,9 @@ MassStorage::MassStorage(Platform* p)
|
||||||
|
|
||||||
void MassStorage::Init()
|
void MassStorage::Init()
|
||||||
{
|
{
|
||||||
if (!SD.begin(SD_SPI))
|
// if (!SD.begin(SD_SPI))
|
||||||
platform->Message(HOST_MESSAGE, "SD initialization failed.\n");
|
// platform->Message(HOST_MESSAGE, "SD initialization failed.\n");
|
||||||
// SD.begin() returns with the SPI disabled, so you need not disable it here
|
// // SD.begin() returns with the SPI disabled, so you need not disable it here
|
||||||
}
|
}
|
||||||
|
|
||||||
char* MassStorage::CombineName(char* directory, char* fileName)
|
char* MassStorage::CombineName(char* directory, char* fileName)
|
||||||
|
@ -309,45 +305,46 @@ char* MassStorage::CombineName(char* directory, char* fileName)
|
||||||
|
|
||||||
char* MassStorage::FileList(char* directory)
|
char* MassStorage::FileList(char* directory)
|
||||||
{
|
{
|
||||||
File dir, entry;
|
// File dir, entry;
|
||||||
dir = SD.open(directory);
|
// dir = SD.open(directory);
|
||||||
int p = 0;
|
// int p = 0;
|
||||||
int q;
|
// int q;
|
||||||
int count = 0;
|
// int count = 0;
|
||||||
while(entry = dir.openNextFile())
|
// while(entry = dir.openNextFile())
|
||||||
{
|
// {
|
||||||
q = 0;
|
// q = 0;
|
||||||
count++;
|
// count++;
|
||||||
fileList[p++] = FILE_LIST_BRACKET;
|
// fileList[p++] = FILE_LIST_BRACKET;
|
||||||
while(entry.name()[q])
|
// while(entry.name()[q])
|
||||||
{
|
// {
|
||||||
fileList[p++] = entry.name()[q];
|
// fileList[p++] = entry.name()[q];
|
||||||
q++;
|
// q++;
|
||||||
if(p >= FILE_LIST_LENGTH - 10) // Caution...
|
// if(p >= FILE_LIST_LENGTH - 10) // Caution...
|
||||||
{
|
// {
|
||||||
platform->Message(HOST_MESSAGE, "FileList - directory: ");
|
// platform->Message(HOST_MESSAGE, "FileList - directory: ");
|
||||||
platform->Message(HOST_MESSAGE, directory);
|
// platform->Message(HOST_MESSAGE, directory);
|
||||||
platform->Message(HOST_MESSAGE, " has too many files!\n");
|
// platform->Message(HOST_MESSAGE, " has too many files!\n");
|
||||||
|
// return "";
|
||||||
|
// }
|
||||||
|
// }
|
||||||
|
// fileList[p++] = FILE_LIST_BRACKET;
|
||||||
|
// fileList[p++] = FILE_LIST_SEPARATOR;
|
||||||
|
// entry.close();
|
||||||
|
// }
|
||||||
|
// dir.close();
|
||||||
|
//
|
||||||
|
// if(count <= 0)
|
||||||
|
// return "";
|
||||||
|
//
|
||||||
|
// fileList[--p] = 0; // Get rid of the last separator
|
||||||
|
// return fileList;
|
||||||
return "";
|
return "";
|
||||||
}
|
|
||||||
}
|
|
||||||
fileList[p++] = FILE_LIST_BRACKET;
|
|
||||||
fileList[p++] = FILE_LIST_SEPARATOR;
|
|
||||||
entry.close();
|
|
||||||
}
|
|
||||||
dir.close();
|
|
||||||
|
|
||||||
if(count <= 0)
|
|
||||||
return "";
|
|
||||||
|
|
||||||
fileList[--p] = 0; // Get rid of the last separator
|
|
||||||
return fileList;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// Delete a file
|
// Delete a file
|
||||||
bool MassStorage::Delete(char* directory, char* fileName)
|
bool MassStorage::Delete(char* directory, char* fileName)
|
||||||
{
|
{
|
||||||
return SD.remove(CombineName(directory, fileName));
|
// return SD.remove(CombineName(directory, fileName));
|
||||||
}
|
}
|
||||||
|
|
||||||
//------------------------------------------------------------------------------------------------
|
//------------------------------------------------------------------------------------------------
|
||||||
|
@ -368,10 +365,10 @@ void FileStore::Init()
|
||||||
|
|
||||||
void FileStore::Close()
|
void FileStore::Close()
|
||||||
{
|
{
|
||||||
if(bPointer != 0)
|
// if(bPointer != 0)
|
||||||
file.write(buf, bPointer);
|
// file.write(buf, bPointer);
|
||||||
bPointer = 0;
|
bPointer = 0;
|
||||||
file.close();
|
// file.close();
|
||||||
platform->ReturnFileStore(this);
|
platform->ReturnFileStore(this);
|
||||||
inUse = false;
|
inUse = false;
|
||||||
}
|
}
|
||||||
|
@ -383,26 +380,26 @@ bool FileStore::Open(char* directory, char* fileName, bool write)
|
||||||
{
|
{
|
||||||
char* location = platform->GetMassStorage()->CombineName(directory, fileName);
|
char* location = platform->GetMassStorage()->CombineName(directory, fileName);
|
||||||
|
|
||||||
if(!SD.exists(location))
|
// if(!SD.exists(location))
|
||||||
{
|
// {
|
||||||
if(!write)
|
// if(!write)
|
||||||
{
|
// {
|
||||||
platform->Message(HOST_MESSAGE, "File: ");
|
// platform->Message(HOST_MESSAGE, "File: ");
|
||||||
platform->Message(HOST_MESSAGE, fileName);
|
// platform->Message(HOST_MESSAGE, fileName);
|
||||||
platform->Message(HOST_MESSAGE, " not found for reading.\n");
|
// platform->Message(HOST_MESSAGE, " not found for reading.\n");
|
||||||
return false;
|
// return false;
|
||||||
}
|
// }
|
||||||
file = SD.open(location, FILE_WRITE);
|
// file = SD.open(location, FILE_WRITE);
|
||||||
bPointer = 0;
|
// bPointer = 0;
|
||||||
} else
|
// } else
|
||||||
{
|
// {
|
||||||
if(write)
|
// if(write)
|
||||||
{
|
// {
|
||||||
file = SD.open(location, FILE_WRITE);
|
// file = SD.open(location, FILE_WRITE);
|
||||||
bPointer = 0;
|
// bPointer = 0;
|
||||||
} else
|
// } else
|
||||||
file = SD.open(location, FILE_READ);
|
// file = SD.open(location, FILE_READ);
|
||||||
}
|
// }
|
||||||
|
|
||||||
inUse = true;
|
inUse = true;
|
||||||
return true;
|
return true;
|
||||||
|
@ -415,8 +412,8 @@ void FileStore::GoToEnd()
|
||||||
platform->Message(HOST_MESSAGE, "Attempt to seek on a non-open file.\n");
|
platform->Message(HOST_MESSAGE, "Attempt to seek on a non-open file.\n");
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
unsigned long e = file.size();
|
// unsigned long e = file.size();
|
||||||
file.seek(e);
|
// file.seek(e);
|
||||||
}
|
}
|
||||||
|
|
||||||
unsigned long FileStore::Length()
|
unsigned long FileStore::Length()
|
||||||
|
@ -426,7 +423,7 @@ unsigned long FileStore::Length()
|
||||||
platform->Message(HOST_MESSAGE, "Attempt to size non-open file.\n");
|
platform->Message(HOST_MESSAGE, "Attempt to size non-open file.\n");
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
return file.size();
|
// return file.size();
|
||||||
}
|
}
|
||||||
|
|
||||||
int8_t FileStore::Status()
|
int8_t FileStore::Status()
|
||||||
|
@ -434,8 +431,8 @@ int8_t FileStore::Status()
|
||||||
if(!inUse)
|
if(!inUse)
|
||||||
return nothing;
|
return nothing;
|
||||||
|
|
||||||
if(file.available())
|
// if(file.available())
|
||||||
return byteAvailable;
|
// return byteAvailable;
|
||||||
|
|
||||||
return nothing;
|
return nothing;
|
||||||
}
|
}
|
||||||
|
@ -450,11 +447,11 @@ bool FileStore::Read(char& b)
|
||||||
|
|
||||||
if(!(Status() & byteAvailable))
|
if(!(Status() & byteAvailable))
|
||||||
return false;
|
return false;
|
||||||
int c = file.read();
|
// int c = file.read();
|
||||||
if(c < 0)
|
// if(c < 0)
|
||||||
return false;
|
return false;
|
||||||
|
|
||||||
b = (char) c;
|
// b = (char) c;
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -469,7 +466,7 @@ void FileStore::Write(char b)
|
||||||
bPointer++;
|
bPointer++;
|
||||||
if(bPointer >= FILE_BUF_LEN)
|
if(bPointer >= FILE_BUF_LEN)
|
||||||
{
|
{
|
||||||
file.write(buf, FILE_BUF_LEN);
|
// file.write(buf, FILE_BUF_LEN);
|
||||||
bPointer = 0;
|
bPointer = 0;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -301,7 +301,7 @@ protected:
|
||||||
|
|
||||||
private:
|
private:
|
||||||
|
|
||||||
File file;
|
// File file;
|
||||||
Platform* platform;
|
Platform* platform;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
74
Release/Libraries/Ethernet/subdir.mk
Normal file
74
Release/Libraries/Ethernet/subdir.mk
Normal file
|
@ -0,0 +1,74 @@
|
||||||
|
################################################################################
|
||||||
|
# Automatically-generated file. Do not edit!
|
||||||
|
################################################################################
|
||||||
|
|
||||||
|
# Add inputs and outputs from these tool invocations to the build variables
|
||||||
|
CPP_SRCS += \
|
||||||
|
/usr/local/arduino-1.5.2/hardware/arduino/sam/libraries/Ethernet/Dhcp.cpp \
|
||||||
|
/usr/local/arduino-1.5.2/hardware/arduino/sam/libraries/Ethernet/Dns.cpp \
|
||||||
|
/usr/local/arduino-1.5.2/hardware/arduino/sam/libraries/Ethernet/Ethernet.cpp \
|
||||||
|
/usr/local/arduino-1.5.2/hardware/arduino/sam/libraries/Ethernet/EthernetClient.cpp \
|
||||||
|
/usr/local/arduino-1.5.2/hardware/arduino/sam/libraries/Ethernet/EthernetServer.cpp \
|
||||||
|
/usr/local/arduino-1.5.2/hardware/arduino/sam/libraries/Ethernet/EthernetUdp.cpp
|
||||||
|
|
||||||
|
CPP_DEPS += \
|
||||||
|
./Libraries/Ethernet/Dhcp.cpp.d \
|
||||||
|
./Libraries/Ethernet/Dns.cpp.d \
|
||||||
|
./Libraries/Ethernet/Ethernet.cpp.d \
|
||||||
|
./Libraries/Ethernet/EthernetClient.cpp.d \
|
||||||
|
./Libraries/Ethernet/EthernetServer.cpp.d \
|
||||||
|
./Libraries/Ethernet/EthernetUdp.cpp.d
|
||||||
|
|
||||||
|
LINK_OBJ += \
|
||||||
|
./Libraries/Ethernet/Dhcp.cpp.o \
|
||||||
|
./Libraries/Ethernet/Dns.cpp.o \
|
||||||
|
./Libraries/Ethernet/Ethernet.cpp.o \
|
||||||
|
./Libraries/Ethernet/EthernetClient.cpp.o \
|
||||||
|
./Libraries/Ethernet/EthernetServer.cpp.o \
|
||||||
|
./Libraries/Ethernet/EthernetUdp.cpp.o
|
||||||
|
|
||||||
|
|
||||||
|
# Each subdirectory must supply rules for building sources it contributes
|
||||||
|
Libraries/Ethernet/Dhcp.cpp.o: /usr/local/arduino-1.5.2/hardware/arduino/sam/libraries/Ethernet/Dhcp.cpp
|
||||||
|
@echo 'Building file: $<'
|
||||||
|
@echo 'Starting C++ compile'
|
||||||
|
"/usr/local/arduino-1.5.2/hardware/tools/g++_arm_none_eabi/bin/arm-none-eabi-g++" -c -g -Os -w -ffunction-sections -fdata-sections -nostdlib --param max-inline-insns-single=500 -fno-rtti -fno-exceptions -Dprintf=iprintf -mcpu=cortex-m3 -DF_CPU=84000000L -DARDUINO=152 -D__SAM3X8E__ -mthumb -DUSB_PID=0x003e -DUSB_VID=0x2341 -DUSBCON "-I/usr/local/arduino-1.5.2/hardware/arduino/sam/system/libsam" "-I/usr/local/arduino-1.5.2/hardware/arduino/sam/system/CMSIS/CMSIS/Include/" "-I/usr/local/arduino-1.5.2/hardware/arduino/sam/system/CMSIS/Device/ATMEL/" -I"/usr/local/arduino-1.5.2/hardware/arduino/sam/cores/arduino" -I"/usr/local/arduino-1.5.2/hardware/arduino/sam/variants/arduino_due_x" -I"/usr/local/arduino-1.5.2/hardware/arduino/sam/libraries/Ethernet" -I"/usr/local/arduino-1.5.2/hardware/arduino/sam/libraries/Ethernet/utility" -I"/usr/local/arduino-1.5.2/hardware/arduino/sam/libraries/SPI" -I"/usr/local/arduino-1.5.2/libraries/SD" -I"/usr/local/arduino-1.5.2/libraries/SD/utility" -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -x c++ "$<" -o "$@"
|
||||||
|
@echo 'Finished building: $<'
|
||||||
|
@echo ' '
|
||||||
|
|
||||||
|
Libraries/Ethernet/Dns.cpp.o: /usr/local/arduino-1.5.2/hardware/arduino/sam/libraries/Ethernet/Dns.cpp
|
||||||
|
@echo 'Building file: $<'
|
||||||
|
@echo 'Starting C++ compile'
|
||||||
|
"/usr/local/arduino-1.5.2/hardware/tools/g++_arm_none_eabi/bin/arm-none-eabi-g++" -c -g -Os -w -ffunction-sections -fdata-sections -nostdlib --param max-inline-insns-single=500 -fno-rtti -fno-exceptions -Dprintf=iprintf -mcpu=cortex-m3 -DF_CPU=84000000L -DARDUINO=152 -D__SAM3X8E__ -mthumb -DUSB_PID=0x003e -DUSB_VID=0x2341 -DUSBCON "-I/usr/local/arduino-1.5.2/hardware/arduino/sam/system/libsam" "-I/usr/local/arduino-1.5.2/hardware/arduino/sam/system/CMSIS/CMSIS/Include/" "-I/usr/local/arduino-1.5.2/hardware/arduino/sam/system/CMSIS/Device/ATMEL/" -I"/usr/local/arduino-1.5.2/hardware/arduino/sam/cores/arduino" -I"/usr/local/arduino-1.5.2/hardware/arduino/sam/variants/arduino_due_x" -I"/usr/local/arduino-1.5.2/hardware/arduino/sam/libraries/Ethernet" -I"/usr/local/arduino-1.5.2/hardware/arduino/sam/libraries/Ethernet/utility" -I"/usr/local/arduino-1.5.2/hardware/arduino/sam/libraries/SPI" -I"/usr/local/arduino-1.5.2/libraries/SD" -I"/usr/local/arduino-1.5.2/libraries/SD/utility" -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -x c++ "$<" -o "$@"
|
||||||
|
@echo 'Finished building: $<'
|
||||||
|
@echo ' '
|
||||||
|
|
||||||
|
Libraries/Ethernet/Ethernet.cpp.o: /usr/local/arduino-1.5.2/hardware/arduino/sam/libraries/Ethernet/Ethernet.cpp
|
||||||
|
@echo 'Building file: $<'
|
||||||
|
@echo 'Starting C++ compile'
|
||||||
|
"/usr/local/arduino-1.5.2/hardware/tools/g++_arm_none_eabi/bin/arm-none-eabi-g++" -c -g -Os -w -ffunction-sections -fdata-sections -nostdlib --param max-inline-insns-single=500 -fno-rtti -fno-exceptions -Dprintf=iprintf -mcpu=cortex-m3 -DF_CPU=84000000L -DARDUINO=152 -D__SAM3X8E__ -mthumb -DUSB_PID=0x003e -DUSB_VID=0x2341 -DUSBCON "-I/usr/local/arduino-1.5.2/hardware/arduino/sam/system/libsam" "-I/usr/local/arduino-1.5.2/hardware/arduino/sam/system/CMSIS/CMSIS/Include/" "-I/usr/local/arduino-1.5.2/hardware/arduino/sam/system/CMSIS/Device/ATMEL/" -I"/usr/local/arduino-1.5.2/hardware/arduino/sam/cores/arduino" -I"/usr/local/arduino-1.5.2/hardware/arduino/sam/variants/arduino_due_x" -I"/usr/local/arduino-1.5.2/hardware/arduino/sam/libraries/Ethernet" -I"/usr/local/arduino-1.5.2/hardware/arduino/sam/libraries/Ethernet/utility" -I"/usr/local/arduino-1.5.2/hardware/arduino/sam/libraries/SPI" -I"/usr/local/arduino-1.5.2/libraries/SD" -I"/usr/local/arduino-1.5.2/libraries/SD/utility" -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -x c++ "$<" -o "$@"
|
||||||
|
@echo 'Finished building: $<'
|
||||||
|
@echo ' '
|
||||||
|
|
||||||
|
Libraries/Ethernet/EthernetClient.cpp.o: /usr/local/arduino-1.5.2/hardware/arduino/sam/libraries/Ethernet/EthernetClient.cpp
|
||||||
|
@echo 'Building file: $<'
|
||||||
|
@echo 'Starting C++ compile'
|
||||||
|
"/usr/local/arduino-1.5.2/hardware/tools/g++_arm_none_eabi/bin/arm-none-eabi-g++" -c -g -Os -w -ffunction-sections -fdata-sections -nostdlib --param max-inline-insns-single=500 -fno-rtti -fno-exceptions -Dprintf=iprintf -mcpu=cortex-m3 -DF_CPU=84000000L -DARDUINO=152 -D__SAM3X8E__ -mthumb -DUSB_PID=0x003e -DUSB_VID=0x2341 -DUSBCON "-I/usr/local/arduino-1.5.2/hardware/arduino/sam/system/libsam" "-I/usr/local/arduino-1.5.2/hardware/arduino/sam/system/CMSIS/CMSIS/Include/" "-I/usr/local/arduino-1.5.2/hardware/arduino/sam/system/CMSIS/Device/ATMEL/" -I"/usr/local/arduino-1.5.2/hardware/arduino/sam/cores/arduino" -I"/usr/local/arduino-1.5.2/hardware/arduino/sam/variants/arduino_due_x" -I"/usr/local/arduino-1.5.2/hardware/arduino/sam/libraries/Ethernet" -I"/usr/local/arduino-1.5.2/hardware/arduino/sam/libraries/Ethernet/utility" -I"/usr/local/arduino-1.5.2/hardware/arduino/sam/libraries/SPI" -I"/usr/local/arduino-1.5.2/libraries/SD" -I"/usr/local/arduino-1.5.2/libraries/SD/utility" -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -x c++ "$<" -o "$@"
|
||||||
|
@echo 'Finished building: $<'
|
||||||
|
@echo ' '
|
||||||
|
|
||||||
|
Libraries/Ethernet/EthernetServer.cpp.o: /usr/local/arduino-1.5.2/hardware/arduino/sam/libraries/Ethernet/EthernetServer.cpp
|
||||||
|
@echo 'Building file: $<'
|
||||||
|
@echo 'Starting C++ compile'
|
||||||
|
"/usr/local/arduino-1.5.2/hardware/tools/g++_arm_none_eabi/bin/arm-none-eabi-g++" -c -g -Os -w -ffunction-sections -fdata-sections -nostdlib --param max-inline-insns-single=500 -fno-rtti -fno-exceptions -Dprintf=iprintf -mcpu=cortex-m3 -DF_CPU=84000000L -DARDUINO=152 -D__SAM3X8E__ -mthumb -DUSB_PID=0x003e -DUSB_VID=0x2341 -DUSBCON "-I/usr/local/arduino-1.5.2/hardware/arduino/sam/system/libsam" "-I/usr/local/arduino-1.5.2/hardware/arduino/sam/system/CMSIS/CMSIS/Include/" "-I/usr/local/arduino-1.5.2/hardware/arduino/sam/system/CMSIS/Device/ATMEL/" -I"/usr/local/arduino-1.5.2/hardware/arduino/sam/cores/arduino" -I"/usr/local/arduino-1.5.2/hardware/arduino/sam/variants/arduino_due_x" -I"/usr/local/arduino-1.5.2/hardware/arduino/sam/libraries/Ethernet" -I"/usr/local/arduino-1.5.2/hardware/arduino/sam/libraries/Ethernet/utility" -I"/usr/local/arduino-1.5.2/hardware/arduino/sam/libraries/SPI" -I"/usr/local/arduino-1.5.2/libraries/SD" -I"/usr/local/arduino-1.5.2/libraries/SD/utility" -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -x c++ "$<" -o "$@"
|
||||||
|
@echo 'Finished building: $<'
|
||||||
|
@echo ' '
|
||||||
|
|
||||||
|
Libraries/Ethernet/EthernetUdp.cpp.o: /usr/local/arduino-1.5.2/hardware/arduino/sam/libraries/Ethernet/EthernetUdp.cpp
|
||||||
|
@echo 'Building file: $<'
|
||||||
|
@echo 'Starting C++ compile'
|
||||||
|
"/usr/local/arduino-1.5.2/hardware/tools/g++_arm_none_eabi/bin/arm-none-eabi-g++" -c -g -Os -w -ffunction-sections -fdata-sections -nostdlib --param max-inline-insns-single=500 -fno-rtti -fno-exceptions -Dprintf=iprintf -mcpu=cortex-m3 -DF_CPU=84000000L -DARDUINO=152 -D__SAM3X8E__ -mthumb -DUSB_PID=0x003e -DUSB_VID=0x2341 -DUSBCON "-I/usr/local/arduino-1.5.2/hardware/arduino/sam/system/libsam" "-I/usr/local/arduino-1.5.2/hardware/arduino/sam/system/CMSIS/CMSIS/Include/" "-I/usr/local/arduino-1.5.2/hardware/arduino/sam/system/CMSIS/Device/ATMEL/" -I"/usr/local/arduino-1.5.2/hardware/arduino/sam/cores/arduino" -I"/usr/local/arduino-1.5.2/hardware/arduino/sam/variants/arduino_due_x" -I"/usr/local/arduino-1.5.2/hardware/arduino/sam/libraries/Ethernet" -I"/usr/local/arduino-1.5.2/hardware/arduino/sam/libraries/Ethernet/utility" -I"/usr/local/arduino-1.5.2/hardware/arduino/sam/libraries/SPI" -I"/usr/local/arduino-1.5.2/libraries/SD" -I"/usr/local/arduino-1.5.2/libraries/SD/utility" -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -x c++ "$<" -o "$@"
|
||||||
|
@echo 'Finished building: $<'
|
||||||
|
@echo ' '
|
||||||
|
|
||||||
|
|
34
Release/Libraries/Ethernet/utility/subdir.mk
Normal file
34
Release/Libraries/Ethernet/utility/subdir.mk
Normal file
|
@ -0,0 +1,34 @@
|
||||||
|
################################################################################
|
||||||
|
# Automatically-generated file. Do not edit!
|
||||||
|
################################################################################
|
||||||
|
|
||||||
|
# Add inputs and outputs from these tool invocations to the build variables
|
||||||
|
CPP_SRCS += \
|
||||||
|
/usr/local/arduino-1.5.2/hardware/arduino/sam/libraries/Ethernet/utility/socket.cpp \
|
||||||
|
/usr/local/arduino-1.5.2/hardware/arduino/sam/libraries/Ethernet/utility/w5100.cpp
|
||||||
|
|
||||||
|
CPP_DEPS += \
|
||||||
|
./Libraries/Ethernet/utility/socket.cpp.d \
|
||||||
|
./Libraries/Ethernet/utility/w5100.cpp.d
|
||||||
|
|
||||||
|
LINK_OBJ += \
|
||||||
|
./Libraries/Ethernet/utility/socket.cpp.o \
|
||||||
|
./Libraries/Ethernet/utility/w5100.cpp.o
|
||||||
|
|
||||||
|
|
||||||
|
# Each subdirectory must supply rules for building sources it contributes
|
||||||
|
Libraries/Ethernet/utility/socket.cpp.o: /usr/local/arduino-1.5.2/hardware/arduino/sam/libraries/Ethernet/utility/socket.cpp
|
||||||
|
@echo 'Building file: $<'
|
||||||
|
@echo 'Starting C++ compile'
|
||||||
|
"/usr/local/arduino-1.5.2/hardware/tools/g++_arm_none_eabi/bin/arm-none-eabi-g++" -c -g -Os -w -ffunction-sections -fdata-sections -nostdlib --param max-inline-insns-single=500 -fno-rtti -fno-exceptions -Dprintf=iprintf -mcpu=cortex-m3 -DF_CPU=84000000L -DARDUINO=152 -D__SAM3X8E__ -mthumb -DUSB_PID=0x003e -DUSB_VID=0x2341 -DUSBCON "-I/usr/local/arduino-1.5.2/hardware/arduino/sam/system/libsam" "-I/usr/local/arduino-1.5.2/hardware/arduino/sam/system/CMSIS/CMSIS/Include/" "-I/usr/local/arduino-1.5.2/hardware/arduino/sam/system/CMSIS/Device/ATMEL/" -I"/usr/local/arduino-1.5.2/hardware/arduino/sam/cores/arduino" -I"/usr/local/arduino-1.5.2/hardware/arduino/sam/variants/arduino_due_x" -I"/usr/local/arduino-1.5.2/hardware/arduino/sam/libraries/Ethernet" -I"/usr/local/arduino-1.5.2/hardware/arduino/sam/libraries/Ethernet/utility" -I"/usr/local/arduino-1.5.2/hardware/arduino/sam/libraries/SPI" -I"/usr/local/arduino-1.5.2/libraries/SD" -I"/usr/local/arduino-1.5.2/libraries/SD/utility" -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -x c++ "$<" -o "$@"
|
||||||
|
@echo 'Finished building: $<'
|
||||||
|
@echo ' '
|
||||||
|
|
||||||
|
Libraries/Ethernet/utility/w5100.cpp.o: /usr/local/arduino-1.5.2/hardware/arduino/sam/libraries/Ethernet/utility/w5100.cpp
|
||||||
|
@echo 'Building file: $<'
|
||||||
|
@echo 'Starting C++ compile'
|
||||||
|
"/usr/local/arduino-1.5.2/hardware/tools/g++_arm_none_eabi/bin/arm-none-eabi-g++" -c -g -Os -w -ffunction-sections -fdata-sections -nostdlib --param max-inline-insns-single=500 -fno-rtti -fno-exceptions -Dprintf=iprintf -mcpu=cortex-m3 -DF_CPU=84000000L -DARDUINO=152 -D__SAM3X8E__ -mthumb -DUSB_PID=0x003e -DUSB_VID=0x2341 -DUSBCON "-I/usr/local/arduino-1.5.2/hardware/arduino/sam/system/libsam" "-I/usr/local/arduino-1.5.2/hardware/arduino/sam/system/CMSIS/CMSIS/Include/" "-I/usr/local/arduino-1.5.2/hardware/arduino/sam/system/CMSIS/Device/ATMEL/" -I"/usr/local/arduino-1.5.2/hardware/arduino/sam/cores/arduino" -I"/usr/local/arduino-1.5.2/hardware/arduino/sam/variants/arduino_due_x" -I"/usr/local/arduino-1.5.2/hardware/arduino/sam/libraries/Ethernet" -I"/usr/local/arduino-1.5.2/hardware/arduino/sam/libraries/Ethernet/utility" -I"/usr/local/arduino-1.5.2/hardware/arduino/sam/libraries/SPI" -I"/usr/local/arduino-1.5.2/libraries/SD" -I"/usr/local/arduino-1.5.2/libraries/SD/utility" -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -x c++ "$<" -o "$@"
|
||||||
|
@echo 'Finished building: $<'
|
||||||
|
@echo ' '
|
||||||
|
|
||||||
|
|
34
Release/Libraries/SD/subdir.mk
Normal file
34
Release/Libraries/SD/subdir.mk
Normal file
|
@ -0,0 +1,34 @@
|
||||||
|
################################################################################
|
||||||
|
# Automatically-generated file. Do not edit!
|
||||||
|
################################################################################
|
||||||
|
|
||||||
|
# Add inputs and outputs from these tool invocations to the build variables
|
||||||
|
CPP_SRCS += \
|
||||||
|
/usr/local/arduino-1.5.2/libraries/SD/File.cpp \
|
||||||
|
/usr/local/arduino-1.5.2/libraries/SD/SD.cpp
|
||||||
|
|
||||||
|
CPP_DEPS += \
|
||||||
|
./Libraries/SD/File.cpp.d \
|
||||||
|
./Libraries/SD/SD.cpp.d
|
||||||
|
|
||||||
|
LINK_OBJ += \
|
||||||
|
./Libraries/SD/File.cpp.o \
|
||||||
|
./Libraries/SD/SD.cpp.o
|
||||||
|
|
||||||
|
|
||||||
|
# Each subdirectory must supply rules for building sources it contributes
|
||||||
|
Libraries/SD/File.cpp.o: /usr/local/arduino-1.5.2/libraries/SD/File.cpp
|
||||||
|
@echo 'Building file: $<'
|
||||||
|
@echo 'Starting C++ compile'
|
||||||
|
"/usr/local/arduino-1.5.2/hardware/tools/g++_arm_none_eabi/bin/arm-none-eabi-g++" -c -g -Os -w -ffunction-sections -fdata-sections -nostdlib --param max-inline-insns-single=500 -fno-rtti -fno-exceptions -Dprintf=iprintf -mcpu=cortex-m3 -DF_CPU=84000000L -DARDUINO=152 -D__SAM3X8E__ -mthumb -DUSB_PID=0x003e -DUSB_VID=0x2341 -DUSBCON "-I/usr/local/arduino-1.5.2/hardware/arduino/sam/system/libsam" "-I/usr/local/arduino-1.5.2/hardware/arduino/sam/system/CMSIS/CMSIS/Include/" "-I/usr/local/arduino-1.5.2/hardware/arduino/sam/system/CMSIS/Device/ATMEL/" -I"/usr/local/arduino-1.5.2/hardware/arduino/sam/cores/arduino" -I"/usr/local/arduino-1.5.2/hardware/arduino/sam/variants/arduino_due_x" -I"/usr/local/arduino-1.5.2/hardware/arduino/sam/libraries/Ethernet" -I"/usr/local/arduino-1.5.2/hardware/arduino/sam/libraries/Ethernet/utility" -I"/usr/local/arduino-1.5.2/hardware/arduino/sam/libraries/SPI" -I"/usr/local/arduino-1.5.2/libraries/SD" -I"/usr/local/arduino-1.5.2/libraries/SD/utility" -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -x c++ "$<" -o "$@"
|
||||||
|
@echo 'Finished building: $<'
|
||||||
|
@echo ' '
|
||||||
|
|
||||||
|
Libraries/SD/SD.cpp.o: /usr/local/arduino-1.5.2/libraries/SD/SD.cpp
|
||||||
|
@echo 'Building file: $<'
|
||||||
|
@echo 'Starting C++ compile'
|
||||||
|
"/usr/local/arduino-1.5.2/hardware/tools/g++_arm_none_eabi/bin/arm-none-eabi-g++" -c -g -Os -w -ffunction-sections -fdata-sections -nostdlib --param max-inline-insns-single=500 -fno-rtti -fno-exceptions -Dprintf=iprintf -mcpu=cortex-m3 -DF_CPU=84000000L -DARDUINO=152 -D__SAM3X8E__ -mthumb -DUSB_PID=0x003e -DUSB_VID=0x2341 -DUSBCON "-I/usr/local/arduino-1.5.2/hardware/arduino/sam/system/libsam" "-I/usr/local/arduino-1.5.2/hardware/arduino/sam/system/CMSIS/CMSIS/Include/" "-I/usr/local/arduino-1.5.2/hardware/arduino/sam/system/CMSIS/Device/ATMEL/" -I"/usr/local/arduino-1.5.2/hardware/arduino/sam/cores/arduino" -I"/usr/local/arduino-1.5.2/hardware/arduino/sam/variants/arduino_due_x" -I"/usr/local/arduino-1.5.2/hardware/arduino/sam/libraries/Ethernet" -I"/usr/local/arduino-1.5.2/hardware/arduino/sam/libraries/Ethernet/utility" -I"/usr/local/arduino-1.5.2/hardware/arduino/sam/libraries/SPI" -I"/usr/local/arduino-1.5.2/libraries/SD" -I"/usr/local/arduino-1.5.2/libraries/SD/utility" -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -x c++ "$<" -o "$@"
|
||||||
|
@echo 'Finished building: $<'
|
||||||
|
@echo ' '
|
||||||
|
|
||||||
|
|
44
Release/Libraries/SD/utility/subdir.mk
Normal file
44
Release/Libraries/SD/utility/subdir.mk
Normal file
|
@ -0,0 +1,44 @@
|
||||||
|
################################################################################
|
||||||
|
# Automatically-generated file. Do not edit!
|
||||||
|
################################################################################
|
||||||
|
|
||||||
|
# Add inputs and outputs from these tool invocations to the build variables
|
||||||
|
CPP_SRCS += \
|
||||||
|
/usr/local/arduino-1.5.2/libraries/SD/utility/Sd2Card.cpp \
|
||||||
|
/usr/local/arduino-1.5.2/libraries/SD/utility/SdFile.cpp \
|
||||||
|
/usr/local/arduino-1.5.2/libraries/SD/utility/SdVolume.cpp
|
||||||
|
|
||||||
|
CPP_DEPS += \
|
||||||
|
./Libraries/SD/utility/Sd2Card.cpp.d \
|
||||||
|
./Libraries/SD/utility/SdFile.cpp.d \
|
||||||
|
./Libraries/SD/utility/SdVolume.cpp.d
|
||||||
|
|
||||||
|
LINK_OBJ += \
|
||||||
|
./Libraries/SD/utility/Sd2Card.cpp.o \
|
||||||
|
./Libraries/SD/utility/SdFile.cpp.o \
|
||||||
|
./Libraries/SD/utility/SdVolume.cpp.o
|
||||||
|
|
||||||
|
|
||||||
|
# Each subdirectory must supply rules for building sources it contributes
|
||||||
|
Libraries/SD/utility/Sd2Card.cpp.o: /usr/local/arduino-1.5.2/libraries/SD/utility/Sd2Card.cpp
|
||||||
|
@echo 'Building file: $<'
|
||||||
|
@echo 'Starting C++ compile'
|
||||||
|
"/usr/local/arduino-1.5.2/hardware/tools/g++_arm_none_eabi/bin/arm-none-eabi-g++" -c -g -Os -w -ffunction-sections -fdata-sections -nostdlib --param max-inline-insns-single=500 -fno-rtti -fno-exceptions -Dprintf=iprintf -mcpu=cortex-m3 -DF_CPU=84000000L -DARDUINO=152 -D__SAM3X8E__ -mthumb -DUSB_PID=0x003e -DUSB_VID=0x2341 -DUSBCON "-I/usr/local/arduino-1.5.2/hardware/arduino/sam/system/libsam" "-I/usr/local/arduino-1.5.2/hardware/arduino/sam/system/CMSIS/CMSIS/Include/" "-I/usr/local/arduino-1.5.2/hardware/arduino/sam/system/CMSIS/Device/ATMEL/" -I"/usr/local/arduino-1.5.2/hardware/arduino/sam/cores/arduino" -I"/usr/local/arduino-1.5.2/hardware/arduino/sam/variants/arduino_due_x" -I"/usr/local/arduino-1.5.2/hardware/arduino/sam/libraries/Ethernet" -I"/usr/local/arduino-1.5.2/hardware/arduino/sam/libraries/Ethernet/utility" -I"/usr/local/arduino-1.5.2/hardware/arduino/sam/libraries/SPI" -I"/usr/local/arduino-1.5.2/libraries/SD" -I"/usr/local/arduino-1.5.2/libraries/SD/utility" -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -x c++ "$<" -o "$@"
|
||||||
|
@echo 'Finished building: $<'
|
||||||
|
@echo ' '
|
||||||
|
|
||||||
|
Libraries/SD/utility/SdFile.cpp.o: /usr/local/arduino-1.5.2/libraries/SD/utility/SdFile.cpp
|
||||||
|
@echo 'Building file: $<'
|
||||||
|
@echo 'Starting C++ compile'
|
||||||
|
"/usr/local/arduino-1.5.2/hardware/tools/g++_arm_none_eabi/bin/arm-none-eabi-g++" -c -g -Os -w -ffunction-sections -fdata-sections -nostdlib --param max-inline-insns-single=500 -fno-rtti -fno-exceptions -Dprintf=iprintf -mcpu=cortex-m3 -DF_CPU=84000000L -DARDUINO=152 -D__SAM3X8E__ -mthumb -DUSB_PID=0x003e -DUSB_VID=0x2341 -DUSBCON "-I/usr/local/arduino-1.5.2/hardware/arduino/sam/system/libsam" "-I/usr/local/arduino-1.5.2/hardware/arduino/sam/system/CMSIS/CMSIS/Include/" "-I/usr/local/arduino-1.5.2/hardware/arduino/sam/system/CMSIS/Device/ATMEL/" -I"/usr/local/arduino-1.5.2/hardware/arduino/sam/cores/arduino" -I"/usr/local/arduino-1.5.2/hardware/arduino/sam/variants/arduino_due_x" -I"/usr/local/arduino-1.5.2/hardware/arduino/sam/libraries/Ethernet" -I"/usr/local/arduino-1.5.2/hardware/arduino/sam/libraries/Ethernet/utility" -I"/usr/local/arduino-1.5.2/hardware/arduino/sam/libraries/SPI" -I"/usr/local/arduino-1.5.2/libraries/SD" -I"/usr/local/arduino-1.5.2/libraries/SD/utility" -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -x c++ "$<" -o "$@"
|
||||||
|
@echo 'Finished building: $<'
|
||||||
|
@echo ' '
|
||||||
|
|
||||||
|
Libraries/SD/utility/SdVolume.cpp.o: /usr/local/arduino-1.5.2/libraries/SD/utility/SdVolume.cpp
|
||||||
|
@echo 'Building file: $<'
|
||||||
|
@echo 'Starting C++ compile'
|
||||||
|
"/usr/local/arduino-1.5.2/hardware/tools/g++_arm_none_eabi/bin/arm-none-eabi-g++" -c -g -Os -w -ffunction-sections -fdata-sections -nostdlib --param max-inline-insns-single=500 -fno-rtti -fno-exceptions -Dprintf=iprintf -mcpu=cortex-m3 -DF_CPU=84000000L -DARDUINO=152 -D__SAM3X8E__ -mthumb -DUSB_PID=0x003e -DUSB_VID=0x2341 -DUSBCON "-I/usr/local/arduino-1.5.2/hardware/arduino/sam/system/libsam" "-I/usr/local/arduino-1.5.2/hardware/arduino/sam/system/CMSIS/CMSIS/Include/" "-I/usr/local/arduino-1.5.2/hardware/arduino/sam/system/CMSIS/Device/ATMEL/" -I"/usr/local/arduino-1.5.2/hardware/arduino/sam/cores/arduino" -I"/usr/local/arduino-1.5.2/hardware/arduino/sam/variants/arduino_due_x" -I"/usr/local/arduino-1.5.2/hardware/arduino/sam/libraries/Ethernet" -I"/usr/local/arduino-1.5.2/hardware/arduino/sam/libraries/Ethernet/utility" -I"/usr/local/arduino-1.5.2/hardware/arduino/sam/libraries/SPI" -I"/usr/local/arduino-1.5.2/libraries/SD" -I"/usr/local/arduino-1.5.2/libraries/SD/utility" -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -x c++ "$<" -o "$@"
|
||||||
|
@echo 'Finished building: $<'
|
||||||
|
@echo ' '
|
||||||
|
|
||||||
|
|
24
Release/Libraries/SPI/subdir.mk
Normal file
24
Release/Libraries/SPI/subdir.mk
Normal file
|
@ -0,0 +1,24 @@
|
||||||
|
################################################################################
|
||||||
|
# Automatically-generated file. Do not edit!
|
||||||
|
################################################################################
|
||||||
|
|
||||||
|
# Add inputs and outputs from these tool invocations to the build variables
|
||||||
|
CPP_SRCS += \
|
||||||
|
/usr/local/arduino-1.5.2/hardware/arduino/sam/libraries/SPI/SPI.cpp
|
||||||
|
|
||||||
|
CPP_DEPS += \
|
||||||
|
./Libraries/SPI/SPI.cpp.d
|
||||||
|
|
||||||
|
LINK_OBJ += \
|
||||||
|
./Libraries/SPI/SPI.cpp.o
|
||||||
|
|
||||||
|
|
||||||
|
# Each subdirectory must supply rules for building sources it contributes
|
||||||
|
Libraries/SPI/SPI.cpp.o: /usr/local/arduino-1.5.2/hardware/arduino/sam/libraries/SPI/SPI.cpp
|
||||||
|
@echo 'Building file: $<'
|
||||||
|
@echo 'Starting C++ compile'
|
||||||
|
"/usr/local/arduino-1.5.2/hardware/tools/g++_arm_none_eabi/bin/arm-none-eabi-g++" -c -g -Os -w -ffunction-sections -fdata-sections -nostdlib --param max-inline-insns-single=500 -fno-rtti -fno-exceptions -Dprintf=iprintf -mcpu=cortex-m3 -DF_CPU=84000000L -DARDUINO=152 -D__SAM3X8E__ -mthumb -DUSB_PID=0x003e -DUSB_VID=0x2341 -DUSBCON "-I/usr/local/arduino-1.5.2/hardware/arduino/sam/system/libsam" "-I/usr/local/arduino-1.5.2/hardware/arduino/sam/system/CMSIS/CMSIS/Include/" "-I/usr/local/arduino-1.5.2/hardware/arduino/sam/system/CMSIS/Device/ATMEL/" -I"/usr/local/arduino-1.5.2/hardware/arduino/sam/cores/arduino" -I"/usr/local/arduino-1.5.2/hardware/arduino/sam/variants/arduino_due_x" -I"/usr/local/arduino-1.5.2/hardware/arduino/sam/libraries/Ethernet" -I"/usr/local/arduino-1.5.2/hardware/arduino/sam/libraries/Ethernet/utility" -I"/usr/local/arduino-1.5.2/hardware/arduino/sam/libraries/SPI" -I"/usr/local/arduino-1.5.2/libraries/SD" -I"/usr/local/arduino-1.5.2/libraries/SD/utility" -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -x c++ "$<" -o "$@"
|
||||||
|
@echo 'Finished building: $<'
|
||||||
|
@echo ' '
|
||||||
|
|
||||||
|
|
BIN
Release/RepRapFirmware.bin
Executable file
BIN
Release/RepRapFirmware.bin
Executable file
Binary file not shown.
8824
Release/RepRapFirmware.map
Normal file
8824
Release/RepRapFirmware.map
Normal file
File diff suppressed because it is too large
Load diff
44
Release/arduino/core/USB/subdir.mk
Normal file
44
Release/arduino/core/USB/subdir.mk
Normal file
|
@ -0,0 +1,44 @@
|
||||||
|
################################################################################
|
||||||
|
# Automatically-generated file. Do not edit!
|
||||||
|
################################################################################
|
||||||
|
|
||||||
|
# Add inputs and outputs from these tool invocations to the build variables
|
||||||
|
CPP_SRCS += \
|
||||||
|
/usr/local/arduino-1.5.2/hardware/arduino/sam/cores/arduino/USB/CDC.cpp \
|
||||||
|
/usr/local/arduino-1.5.2/hardware/arduino/sam/cores/arduino/USB/HID.cpp \
|
||||||
|
/usr/local/arduino-1.5.2/hardware/arduino/sam/cores/arduino/USB/USBCore.cpp
|
||||||
|
|
||||||
|
AR_OBJ += \
|
||||||
|
./arduino/CDC.cpp.o \
|
||||||
|
./arduino/HID.cpp.o \
|
||||||
|
./arduino/USBCore.cpp.o
|
||||||
|
|
||||||
|
CPP_DEPS += \
|
||||||
|
./arduino/CDC.cpp.d \
|
||||||
|
./arduino/HID.cpp.d \
|
||||||
|
./arduino/USBCore.cpp.d
|
||||||
|
|
||||||
|
|
||||||
|
# Each subdirectory must supply rules for building sources it contributes
|
||||||
|
arduino/CDC.cpp.o: /usr/local/arduino-1.5.2/hardware/arduino/sam/cores/arduino/USB/CDC.cpp
|
||||||
|
@echo 'Building file: $<'
|
||||||
|
@echo 'Starting C++ compile'
|
||||||
|
"/usr/local/arduino-1.5.2/hardware/tools/g++_arm_none_eabi/bin/arm-none-eabi-g++" -c -g -Os -w -ffunction-sections -fdata-sections -nostdlib --param max-inline-insns-single=500 -fno-rtti -fno-exceptions -Dprintf=iprintf -mcpu=cortex-m3 -DF_CPU=84000000L -DARDUINO=152 -D__SAM3X8E__ -mthumb -DUSB_PID=0x003e -DUSB_VID=0x2341 -DUSBCON "-I/usr/local/arduino-1.5.2/hardware/arduino/sam/system/libsam" "-I/usr/local/arduino-1.5.2/hardware/arduino/sam/system/CMSIS/CMSIS/Include/" "-I/usr/local/arduino-1.5.2/hardware/arduino/sam/system/CMSIS/Device/ATMEL/" -I"/usr/local/arduino-1.5.2/hardware/arduino/sam/cores/arduino" -I"/usr/local/arduino-1.5.2/hardware/arduino/sam/variants/arduino_due_x" -I"/usr/local/arduino-1.5.2/hardware/arduino/sam/libraries/Ethernet" -I"/usr/local/arduino-1.5.2/hardware/arduino/sam/libraries/Ethernet/utility" -I"/usr/local/arduino-1.5.2/hardware/arduino/sam/libraries/SPI" -I"/usr/local/arduino-1.5.2/libraries/SD" -I"/usr/local/arduino-1.5.2/libraries/SD/utility" -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -x c++ "$<" -o "$@"
|
||||||
|
@echo 'Finished building: $<'
|
||||||
|
@echo ' '
|
||||||
|
|
||||||
|
arduino/HID.cpp.o: /usr/local/arduino-1.5.2/hardware/arduino/sam/cores/arduino/USB/HID.cpp
|
||||||
|
@echo 'Building file: $<'
|
||||||
|
@echo 'Starting C++ compile'
|
||||||
|
"/usr/local/arduino-1.5.2/hardware/tools/g++_arm_none_eabi/bin/arm-none-eabi-g++" -c -g -Os -w -ffunction-sections -fdata-sections -nostdlib --param max-inline-insns-single=500 -fno-rtti -fno-exceptions -Dprintf=iprintf -mcpu=cortex-m3 -DF_CPU=84000000L -DARDUINO=152 -D__SAM3X8E__ -mthumb -DUSB_PID=0x003e -DUSB_VID=0x2341 -DUSBCON "-I/usr/local/arduino-1.5.2/hardware/arduino/sam/system/libsam" "-I/usr/local/arduino-1.5.2/hardware/arduino/sam/system/CMSIS/CMSIS/Include/" "-I/usr/local/arduino-1.5.2/hardware/arduino/sam/system/CMSIS/Device/ATMEL/" -I"/usr/local/arduino-1.5.2/hardware/arduino/sam/cores/arduino" -I"/usr/local/arduino-1.5.2/hardware/arduino/sam/variants/arduino_due_x" -I"/usr/local/arduino-1.5.2/hardware/arduino/sam/libraries/Ethernet" -I"/usr/local/arduino-1.5.2/hardware/arduino/sam/libraries/Ethernet/utility" -I"/usr/local/arduino-1.5.2/hardware/arduino/sam/libraries/SPI" -I"/usr/local/arduino-1.5.2/libraries/SD" -I"/usr/local/arduino-1.5.2/libraries/SD/utility" -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -x c++ "$<" -o "$@"
|
||||||
|
@echo 'Finished building: $<'
|
||||||
|
@echo ' '
|
||||||
|
|
||||||
|
arduino/USBCore.cpp.o: /usr/local/arduino-1.5.2/hardware/arduino/sam/cores/arduino/USB/USBCore.cpp
|
||||||
|
@echo 'Building file: $<'
|
||||||
|
@echo 'Starting C++ compile'
|
||||||
|
"/usr/local/arduino-1.5.2/hardware/tools/g++_arm_none_eabi/bin/arm-none-eabi-g++" -c -g -Os -w -ffunction-sections -fdata-sections -nostdlib --param max-inline-insns-single=500 -fno-rtti -fno-exceptions -Dprintf=iprintf -mcpu=cortex-m3 -DF_CPU=84000000L -DARDUINO=152 -D__SAM3X8E__ -mthumb -DUSB_PID=0x003e -DUSB_VID=0x2341 -DUSBCON "-I/usr/local/arduino-1.5.2/hardware/arduino/sam/system/libsam" "-I/usr/local/arduino-1.5.2/hardware/arduino/sam/system/CMSIS/CMSIS/Include/" "-I/usr/local/arduino-1.5.2/hardware/arduino/sam/system/CMSIS/Device/ATMEL/" -I"/usr/local/arduino-1.5.2/hardware/arduino/sam/cores/arduino" -I"/usr/local/arduino-1.5.2/hardware/arduino/sam/variants/arduino_due_x" -I"/usr/local/arduino-1.5.2/hardware/arduino/sam/libraries/Ethernet" -I"/usr/local/arduino-1.5.2/hardware/arduino/sam/libraries/Ethernet/utility" -I"/usr/local/arduino-1.5.2/hardware/arduino/sam/libraries/SPI" -I"/usr/local/arduino-1.5.2/libraries/SD" -I"/usr/local/arduino-1.5.2/libraries/SD/utility" -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -x c++ "$<" -o "$@"
|
||||||
|
@echo 'Finished building: $<'
|
||||||
|
@echo ' '
|
||||||
|
|
||||||
|
|
238
Release/arduino/core/subdir.mk
Normal file
238
Release/arduino/core/subdir.mk
Normal file
|
@ -0,0 +1,238 @@
|
||||||
|
################################################################################
|
||||||
|
# Automatically-generated file. Do not edit!
|
||||||
|
################################################################################
|
||||||
|
|
||||||
|
# Add inputs and outputs from these tool invocations to the build variables
|
||||||
|
CPP_SRCS += \
|
||||||
|
/usr/local/arduino-1.5.2/hardware/arduino/sam/cores/arduino/IPAddress.cpp \
|
||||||
|
/usr/local/arduino-1.5.2/hardware/arduino/sam/cores/arduino/Print.cpp \
|
||||||
|
/usr/local/arduino-1.5.2/hardware/arduino/sam/cores/arduino/Reset.cpp \
|
||||||
|
/usr/local/arduino-1.5.2/hardware/arduino/sam/cores/arduino/RingBuffer.cpp \
|
||||||
|
/usr/local/arduino-1.5.2/hardware/arduino/sam/cores/arduino/Stream.cpp \
|
||||||
|
/usr/local/arduino-1.5.2/hardware/arduino/sam/cores/arduino/UARTClass.cpp \
|
||||||
|
/usr/local/arduino-1.5.2/hardware/arduino/sam/cores/arduino/USARTClass.cpp \
|
||||||
|
/usr/local/arduino-1.5.2/hardware/arduino/sam/cores/arduino/WMath.cpp \
|
||||||
|
/usr/local/arduino-1.5.2/hardware/arduino/sam/cores/arduino/WString.cpp \
|
||||||
|
/usr/local/arduino-1.5.2/hardware/arduino/sam/cores/arduino/cxxabi-compat.cpp \
|
||||||
|
/usr/local/arduino-1.5.2/hardware/arduino/sam/cores/arduino/main.cpp \
|
||||||
|
/usr/local/arduino-1.5.2/hardware/arduino/sam/cores/arduino/wiring_pulse.cpp
|
||||||
|
|
||||||
|
C_SRCS += \
|
||||||
|
/usr/local/arduino-1.5.2/hardware/arduino/sam/cores/arduino/WInterrupts.c \
|
||||||
|
/usr/local/arduino-1.5.2/hardware/arduino/sam/cores/arduino/cortex_handlers.c \
|
||||||
|
/usr/local/arduino-1.5.2/hardware/arduino/sam/cores/arduino/hooks.c \
|
||||||
|
/usr/local/arduino-1.5.2/hardware/arduino/sam/cores/arduino/iar_calls_sam3.c \
|
||||||
|
/usr/local/arduino-1.5.2/hardware/arduino/sam/cores/arduino/itoa.c \
|
||||||
|
/usr/local/arduino-1.5.2/hardware/arduino/sam/cores/arduino/syscalls_sam3.c \
|
||||||
|
/usr/local/arduino-1.5.2/hardware/arduino/sam/cores/arduino/wiring.c \
|
||||||
|
/usr/local/arduino-1.5.2/hardware/arduino/sam/cores/arduino/wiring_analog.c \
|
||||||
|
/usr/local/arduino-1.5.2/hardware/arduino/sam/cores/arduino/wiring_digital.c \
|
||||||
|
/usr/local/arduino-1.5.2/hardware/arduino/sam/cores/arduino/wiring_shift.c
|
||||||
|
|
||||||
|
C_DEPS += \
|
||||||
|
./arduino/WInterrupts.c.d \
|
||||||
|
./arduino/cortex_handlers.c.d \
|
||||||
|
./arduino/hooks.c.d \
|
||||||
|
./arduino/iar_calls_sam3.c.d \
|
||||||
|
./arduino/itoa.c.d \
|
||||||
|
./arduino/syscalls_sam3.c.d \
|
||||||
|
./arduino/wiring.c.d \
|
||||||
|
./arduino/wiring_analog.c.d \
|
||||||
|
./arduino/wiring_digital.c.d \
|
||||||
|
./arduino/wiring_shift.c.d
|
||||||
|
|
||||||
|
AR_OBJ += \
|
||||||
|
./arduino/IPAddress.cpp.o \
|
||||||
|
./arduino/Print.cpp.o \
|
||||||
|
./arduino/Reset.cpp.o \
|
||||||
|
./arduino/RingBuffer.cpp.o \
|
||||||
|
./arduino/Stream.cpp.o \
|
||||||
|
./arduino/UARTClass.cpp.o \
|
||||||
|
./arduino/USARTClass.cpp.o \
|
||||||
|
./arduino/WInterrupts.c.o \
|
||||||
|
./arduino/WMath.cpp.o \
|
||||||
|
./arduino/WString.cpp.o \
|
||||||
|
./arduino/cortex_handlers.c.o \
|
||||||
|
./arduino/cxxabi-compat.cpp.o \
|
||||||
|
./arduino/hooks.c.o \
|
||||||
|
./arduino/iar_calls_sam3.c.o \
|
||||||
|
./arduino/itoa.c.o \
|
||||||
|
./arduino/main.cpp.o \
|
||||||
|
./arduino/syscalls_sam3.c.o \
|
||||||
|
./arduino/wiring.c.o \
|
||||||
|
./arduino/wiring_analog.c.o \
|
||||||
|
./arduino/wiring_digital.c.o \
|
||||||
|
./arduino/wiring_pulse.cpp.o \
|
||||||
|
./arduino/wiring_shift.c.o
|
||||||
|
|
||||||
|
CPP_DEPS += \
|
||||||
|
./arduino/IPAddress.cpp.d \
|
||||||
|
./arduino/Print.cpp.d \
|
||||||
|
./arduino/Reset.cpp.d \
|
||||||
|
./arduino/RingBuffer.cpp.d \
|
||||||
|
./arduino/Stream.cpp.d \
|
||||||
|
./arduino/UARTClass.cpp.d \
|
||||||
|
./arduino/USARTClass.cpp.d \
|
||||||
|
./arduino/WMath.cpp.d \
|
||||||
|
./arduino/WString.cpp.d \
|
||||||
|
./arduino/cxxabi-compat.cpp.d \
|
||||||
|
./arduino/main.cpp.d \
|
||||||
|
./arduino/wiring_pulse.cpp.d
|
||||||
|
|
||||||
|
|
||||||
|
# Each subdirectory must supply rules for building sources it contributes
|
||||||
|
arduino/IPAddress.cpp.o: /usr/local/arduino-1.5.2/hardware/arduino/sam/cores/arduino/IPAddress.cpp
|
||||||
|
@echo 'Building file: $<'
|
||||||
|
@echo 'Starting C++ compile'
|
||||||
|
"/usr/local/arduino-1.5.2/hardware/tools/g++_arm_none_eabi/bin/arm-none-eabi-g++" -c -g -Os -w -ffunction-sections -fdata-sections -nostdlib --param max-inline-insns-single=500 -fno-rtti -fno-exceptions -Dprintf=iprintf -mcpu=cortex-m3 -DF_CPU=84000000L -DARDUINO=152 -D__SAM3X8E__ -mthumb -DUSB_PID=0x003e -DUSB_VID=0x2341 -DUSBCON "-I/usr/local/arduino-1.5.2/hardware/arduino/sam/system/libsam" "-I/usr/local/arduino-1.5.2/hardware/arduino/sam/system/CMSIS/CMSIS/Include/" "-I/usr/local/arduino-1.5.2/hardware/arduino/sam/system/CMSIS/Device/ATMEL/" -I"/usr/local/arduino-1.5.2/hardware/arduino/sam/cores/arduino" -I"/usr/local/arduino-1.5.2/hardware/arduino/sam/variants/arduino_due_x" -I"/usr/local/arduino-1.5.2/hardware/arduino/sam/libraries/Ethernet" -I"/usr/local/arduino-1.5.2/hardware/arduino/sam/libraries/Ethernet/utility" -I"/usr/local/arduino-1.5.2/hardware/arduino/sam/libraries/SPI" -I"/usr/local/arduino-1.5.2/libraries/SD" -I"/usr/local/arduino-1.5.2/libraries/SD/utility" -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -x c++ "$<" -o "$@"
|
||||||
|
@echo 'Finished building: $<'
|
||||||
|
@echo ' '
|
||||||
|
|
||||||
|
arduino/Print.cpp.o: /usr/local/arduino-1.5.2/hardware/arduino/sam/cores/arduino/Print.cpp
|
||||||
|
@echo 'Building file: $<'
|
||||||
|
@echo 'Starting C++ compile'
|
||||||
|
"/usr/local/arduino-1.5.2/hardware/tools/g++_arm_none_eabi/bin/arm-none-eabi-g++" -c -g -Os -w -ffunction-sections -fdata-sections -nostdlib --param max-inline-insns-single=500 -fno-rtti -fno-exceptions -Dprintf=iprintf -mcpu=cortex-m3 -DF_CPU=84000000L -DARDUINO=152 -D__SAM3X8E__ -mthumb -DUSB_PID=0x003e -DUSB_VID=0x2341 -DUSBCON "-I/usr/local/arduino-1.5.2/hardware/arduino/sam/system/libsam" "-I/usr/local/arduino-1.5.2/hardware/arduino/sam/system/CMSIS/CMSIS/Include/" "-I/usr/local/arduino-1.5.2/hardware/arduino/sam/system/CMSIS/Device/ATMEL/" -I"/usr/local/arduino-1.5.2/hardware/arduino/sam/cores/arduino" -I"/usr/local/arduino-1.5.2/hardware/arduino/sam/variants/arduino_due_x" -I"/usr/local/arduino-1.5.2/hardware/arduino/sam/libraries/Ethernet" -I"/usr/local/arduino-1.5.2/hardware/arduino/sam/libraries/Ethernet/utility" -I"/usr/local/arduino-1.5.2/hardware/arduino/sam/libraries/SPI" -I"/usr/local/arduino-1.5.2/libraries/SD" -I"/usr/local/arduino-1.5.2/libraries/SD/utility" -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -x c++ "$<" -o "$@"
|
||||||
|
@echo 'Finished building: $<'
|
||||||
|
@echo ' '
|
||||||
|
|
||||||
|
arduino/Reset.cpp.o: /usr/local/arduino-1.5.2/hardware/arduino/sam/cores/arduino/Reset.cpp
|
||||||
|
@echo 'Building file: $<'
|
||||||
|
@echo 'Starting C++ compile'
|
||||||
|
"/usr/local/arduino-1.5.2/hardware/tools/g++_arm_none_eabi/bin/arm-none-eabi-g++" -c -g -Os -w -ffunction-sections -fdata-sections -nostdlib --param max-inline-insns-single=500 -fno-rtti -fno-exceptions -Dprintf=iprintf -mcpu=cortex-m3 -DF_CPU=84000000L -DARDUINO=152 -D__SAM3X8E__ -mthumb -DUSB_PID=0x003e -DUSB_VID=0x2341 -DUSBCON "-I/usr/local/arduino-1.5.2/hardware/arduino/sam/system/libsam" "-I/usr/local/arduino-1.5.2/hardware/arduino/sam/system/CMSIS/CMSIS/Include/" "-I/usr/local/arduino-1.5.2/hardware/arduino/sam/system/CMSIS/Device/ATMEL/" -I"/usr/local/arduino-1.5.2/hardware/arduino/sam/cores/arduino" -I"/usr/local/arduino-1.5.2/hardware/arduino/sam/variants/arduino_due_x" -I"/usr/local/arduino-1.5.2/hardware/arduino/sam/libraries/Ethernet" -I"/usr/local/arduino-1.5.2/hardware/arduino/sam/libraries/Ethernet/utility" -I"/usr/local/arduino-1.5.2/hardware/arduino/sam/libraries/SPI" -I"/usr/local/arduino-1.5.2/libraries/SD" -I"/usr/local/arduino-1.5.2/libraries/SD/utility" -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -x c++ "$<" -o "$@"
|
||||||
|
@echo 'Finished building: $<'
|
||||||
|
@echo ' '
|
||||||
|
|
||||||
|
arduino/RingBuffer.cpp.o: /usr/local/arduino-1.5.2/hardware/arduino/sam/cores/arduino/RingBuffer.cpp
|
||||||
|
@echo 'Building file: $<'
|
||||||
|
@echo 'Starting C++ compile'
|
||||||
|
"/usr/local/arduino-1.5.2/hardware/tools/g++_arm_none_eabi/bin/arm-none-eabi-g++" -c -g -Os -w -ffunction-sections -fdata-sections -nostdlib --param max-inline-insns-single=500 -fno-rtti -fno-exceptions -Dprintf=iprintf -mcpu=cortex-m3 -DF_CPU=84000000L -DARDUINO=152 -D__SAM3X8E__ -mthumb -DUSB_PID=0x003e -DUSB_VID=0x2341 -DUSBCON "-I/usr/local/arduino-1.5.2/hardware/arduino/sam/system/libsam" "-I/usr/local/arduino-1.5.2/hardware/arduino/sam/system/CMSIS/CMSIS/Include/" "-I/usr/local/arduino-1.5.2/hardware/arduino/sam/system/CMSIS/Device/ATMEL/" -I"/usr/local/arduino-1.5.2/hardware/arduino/sam/cores/arduino" -I"/usr/local/arduino-1.5.2/hardware/arduino/sam/variants/arduino_due_x" -I"/usr/local/arduino-1.5.2/hardware/arduino/sam/libraries/Ethernet" -I"/usr/local/arduino-1.5.2/hardware/arduino/sam/libraries/Ethernet/utility" -I"/usr/local/arduino-1.5.2/hardware/arduino/sam/libraries/SPI" -I"/usr/local/arduino-1.5.2/libraries/SD" -I"/usr/local/arduino-1.5.2/libraries/SD/utility" -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -x c++ "$<" -o "$@"
|
||||||
|
@echo 'Finished building: $<'
|
||||||
|
@echo ' '
|
||||||
|
|
||||||
|
arduino/Stream.cpp.o: /usr/local/arduino-1.5.2/hardware/arduino/sam/cores/arduino/Stream.cpp
|
||||||
|
@echo 'Building file: $<'
|
||||||
|
@echo 'Starting C++ compile'
|
||||||
|
"/usr/local/arduino-1.5.2/hardware/tools/g++_arm_none_eabi/bin/arm-none-eabi-g++" -c -g -Os -w -ffunction-sections -fdata-sections -nostdlib --param max-inline-insns-single=500 -fno-rtti -fno-exceptions -Dprintf=iprintf -mcpu=cortex-m3 -DF_CPU=84000000L -DARDUINO=152 -D__SAM3X8E__ -mthumb -DUSB_PID=0x003e -DUSB_VID=0x2341 -DUSBCON "-I/usr/local/arduino-1.5.2/hardware/arduino/sam/system/libsam" "-I/usr/local/arduino-1.5.2/hardware/arduino/sam/system/CMSIS/CMSIS/Include/" "-I/usr/local/arduino-1.5.2/hardware/arduino/sam/system/CMSIS/Device/ATMEL/" -I"/usr/local/arduino-1.5.2/hardware/arduino/sam/cores/arduino" -I"/usr/local/arduino-1.5.2/hardware/arduino/sam/variants/arduino_due_x" -I"/usr/local/arduino-1.5.2/hardware/arduino/sam/libraries/Ethernet" -I"/usr/local/arduino-1.5.2/hardware/arduino/sam/libraries/Ethernet/utility" -I"/usr/local/arduino-1.5.2/hardware/arduino/sam/libraries/SPI" -I"/usr/local/arduino-1.5.2/libraries/SD" -I"/usr/local/arduino-1.5.2/libraries/SD/utility" -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -x c++ "$<" -o "$@"
|
||||||
|
@echo 'Finished building: $<'
|
||||||
|
@echo ' '
|
||||||
|
|
||||||
|
arduino/UARTClass.cpp.o: /usr/local/arduino-1.5.2/hardware/arduino/sam/cores/arduino/UARTClass.cpp
|
||||||
|
@echo 'Building file: $<'
|
||||||
|
@echo 'Starting C++ compile'
|
||||||
|
"/usr/local/arduino-1.5.2/hardware/tools/g++_arm_none_eabi/bin/arm-none-eabi-g++" -c -g -Os -w -ffunction-sections -fdata-sections -nostdlib --param max-inline-insns-single=500 -fno-rtti -fno-exceptions -Dprintf=iprintf -mcpu=cortex-m3 -DF_CPU=84000000L -DARDUINO=152 -D__SAM3X8E__ -mthumb -DUSB_PID=0x003e -DUSB_VID=0x2341 -DUSBCON "-I/usr/local/arduino-1.5.2/hardware/arduino/sam/system/libsam" "-I/usr/local/arduino-1.5.2/hardware/arduino/sam/system/CMSIS/CMSIS/Include/" "-I/usr/local/arduino-1.5.2/hardware/arduino/sam/system/CMSIS/Device/ATMEL/" -I"/usr/local/arduino-1.5.2/hardware/arduino/sam/cores/arduino" -I"/usr/local/arduino-1.5.2/hardware/arduino/sam/variants/arduino_due_x" -I"/usr/local/arduino-1.5.2/hardware/arduino/sam/libraries/Ethernet" -I"/usr/local/arduino-1.5.2/hardware/arduino/sam/libraries/Ethernet/utility" -I"/usr/local/arduino-1.5.2/hardware/arduino/sam/libraries/SPI" -I"/usr/local/arduino-1.5.2/libraries/SD" -I"/usr/local/arduino-1.5.2/libraries/SD/utility" -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -x c++ "$<" -o "$@"
|
||||||
|
@echo 'Finished building: $<'
|
||||||
|
@echo ' '
|
||||||
|
|
||||||
|
arduino/USARTClass.cpp.o: /usr/local/arduino-1.5.2/hardware/arduino/sam/cores/arduino/USARTClass.cpp
|
||||||
|
@echo 'Building file: $<'
|
||||||
|
@echo 'Starting C++ compile'
|
||||||
|
"/usr/local/arduino-1.5.2/hardware/tools/g++_arm_none_eabi/bin/arm-none-eabi-g++" -c -g -Os -w -ffunction-sections -fdata-sections -nostdlib --param max-inline-insns-single=500 -fno-rtti -fno-exceptions -Dprintf=iprintf -mcpu=cortex-m3 -DF_CPU=84000000L -DARDUINO=152 -D__SAM3X8E__ -mthumb -DUSB_PID=0x003e -DUSB_VID=0x2341 -DUSBCON "-I/usr/local/arduino-1.5.2/hardware/arduino/sam/system/libsam" "-I/usr/local/arduino-1.5.2/hardware/arduino/sam/system/CMSIS/CMSIS/Include/" "-I/usr/local/arduino-1.5.2/hardware/arduino/sam/system/CMSIS/Device/ATMEL/" -I"/usr/local/arduino-1.5.2/hardware/arduino/sam/cores/arduino" -I"/usr/local/arduino-1.5.2/hardware/arduino/sam/variants/arduino_due_x" -I"/usr/local/arduino-1.5.2/hardware/arduino/sam/libraries/Ethernet" -I"/usr/local/arduino-1.5.2/hardware/arduino/sam/libraries/Ethernet/utility" -I"/usr/local/arduino-1.5.2/hardware/arduino/sam/libraries/SPI" -I"/usr/local/arduino-1.5.2/libraries/SD" -I"/usr/local/arduino-1.5.2/libraries/SD/utility" -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -x c++ "$<" -o "$@"
|
||||||
|
@echo 'Finished building: $<'
|
||||||
|
@echo ' '
|
||||||
|
|
||||||
|
arduino/WInterrupts.c.o: /usr/local/arduino-1.5.2/hardware/arduino/sam/cores/arduino/WInterrupts.c
|
||||||
|
@echo 'Building file: $<'
|
||||||
|
@echo 'Starting C compile'
|
||||||
|
"/usr/local/arduino-1.5.2/hardware/tools/g++_arm_none_eabi/bin/arm-none-eabi-gcc" -c -g -Os -w -ffunction-sections -fdata-sections -nostdlib --param max-inline-insns-single=500 -Dprintf=iprintf -mcpu=cortex-m3 -DF_CPU=84000000L -DARDUINO=152 -D__SAM3X8E__ -mthumb -DUSB_PID=0x003e -DUSB_VID=0x2341 -DUSBCON "-I/usr/local/arduino-1.5.2/hardware/arduino/sam/system/libsam" "-I/usr/local/arduino-1.5.2/hardware/arduino/sam/system/CMSIS/CMSIS/Include/" "-I/usr/local/arduino-1.5.2/hardware/arduino/sam/system/CMSIS/Device/ATMEL/" -I"/usr/local/arduino-1.5.2/hardware/arduino/sam/cores/arduino" -I"/usr/local/arduino-1.5.2/hardware/arduino/sam/variants/arduino_due_x" -I"/usr/local/arduino-1.5.2/hardware/arduino/sam/libraries/Ethernet" -I"/usr/local/arduino-1.5.2/hardware/arduino/sam/libraries/Ethernet/utility" -I"/usr/local/arduino-1.5.2/hardware/arduino/sam/libraries/SPI" -I"/usr/local/arduino-1.5.2/libraries/SD" -I"/usr/local/arduino-1.5.2/libraries/SD/utility" -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" "$<" -o "$@"
|
||||||
|
@echo 'Finished building: $<'
|
||||||
|
@echo ' '
|
||||||
|
|
||||||
|
arduino/WMath.cpp.o: /usr/local/arduino-1.5.2/hardware/arduino/sam/cores/arduino/WMath.cpp
|
||||||
|
@echo 'Building file: $<'
|
||||||
|
@echo 'Starting C++ compile'
|
||||||
|
"/usr/local/arduino-1.5.2/hardware/tools/g++_arm_none_eabi/bin/arm-none-eabi-g++" -c -g -Os -w -ffunction-sections -fdata-sections -nostdlib --param max-inline-insns-single=500 -fno-rtti -fno-exceptions -Dprintf=iprintf -mcpu=cortex-m3 -DF_CPU=84000000L -DARDUINO=152 -D__SAM3X8E__ -mthumb -DUSB_PID=0x003e -DUSB_VID=0x2341 -DUSBCON "-I/usr/local/arduino-1.5.2/hardware/arduino/sam/system/libsam" "-I/usr/local/arduino-1.5.2/hardware/arduino/sam/system/CMSIS/CMSIS/Include/" "-I/usr/local/arduino-1.5.2/hardware/arduino/sam/system/CMSIS/Device/ATMEL/" -I"/usr/local/arduino-1.5.2/hardware/arduino/sam/cores/arduino" -I"/usr/local/arduino-1.5.2/hardware/arduino/sam/variants/arduino_due_x" -I"/usr/local/arduino-1.5.2/hardware/arduino/sam/libraries/Ethernet" -I"/usr/local/arduino-1.5.2/hardware/arduino/sam/libraries/Ethernet/utility" -I"/usr/local/arduino-1.5.2/hardware/arduino/sam/libraries/SPI" -I"/usr/local/arduino-1.5.2/libraries/SD" -I"/usr/local/arduino-1.5.2/libraries/SD/utility" -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -x c++ "$<" -o "$@"
|
||||||
|
@echo 'Finished building: $<'
|
||||||
|
@echo ' '
|
||||||
|
|
||||||
|
arduino/WString.cpp.o: /usr/local/arduino-1.5.2/hardware/arduino/sam/cores/arduino/WString.cpp
|
||||||
|
@echo 'Building file: $<'
|
||||||
|
@echo 'Starting C++ compile'
|
||||||
|
"/usr/local/arduino-1.5.2/hardware/tools/g++_arm_none_eabi/bin/arm-none-eabi-g++" -c -g -Os -w -ffunction-sections -fdata-sections -nostdlib --param max-inline-insns-single=500 -fno-rtti -fno-exceptions -Dprintf=iprintf -mcpu=cortex-m3 -DF_CPU=84000000L -DARDUINO=152 -D__SAM3X8E__ -mthumb -DUSB_PID=0x003e -DUSB_VID=0x2341 -DUSBCON "-I/usr/local/arduino-1.5.2/hardware/arduino/sam/system/libsam" "-I/usr/local/arduino-1.5.2/hardware/arduino/sam/system/CMSIS/CMSIS/Include/" "-I/usr/local/arduino-1.5.2/hardware/arduino/sam/system/CMSIS/Device/ATMEL/" -I"/usr/local/arduino-1.5.2/hardware/arduino/sam/cores/arduino" -I"/usr/local/arduino-1.5.2/hardware/arduino/sam/variants/arduino_due_x" -I"/usr/local/arduino-1.5.2/hardware/arduino/sam/libraries/Ethernet" -I"/usr/local/arduino-1.5.2/hardware/arduino/sam/libraries/Ethernet/utility" -I"/usr/local/arduino-1.5.2/hardware/arduino/sam/libraries/SPI" -I"/usr/local/arduino-1.5.2/libraries/SD" -I"/usr/local/arduino-1.5.2/libraries/SD/utility" -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -x c++ "$<" -o "$@"
|
||||||
|
@echo 'Finished building: $<'
|
||||||
|
@echo ' '
|
||||||
|
|
||||||
|
arduino/cortex_handlers.c.o: /usr/local/arduino-1.5.2/hardware/arduino/sam/cores/arduino/cortex_handlers.c
|
||||||
|
@echo 'Building file: $<'
|
||||||
|
@echo 'Starting C compile'
|
||||||
|
"/usr/local/arduino-1.5.2/hardware/tools/g++_arm_none_eabi/bin/arm-none-eabi-gcc" -c -g -Os -w -ffunction-sections -fdata-sections -nostdlib --param max-inline-insns-single=500 -Dprintf=iprintf -mcpu=cortex-m3 -DF_CPU=84000000L -DARDUINO=152 -D__SAM3X8E__ -mthumb -DUSB_PID=0x003e -DUSB_VID=0x2341 -DUSBCON "-I/usr/local/arduino-1.5.2/hardware/arduino/sam/system/libsam" "-I/usr/local/arduino-1.5.2/hardware/arduino/sam/system/CMSIS/CMSIS/Include/" "-I/usr/local/arduino-1.5.2/hardware/arduino/sam/system/CMSIS/Device/ATMEL/" -I"/usr/local/arduino-1.5.2/hardware/arduino/sam/cores/arduino" -I"/usr/local/arduino-1.5.2/hardware/arduino/sam/variants/arduino_due_x" -I"/usr/local/arduino-1.5.2/hardware/arduino/sam/libraries/Ethernet" -I"/usr/local/arduino-1.5.2/hardware/arduino/sam/libraries/Ethernet/utility" -I"/usr/local/arduino-1.5.2/hardware/arduino/sam/libraries/SPI" -I"/usr/local/arduino-1.5.2/libraries/SD" -I"/usr/local/arduino-1.5.2/libraries/SD/utility" -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" "$<" -o "$@"
|
||||||
|
@echo 'Finished building: $<'
|
||||||
|
@echo ' '
|
||||||
|
|
||||||
|
arduino/cxxabi-compat.cpp.o: /usr/local/arduino-1.5.2/hardware/arduino/sam/cores/arduino/cxxabi-compat.cpp
|
||||||
|
@echo 'Building file: $<'
|
||||||
|
@echo 'Starting C++ compile'
|
||||||
|
"/usr/local/arduino-1.5.2/hardware/tools/g++_arm_none_eabi/bin/arm-none-eabi-g++" -c -g -Os -w -ffunction-sections -fdata-sections -nostdlib --param max-inline-insns-single=500 -fno-rtti -fno-exceptions -Dprintf=iprintf -mcpu=cortex-m3 -DF_CPU=84000000L -DARDUINO=152 -D__SAM3X8E__ -mthumb -DUSB_PID=0x003e -DUSB_VID=0x2341 -DUSBCON "-I/usr/local/arduino-1.5.2/hardware/arduino/sam/system/libsam" "-I/usr/local/arduino-1.5.2/hardware/arduino/sam/system/CMSIS/CMSIS/Include/" "-I/usr/local/arduino-1.5.2/hardware/arduino/sam/system/CMSIS/Device/ATMEL/" -I"/usr/local/arduino-1.5.2/hardware/arduino/sam/cores/arduino" -I"/usr/local/arduino-1.5.2/hardware/arduino/sam/variants/arduino_due_x" -I"/usr/local/arduino-1.5.2/hardware/arduino/sam/libraries/Ethernet" -I"/usr/local/arduino-1.5.2/hardware/arduino/sam/libraries/Ethernet/utility" -I"/usr/local/arduino-1.5.2/hardware/arduino/sam/libraries/SPI" -I"/usr/local/arduino-1.5.2/libraries/SD" -I"/usr/local/arduino-1.5.2/libraries/SD/utility" -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -x c++ "$<" -o "$@"
|
||||||
|
@echo 'Finished building: $<'
|
||||||
|
@echo ' '
|
||||||
|
|
||||||
|
arduino/hooks.c.o: /usr/local/arduino-1.5.2/hardware/arduino/sam/cores/arduino/hooks.c
|
||||||
|
@echo 'Building file: $<'
|
||||||
|
@echo 'Starting C compile'
|
||||||
|
"/usr/local/arduino-1.5.2/hardware/tools/g++_arm_none_eabi/bin/arm-none-eabi-gcc" -c -g -Os -w -ffunction-sections -fdata-sections -nostdlib --param max-inline-insns-single=500 -Dprintf=iprintf -mcpu=cortex-m3 -DF_CPU=84000000L -DARDUINO=152 -D__SAM3X8E__ -mthumb -DUSB_PID=0x003e -DUSB_VID=0x2341 -DUSBCON "-I/usr/local/arduino-1.5.2/hardware/arduino/sam/system/libsam" "-I/usr/local/arduino-1.5.2/hardware/arduino/sam/system/CMSIS/CMSIS/Include/" "-I/usr/local/arduino-1.5.2/hardware/arduino/sam/system/CMSIS/Device/ATMEL/" -I"/usr/local/arduino-1.5.2/hardware/arduino/sam/cores/arduino" -I"/usr/local/arduino-1.5.2/hardware/arduino/sam/variants/arduino_due_x" -I"/usr/local/arduino-1.5.2/hardware/arduino/sam/libraries/Ethernet" -I"/usr/local/arduino-1.5.2/hardware/arduino/sam/libraries/Ethernet/utility" -I"/usr/local/arduino-1.5.2/hardware/arduino/sam/libraries/SPI" -I"/usr/local/arduino-1.5.2/libraries/SD" -I"/usr/local/arduino-1.5.2/libraries/SD/utility" -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" "$<" -o "$@"
|
||||||
|
@echo 'Finished building: $<'
|
||||||
|
@echo ' '
|
||||||
|
|
||||||
|
arduino/iar_calls_sam3.c.o: /usr/local/arduino-1.5.2/hardware/arduino/sam/cores/arduino/iar_calls_sam3.c
|
||||||
|
@echo 'Building file: $<'
|
||||||
|
@echo 'Starting C compile'
|
||||||
|
"/usr/local/arduino-1.5.2/hardware/tools/g++_arm_none_eabi/bin/arm-none-eabi-gcc" -c -g -Os -w -ffunction-sections -fdata-sections -nostdlib --param max-inline-insns-single=500 -Dprintf=iprintf -mcpu=cortex-m3 -DF_CPU=84000000L -DARDUINO=152 -D__SAM3X8E__ -mthumb -DUSB_PID=0x003e -DUSB_VID=0x2341 -DUSBCON "-I/usr/local/arduino-1.5.2/hardware/arduino/sam/system/libsam" "-I/usr/local/arduino-1.5.2/hardware/arduino/sam/system/CMSIS/CMSIS/Include/" "-I/usr/local/arduino-1.5.2/hardware/arduino/sam/system/CMSIS/Device/ATMEL/" -I"/usr/local/arduino-1.5.2/hardware/arduino/sam/cores/arduino" -I"/usr/local/arduino-1.5.2/hardware/arduino/sam/variants/arduino_due_x" -I"/usr/local/arduino-1.5.2/hardware/arduino/sam/libraries/Ethernet" -I"/usr/local/arduino-1.5.2/hardware/arduino/sam/libraries/Ethernet/utility" -I"/usr/local/arduino-1.5.2/hardware/arduino/sam/libraries/SPI" -I"/usr/local/arduino-1.5.2/libraries/SD" -I"/usr/local/arduino-1.5.2/libraries/SD/utility" -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" "$<" -o "$@"
|
||||||
|
@echo 'Finished building: $<'
|
||||||
|
@echo ' '
|
||||||
|
|
||||||
|
arduino/itoa.c.o: /usr/local/arduino-1.5.2/hardware/arduino/sam/cores/arduino/itoa.c
|
||||||
|
@echo 'Building file: $<'
|
||||||
|
@echo 'Starting C compile'
|
||||||
|
"/usr/local/arduino-1.5.2/hardware/tools/g++_arm_none_eabi/bin/arm-none-eabi-gcc" -c -g -Os -w -ffunction-sections -fdata-sections -nostdlib --param max-inline-insns-single=500 -Dprintf=iprintf -mcpu=cortex-m3 -DF_CPU=84000000L -DARDUINO=152 -D__SAM3X8E__ -mthumb -DUSB_PID=0x003e -DUSB_VID=0x2341 -DUSBCON "-I/usr/local/arduino-1.5.2/hardware/arduino/sam/system/libsam" "-I/usr/local/arduino-1.5.2/hardware/arduino/sam/system/CMSIS/CMSIS/Include/" "-I/usr/local/arduino-1.5.2/hardware/arduino/sam/system/CMSIS/Device/ATMEL/" -I"/usr/local/arduino-1.5.2/hardware/arduino/sam/cores/arduino" -I"/usr/local/arduino-1.5.2/hardware/arduino/sam/variants/arduino_due_x" -I"/usr/local/arduino-1.5.2/hardware/arduino/sam/libraries/Ethernet" -I"/usr/local/arduino-1.5.2/hardware/arduino/sam/libraries/Ethernet/utility" -I"/usr/local/arduino-1.5.2/hardware/arduino/sam/libraries/SPI" -I"/usr/local/arduino-1.5.2/libraries/SD" -I"/usr/local/arduino-1.5.2/libraries/SD/utility" -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" "$<" -o "$@"
|
||||||
|
@echo 'Finished building: $<'
|
||||||
|
@echo ' '
|
||||||
|
|
||||||
|
arduino/main.cpp.o: /usr/local/arduino-1.5.2/hardware/arduino/sam/cores/arduino/main.cpp
|
||||||
|
@echo 'Building file: $<'
|
||||||
|
@echo 'Starting C++ compile'
|
||||||
|
"/usr/local/arduino-1.5.2/hardware/tools/g++_arm_none_eabi/bin/arm-none-eabi-g++" -c -g -Os -w -ffunction-sections -fdata-sections -nostdlib --param max-inline-insns-single=500 -fno-rtti -fno-exceptions -Dprintf=iprintf -mcpu=cortex-m3 -DF_CPU=84000000L -DARDUINO=152 -D__SAM3X8E__ -mthumb -DUSB_PID=0x003e -DUSB_VID=0x2341 -DUSBCON "-I/usr/local/arduino-1.5.2/hardware/arduino/sam/system/libsam" "-I/usr/local/arduino-1.5.2/hardware/arduino/sam/system/CMSIS/CMSIS/Include/" "-I/usr/local/arduino-1.5.2/hardware/arduino/sam/system/CMSIS/Device/ATMEL/" -I"/usr/local/arduino-1.5.2/hardware/arduino/sam/cores/arduino" -I"/usr/local/arduino-1.5.2/hardware/arduino/sam/variants/arduino_due_x" -I"/usr/local/arduino-1.5.2/hardware/arduino/sam/libraries/Ethernet" -I"/usr/local/arduino-1.5.2/hardware/arduino/sam/libraries/Ethernet/utility" -I"/usr/local/arduino-1.5.2/hardware/arduino/sam/libraries/SPI" -I"/usr/local/arduino-1.5.2/libraries/SD" -I"/usr/local/arduino-1.5.2/libraries/SD/utility" -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -x c++ "$<" -o "$@"
|
||||||
|
@echo 'Finished building: $<'
|
||||||
|
@echo ' '
|
||||||
|
|
||||||
|
arduino/syscalls_sam3.c.o: /usr/local/arduino-1.5.2/hardware/arduino/sam/cores/arduino/syscalls_sam3.c
|
||||||
|
@echo 'Building file: $<'
|
||||||
|
@echo 'Starting C compile'
|
||||||
|
"/usr/local/arduino-1.5.2/hardware/tools/g++_arm_none_eabi/bin/arm-none-eabi-gcc" -c -g -Os -w -ffunction-sections -fdata-sections -nostdlib --param max-inline-insns-single=500 -Dprintf=iprintf -mcpu=cortex-m3 -DF_CPU=84000000L -DARDUINO=152 -D__SAM3X8E__ -mthumb -DUSB_PID=0x003e -DUSB_VID=0x2341 -DUSBCON "-I/usr/local/arduino-1.5.2/hardware/arduino/sam/system/libsam" "-I/usr/local/arduino-1.5.2/hardware/arduino/sam/system/CMSIS/CMSIS/Include/" "-I/usr/local/arduino-1.5.2/hardware/arduino/sam/system/CMSIS/Device/ATMEL/" -I"/usr/local/arduino-1.5.2/hardware/arduino/sam/cores/arduino" -I"/usr/local/arduino-1.5.2/hardware/arduino/sam/variants/arduino_due_x" -I"/usr/local/arduino-1.5.2/hardware/arduino/sam/libraries/Ethernet" -I"/usr/local/arduino-1.5.2/hardware/arduino/sam/libraries/Ethernet/utility" -I"/usr/local/arduino-1.5.2/hardware/arduino/sam/libraries/SPI" -I"/usr/local/arduino-1.5.2/libraries/SD" -I"/usr/local/arduino-1.5.2/libraries/SD/utility" -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" "$<" -o "$@"
|
||||||
|
@echo 'Finished building: $<'
|
||||||
|
@echo ' '
|
||||||
|
|
||||||
|
arduino/wiring.c.o: /usr/local/arduino-1.5.2/hardware/arduino/sam/cores/arduino/wiring.c
|
||||||
|
@echo 'Building file: $<'
|
||||||
|
@echo 'Starting C compile'
|
||||||
|
"/usr/local/arduino-1.5.2/hardware/tools/g++_arm_none_eabi/bin/arm-none-eabi-gcc" -c -g -Os -w -ffunction-sections -fdata-sections -nostdlib --param max-inline-insns-single=500 -Dprintf=iprintf -mcpu=cortex-m3 -DF_CPU=84000000L -DARDUINO=152 -D__SAM3X8E__ -mthumb -DUSB_PID=0x003e -DUSB_VID=0x2341 -DUSBCON "-I/usr/local/arduino-1.5.2/hardware/arduino/sam/system/libsam" "-I/usr/local/arduino-1.5.2/hardware/arduino/sam/system/CMSIS/CMSIS/Include/" "-I/usr/local/arduino-1.5.2/hardware/arduino/sam/system/CMSIS/Device/ATMEL/" -I"/usr/local/arduino-1.5.2/hardware/arduino/sam/cores/arduino" -I"/usr/local/arduino-1.5.2/hardware/arduino/sam/variants/arduino_due_x" -I"/usr/local/arduino-1.5.2/hardware/arduino/sam/libraries/Ethernet" -I"/usr/local/arduino-1.5.2/hardware/arduino/sam/libraries/Ethernet/utility" -I"/usr/local/arduino-1.5.2/hardware/arduino/sam/libraries/SPI" -I"/usr/local/arduino-1.5.2/libraries/SD" -I"/usr/local/arduino-1.5.2/libraries/SD/utility" -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" "$<" -o "$@"
|
||||||
|
@echo 'Finished building: $<'
|
||||||
|
@echo ' '
|
||||||
|
|
||||||
|
arduino/wiring_analog.c.o: /usr/local/arduino-1.5.2/hardware/arduino/sam/cores/arduino/wiring_analog.c
|
||||||
|
@echo 'Building file: $<'
|
||||||
|
@echo 'Starting C compile'
|
||||||
|
"/usr/local/arduino-1.5.2/hardware/tools/g++_arm_none_eabi/bin/arm-none-eabi-gcc" -c -g -Os -w -ffunction-sections -fdata-sections -nostdlib --param max-inline-insns-single=500 -Dprintf=iprintf -mcpu=cortex-m3 -DF_CPU=84000000L -DARDUINO=152 -D__SAM3X8E__ -mthumb -DUSB_PID=0x003e -DUSB_VID=0x2341 -DUSBCON "-I/usr/local/arduino-1.5.2/hardware/arduino/sam/system/libsam" "-I/usr/local/arduino-1.5.2/hardware/arduino/sam/system/CMSIS/CMSIS/Include/" "-I/usr/local/arduino-1.5.2/hardware/arduino/sam/system/CMSIS/Device/ATMEL/" -I"/usr/local/arduino-1.5.2/hardware/arduino/sam/cores/arduino" -I"/usr/local/arduino-1.5.2/hardware/arduino/sam/variants/arduino_due_x" -I"/usr/local/arduino-1.5.2/hardware/arduino/sam/libraries/Ethernet" -I"/usr/local/arduino-1.5.2/hardware/arduino/sam/libraries/Ethernet/utility" -I"/usr/local/arduino-1.5.2/hardware/arduino/sam/libraries/SPI" -I"/usr/local/arduino-1.5.2/libraries/SD" -I"/usr/local/arduino-1.5.2/libraries/SD/utility" -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" "$<" -o "$@"
|
||||||
|
@echo 'Finished building: $<'
|
||||||
|
@echo ' '
|
||||||
|
|
||||||
|
arduino/wiring_digital.c.o: /usr/local/arduino-1.5.2/hardware/arduino/sam/cores/arduino/wiring_digital.c
|
||||||
|
@echo 'Building file: $<'
|
||||||
|
@echo 'Starting C compile'
|
||||||
|
"/usr/local/arduino-1.5.2/hardware/tools/g++_arm_none_eabi/bin/arm-none-eabi-gcc" -c -g -Os -w -ffunction-sections -fdata-sections -nostdlib --param max-inline-insns-single=500 -Dprintf=iprintf -mcpu=cortex-m3 -DF_CPU=84000000L -DARDUINO=152 -D__SAM3X8E__ -mthumb -DUSB_PID=0x003e -DUSB_VID=0x2341 -DUSBCON "-I/usr/local/arduino-1.5.2/hardware/arduino/sam/system/libsam" "-I/usr/local/arduino-1.5.2/hardware/arduino/sam/system/CMSIS/CMSIS/Include/" "-I/usr/local/arduino-1.5.2/hardware/arduino/sam/system/CMSIS/Device/ATMEL/" -I"/usr/local/arduino-1.5.2/hardware/arduino/sam/cores/arduino" -I"/usr/local/arduino-1.5.2/hardware/arduino/sam/variants/arduino_due_x" -I"/usr/local/arduino-1.5.2/hardware/arduino/sam/libraries/Ethernet" -I"/usr/local/arduino-1.5.2/hardware/arduino/sam/libraries/Ethernet/utility" -I"/usr/local/arduino-1.5.2/hardware/arduino/sam/libraries/SPI" -I"/usr/local/arduino-1.5.2/libraries/SD" -I"/usr/local/arduino-1.5.2/libraries/SD/utility" -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" "$<" -o "$@"
|
||||||
|
@echo 'Finished building: $<'
|
||||||
|
@echo ' '
|
||||||
|
|
||||||
|
arduino/wiring_pulse.cpp.o: /usr/local/arduino-1.5.2/hardware/arduino/sam/cores/arduino/wiring_pulse.cpp
|
||||||
|
@echo 'Building file: $<'
|
||||||
|
@echo 'Starting C++ compile'
|
||||||
|
"/usr/local/arduino-1.5.2/hardware/tools/g++_arm_none_eabi/bin/arm-none-eabi-g++" -c -g -Os -w -ffunction-sections -fdata-sections -nostdlib --param max-inline-insns-single=500 -fno-rtti -fno-exceptions -Dprintf=iprintf -mcpu=cortex-m3 -DF_CPU=84000000L -DARDUINO=152 -D__SAM3X8E__ -mthumb -DUSB_PID=0x003e -DUSB_VID=0x2341 -DUSBCON "-I/usr/local/arduino-1.5.2/hardware/arduino/sam/system/libsam" "-I/usr/local/arduino-1.5.2/hardware/arduino/sam/system/CMSIS/CMSIS/Include/" "-I/usr/local/arduino-1.5.2/hardware/arduino/sam/system/CMSIS/Device/ATMEL/" -I"/usr/local/arduino-1.5.2/hardware/arduino/sam/cores/arduino" -I"/usr/local/arduino-1.5.2/hardware/arduino/sam/variants/arduino_due_x" -I"/usr/local/arduino-1.5.2/hardware/arduino/sam/libraries/Ethernet" -I"/usr/local/arduino-1.5.2/hardware/arduino/sam/libraries/Ethernet/utility" -I"/usr/local/arduino-1.5.2/hardware/arduino/sam/libraries/SPI" -I"/usr/local/arduino-1.5.2/libraries/SD" -I"/usr/local/arduino-1.5.2/libraries/SD/utility" -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -x c++ "$<" -o "$@"
|
||||||
|
@echo 'Finished building: $<'
|
||||||
|
@echo ' '
|
||||||
|
|
||||||
|
arduino/wiring_shift.c.o: /usr/local/arduino-1.5.2/hardware/arduino/sam/cores/arduino/wiring_shift.c
|
||||||
|
@echo 'Building file: $<'
|
||||||
|
@echo 'Starting C compile'
|
||||||
|
"/usr/local/arduino-1.5.2/hardware/tools/g++_arm_none_eabi/bin/arm-none-eabi-gcc" -c -g -Os -w -ffunction-sections -fdata-sections -nostdlib --param max-inline-insns-single=500 -Dprintf=iprintf -mcpu=cortex-m3 -DF_CPU=84000000L -DARDUINO=152 -D__SAM3X8E__ -mthumb -DUSB_PID=0x003e -DUSB_VID=0x2341 -DUSBCON "-I/usr/local/arduino-1.5.2/hardware/arduino/sam/system/libsam" "-I/usr/local/arduino-1.5.2/hardware/arduino/sam/system/CMSIS/CMSIS/Include/" "-I/usr/local/arduino-1.5.2/hardware/arduino/sam/system/CMSIS/Device/ATMEL/" -I"/usr/local/arduino-1.5.2/hardware/arduino/sam/cores/arduino" -I"/usr/local/arduino-1.5.2/hardware/arduino/sam/variants/arduino_due_x" -I"/usr/local/arduino-1.5.2/hardware/arduino/sam/libraries/Ethernet" -I"/usr/local/arduino-1.5.2/hardware/arduino/sam/libraries/Ethernet/utility" -I"/usr/local/arduino-1.5.2/hardware/arduino/sam/libraries/SPI" -I"/usr/local/arduino-1.5.2/libraries/SD" -I"/usr/local/arduino-1.5.2/libraries/SD/utility" -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" "$<" -o "$@"
|
||||||
|
@echo 'Finished building: $<'
|
||||||
|
@echo ' '
|
||||||
|
|
||||||
|
|
24
Release/arduino/variant/subdir.mk
Normal file
24
Release/arduino/variant/subdir.mk
Normal file
|
@ -0,0 +1,24 @@
|
||||||
|
################################################################################
|
||||||
|
# Automatically-generated file. Do not edit!
|
||||||
|
################################################################################
|
||||||
|
|
||||||
|
# Add inputs and outputs from these tool invocations to the build variables
|
||||||
|
CPP_SRCS += \
|
||||||
|
/usr/local/arduino-1.5.2/hardware/arduino/sam/variants/arduino_due_x/variant.cpp
|
||||||
|
|
||||||
|
AR_OBJ += \
|
||||||
|
./arduino/variant.cpp.o
|
||||||
|
|
||||||
|
CPP_DEPS += \
|
||||||
|
./arduino/variant.cpp.d
|
||||||
|
|
||||||
|
|
||||||
|
# Each subdirectory must supply rules for building sources it contributes
|
||||||
|
arduino/variant.cpp.o: /usr/local/arduino-1.5.2/hardware/arduino/sam/variants/arduino_due_x/variant.cpp
|
||||||
|
@echo 'Building file: $<'
|
||||||
|
@echo 'Starting C++ compile'
|
||||||
|
"/usr/local/arduino-1.5.2/hardware/tools/g++_arm_none_eabi/bin/arm-none-eabi-g++" -c -g -Os -w -ffunction-sections -fdata-sections -nostdlib --param max-inline-insns-single=500 -fno-rtti -fno-exceptions -Dprintf=iprintf -mcpu=cortex-m3 -DF_CPU=84000000L -DARDUINO=152 -D__SAM3X8E__ -mthumb -DUSB_PID=0x003e -DUSB_VID=0x2341 -DUSBCON "-I/usr/local/arduino-1.5.2/hardware/arduino/sam/system/libsam" "-I/usr/local/arduino-1.5.2/hardware/arduino/sam/system/CMSIS/CMSIS/Include/" "-I/usr/local/arduino-1.5.2/hardware/arduino/sam/system/CMSIS/Device/ATMEL/" -I"/usr/local/arduino-1.5.2/hardware/arduino/sam/cores/arduino" -I"/usr/local/arduino-1.5.2/hardware/arduino/sam/variants/arduino_due_x" -I"/usr/local/arduino-1.5.2/hardware/arduino/sam/libraries/Ethernet" -I"/usr/local/arduino-1.5.2/hardware/arduino/sam/libraries/Ethernet/utility" -I"/usr/local/arduino-1.5.2/hardware/arduino/sam/libraries/SPI" -I"/usr/local/arduino-1.5.2/libraries/SD" -I"/usr/local/arduino-1.5.2/libraries/SD/utility" -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -x c++ "$<" -o "$@"
|
||||||
|
@echo 'Finished building: $<'
|
||||||
|
@echo ' '
|
||||||
|
|
||||||
|
|
102
Release/makefile
Normal file
102
Release/makefile
Normal file
|
@ -0,0 +1,102 @@
|
||||||
|
################################################################################
|
||||||
|
# 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 arduino/variant/subdir.mk
|
||||||
|
-include arduino/core/USB/subdir.mk
|
||||||
|
-include arduino/core/subdir.mk
|
||||||
|
-include Libraries/SPI/subdir.mk
|
||||||
|
-include Libraries/SD/utility/subdir.mk
|
||||||
|
-include Libraries/SD/subdir.mk
|
||||||
|
-include Libraries/Ethernet/utility/subdir.mk
|
||||||
|
-include Libraries/Ethernet/subdir.mk
|
||||||
|
-include subdir.mk
|
||||||
|
-include objects.mk
|
||||||
|
|
||||||
|
ifneq ($(MAKECMDGOALS),clean)
|
||||||
|
ifneq ($(strip $(C++_DEPS)),)
|
||||||
|
-include $(C++_DEPS)
|
||||||
|
endif
|
||||||
|
ifneq ($(strip $(C_DEPS)),)
|
||||||
|
-include $(C_DEPS)
|
||||||
|
endif
|
||||||
|
ifneq ($(strip $(CC_DEPS)),)
|
||||||
|
-include $(CC_DEPS)
|
||||||
|
endif
|
||||||
|
ifneq ($(strip $(CPP_DEPS)),)
|
||||||
|
-include $(CPP_DEPS)
|
||||||
|
endif
|
||||||
|
ifneq ($(strip $(CXX_DEPS)),)
|
||||||
|
-include $(CXX_DEPS)
|
||||||
|
endif
|
||||||
|
ifneq ($(strip $(C_UPPER_DEPS)),)
|
||||||
|
-include $(C_UPPER_DEPS)
|
||||||
|
endif
|
||||||
|
endif
|
||||||
|
|
||||||
|
-include ../makefile.defs
|
||||||
|
|
||||||
|
# Add inputs and outputs from these tool invocations to the build variables
|
||||||
|
AR += \
|
||||||
|
/home/ensab/Pro/Git/RepRapFirmware/Release/arduino.ar \
|
||||||
|
|
||||||
|
ELF += \
|
||||||
|
RepRapFirmware.elf \
|
||||||
|
|
||||||
|
EEP += \
|
||||||
|
RepRapFirmware.eep \
|
||||||
|
|
||||||
|
FLASH_IMAGE += \
|
||||||
|
Release/RepRapFirmware.bin \
|
||||||
|
|
||||||
|
|
||||||
|
# All Target
|
||||||
|
all: RepRapFirmware
|
||||||
|
|
||||||
|
# Tool invocations
|
||||||
|
RepRapFirmware: $(FLASH_IMAGE)
|
||||||
|
@echo 'Building target: $@'
|
||||||
|
@echo 'Printing size:'
|
||||||
|
"/usr/local/arduino-1.5.2/hardware/tools/g++_arm_none_eabi/bin/arm-none-eabi-size" -A "/home/ensab/Pro/Git/RepRapFirmware/Release/RepRapFirmware.elf"
|
||||||
|
@echo 'Finished building target: $@'
|
||||||
|
@echo ' '
|
||||||
|
|
||||||
|
/home/ensab/Pro/Git/RepRapFirmware/Release/arduino.ar: $(AR_OBJ)
|
||||||
|
@echo 'Starting archiver'
|
||||||
|
"/usr/local/arduino-1.5.2/hardware/tools/g++_arm_none_eabi/bin/arm-none-eabi-ar" rcs "/home/ensab/Pro/Git/RepRapFirmware/Release/arduino.ar" $(AR_OBJ)
|
||||||
|
@echo 'Finished building: $@'
|
||||||
|
@echo ' '
|
||||||
|
|
||||||
|
RepRapFirmware.elf: $(LINK_OBJ) $(AR)
|
||||||
|
@echo 'Starting combiner'
|
||||||
|
"/usr/local/arduino-1.5.2/hardware/tools/g++_arm_none_eabi/bin/arm-none-eabi-g++" -Os -Wl,--gc-sections -mcpu=cortex-m3 "-T/usr/local/arduino-1.5.2/hardware/arduino/sam/variants/arduino_due_x/linker_scripts/gcc/flash.ld" "-Wl,-Map,/home/ensab/Pro/Git/RepRapFirmware/Release/RepRapFirmware.map" -o "/home/ensab/Pro/Git/RepRapFirmware/Release/RepRapFirmware.elf" "-L/home/ensab/Pro/Git/RepRapFirmware/Release" -lm -lgcc -mthumb -Wl,--cref -Wl,--check-sections -Wl,--gc-sections -Wl,--entry=Reset_Handler -Wl,--unresolved-symbols=report-all -Wl,--warn-common -Wl,--warn-section-align -Wl,--warn-unresolved-symbols -Wl,--start-group "/home/ensab/Pro/Git/RepRapFirmware/Release/arduino/syscalls_sam3.c.o" $(LINK_OBJ) $(AR) "/usr/local/arduino-1.5.2/hardware/arduino/sam/variants/arduino_due_x/libsam_sam3x8e_gcc_rel.a" "/home/ensab/Pro/Git/RepRapFirmware/Release/arduino.ar" -Wl,--end-group
|
||||||
|
@echo 'Finished building: $@'
|
||||||
|
@echo ' '
|
||||||
|
|
||||||
|
RepRapFirmware.eep: $(ELF)
|
||||||
|
@echo 'Create eeprom image'
|
||||||
|
${A.RECIPE.OBJCOPY.EEP.PATTERN}
|
||||||
|
@echo 'Finished building: $@'
|
||||||
|
@echo ' '
|
||||||
|
|
||||||
|
Release/RepRapFirmware.bin: $(EEP)
|
||||||
|
@echo 'Create Flash image (ihex format)'
|
||||||
|
"/usr/local/arduino-1.5.2/hardware/tools/g++_arm_none_eabi/bin/arm-none-eabi-objcopy" -O binary "/home/ensab/Pro/Git/RepRapFirmware/Release/RepRapFirmware.elf" "/home/ensab/Pro/Git/RepRapFirmware/Release/RepRapFirmware.bin"
|
||||||
|
@echo 'Finished building: $@'
|
||||||
|
@echo ' '
|
||||||
|
|
||||||
|
# Other Targets
|
||||||
|
clean:
|
||||||
|
-$(RM) $(ELF)$(C++_DEPS)$(AR)$(C_DEPS)$(CC_DEPS)$(FLASH_IMAGE)$(AR_OBJ)$(CPP_DEPS)$(LINK_OBJ)$(EEP)$(CXX_DEPS)$(C_UPPER_DEPS)$(SIZEDUMMY) RepRapFirmware
|
||||||
|
-@echo ' '
|
||||||
|
|
||||||
|
.PHONY: all clean dependents
|
||||||
|
.SECONDARY:
|
||||||
|
|
||||||
|
-include ../makefile.targets
|
8
Release/objects.mk
Normal file
8
Release/objects.mk
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
################################################################################
|
||||||
|
# Automatically-generated file. Do not edit!
|
||||||
|
################################################################################
|
||||||
|
|
||||||
|
USER_OBJS :=
|
||||||
|
|
||||||
|
LIBS :=
|
||||||
|
|
41
Release/sources.mk
Normal file
41
Release/sources.mk
Normal file
|
@ -0,0 +1,41 @@
|
||||||
|
################################################################################
|
||||||
|
# Automatically-generated file. Do not edit!
|
||||||
|
################################################################################
|
||||||
|
|
||||||
|
ELF_SRCS :=
|
||||||
|
O_UPPER_SRCS :=
|
||||||
|
O_SRCS :=
|
||||||
|
EEP_SRCS :=
|
||||||
|
CPP_SRCS :=
|
||||||
|
C_UPPER_SRCS :=
|
||||||
|
C_SRCS :=
|
||||||
|
AR_SRCS :=
|
||||||
|
CXX_SRCS :=
|
||||||
|
C++_SRCS :=
|
||||||
|
CC_SRCS :=
|
||||||
|
ELF :=
|
||||||
|
C++_DEPS :=
|
||||||
|
AR :=
|
||||||
|
C_DEPS :=
|
||||||
|
CC_DEPS :=
|
||||||
|
FLASH_IMAGE :=
|
||||||
|
AR_OBJ :=
|
||||||
|
CPP_DEPS :=
|
||||||
|
LINK_OBJ :=
|
||||||
|
EEP :=
|
||||||
|
CXX_DEPS :=
|
||||||
|
C_UPPER_DEPS :=
|
||||||
|
SIZEDUMMY :=
|
||||||
|
|
||||||
|
# Every subdirectory with source files must be described here
|
||||||
|
SUBDIRS := \
|
||||||
|
arduino/variant \
|
||||||
|
arduino/core \
|
||||||
|
arduino/core/USB \
|
||||||
|
. \
|
||||||
|
Libraries/SPI \
|
||||||
|
Libraries/SD/utility \
|
||||||
|
Libraries/SD \
|
||||||
|
Libraries/Ethernet/utility \
|
||||||
|
Libraries/Ethernet \
|
||||||
|
|
74
Release/subdir.mk
Normal file
74
Release/subdir.mk
Normal file
|
@ -0,0 +1,74 @@
|
||||||
|
################################################################################
|
||||||
|
# Automatically-generated file. Do not edit!
|
||||||
|
################################################################################
|
||||||
|
|
||||||
|
# Add inputs and outputs from these tool invocations to the build variables
|
||||||
|
CPP_SRCS += \
|
||||||
|
../GCodes.cpp \
|
||||||
|
../Heat.cpp \
|
||||||
|
../Move.cpp \
|
||||||
|
../Platform.cpp \
|
||||||
|
../RepRapFirmware.cpp \
|
||||||
|
../Webserver.cpp
|
||||||
|
|
||||||
|
CPP_DEPS += \
|
||||||
|
./GCodes.cpp.d \
|
||||||
|
./Heat.cpp.d \
|
||||||
|
./Move.cpp.d \
|
||||||
|
./Platform.cpp.d \
|
||||||
|
./RepRapFirmware.cpp.d \
|
||||||
|
./Webserver.cpp.d
|
||||||
|
|
||||||
|
LINK_OBJ += \
|
||||||
|
./GCodes.cpp.o \
|
||||||
|
./Heat.cpp.o \
|
||||||
|
./Move.cpp.o \
|
||||||
|
./Platform.cpp.o \
|
||||||
|
./RepRapFirmware.cpp.o \
|
||||||
|
./Webserver.cpp.o
|
||||||
|
|
||||||
|
|
||||||
|
# Each subdirectory must supply rules for building sources it contributes
|
||||||
|
GCodes.cpp.o: ../GCodes.cpp
|
||||||
|
@echo 'Building file: $<'
|
||||||
|
@echo 'Starting C++ compile'
|
||||||
|
"/usr/local/arduino-1.5.2/hardware/tools/g++_arm_none_eabi/bin/arm-none-eabi-g++" -c -g -Os -w -ffunction-sections -fdata-sections -nostdlib --param max-inline-insns-single=500 -fno-rtti -fno-exceptions -Dprintf=iprintf -mcpu=cortex-m3 -DF_CPU=84000000L -DARDUINO=152 -D__SAM3X8E__ -mthumb -DUSB_PID=0x003e -DUSB_VID=0x2341 -DUSBCON "-I/usr/local/arduino-1.5.2/hardware/arduino/sam/system/libsam" "-I/usr/local/arduino-1.5.2/hardware/arduino/sam/system/CMSIS/CMSIS/Include/" "-I/usr/local/arduino-1.5.2/hardware/arduino/sam/system/CMSIS/Device/ATMEL/" -I"/usr/local/arduino-1.5.2/hardware/arduino/sam/cores/arduino" -I"/usr/local/arduino-1.5.2/hardware/arduino/sam/variants/arduino_due_x" -I"/usr/local/arduino-1.5.2/hardware/arduino/sam/libraries/Ethernet" -I"/usr/local/arduino-1.5.2/hardware/arduino/sam/libraries/Ethernet/utility" -I"/usr/local/arduino-1.5.2/hardware/arduino/sam/libraries/SPI" -I"/usr/local/arduino-1.5.2/libraries/SD" -I"/usr/local/arduino-1.5.2/libraries/SD/utility" -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -x c++ "$<" -o "$@"
|
||||||
|
@echo 'Finished building: $<'
|
||||||
|
@echo ' '
|
||||||
|
|
||||||
|
Heat.cpp.o: ../Heat.cpp
|
||||||
|
@echo 'Building file: $<'
|
||||||
|
@echo 'Starting C++ compile'
|
||||||
|
"/usr/local/arduino-1.5.2/hardware/tools/g++_arm_none_eabi/bin/arm-none-eabi-g++" -c -g -Os -w -ffunction-sections -fdata-sections -nostdlib --param max-inline-insns-single=500 -fno-rtti -fno-exceptions -Dprintf=iprintf -mcpu=cortex-m3 -DF_CPU=84000000L -DARDUINO=152 -D__SAM3X8E__ -mthumb -DUSB_PID=0x003e -DUSB_VID=0x2341 -DUSBCON "-I/usr/local/arduino-1.5.2/hardware/arduino/sam/system/libsam" "-I/usr/local/arduino-1.5.2/hardware/arduino/sam/system/CMSIS/CMSIS/Include/" "-I/usr/local/arduino-1.5.2/hardware/arduino/sam/system/CMSIS/Device/ATMEL/" -I"/usr/local/arduino-1.5.2/hardware/arduino/sam/cores/arduino" -I"/usr/local/arduino-1.5.2/hardware/arduino/sam/variants/arduino_due_x" -I"/usr/local/arduino-1.5.2/hardware/arduino/sam/libraries/Ethernet" -I"/usr/local/arduino-1.5.2/hardware/arduino/sam/libraries/Ethernet/utility" -I"/usr/local/arduino-1.5.2/hardware/arduino/sam/libraries/SPI" -I"/usr/local/arduino-1.5.2/libraries/SD" -I"/usr/local/arduino-1.5.2/libraries/SD/utility" -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -x c++ "$<" -o "$@"
|
||||||
|
@echo 'Finished building: $<'
|
||||||
|
@echo ' '
|
||||||
|
|
||||||
|
Move.cpp.o: ../Move.cpp
|
||||||
|
@echo 'Building file: $<'
|
||||||
|
@echo 'Starting C++ compile'
|
||||||
|
"/usr/local/arduino-1.5.2/hardware/tools/g++_arm_none_eabi/bin/arm-none-eabi-g++" -c -g -Os -w -ffunction-sections -fdata-sections -nostdlib --param max-inline-insns-single=500 -fno-rtti -fno-exceptions -Dprintf=iprintf -mcpu=cortex-m3 -DF_CPU=84000000L -DARDUINO=152 -D__SAM3X8E__ -mthumb -DUSB_PID=0x003e -DUSB_VID=0x2341 -DUSBCON "-I/usr/local/arduino-1.5.2/hardware/arduino/sam/system/libsam" "-I/usr/local/arduino-1.5.2/hardware/arduino/sam/system/CMSIS/CMSIS/Include/" "-I/usr/local/arduino-1.5.2/hardware/arduino/sam/system/CMSIS/Device/ATMEL/" -I"/usr/local/arduino-1.5.2/hardware/arduino/sam/cores/arduino" -I"/usr/local/arduino-1.5.2/hardware/arduino/sam/variants/arduino_due_x" -I"/usr/local/arduino-1.5.2/hardware/arduino/sam/libraries/Ethernet" -I"/usr/local/arduino-1.5.2/hardware/arduino/sam/libraries/Ethernet/utility" -I"/usr/local/arduino-1.5.2/hardware/arduino/sam/libraries/SPI" -I"/usr/local/arduino-1.5.2/libraries/SD" -I"/usr/local/arduino-1.5.2/libraries/SD/utility" -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -x c++ "$<" -o "$@"
|
||||||
|
@echo 'Finished building: $<'
|
||||||
|
@echo ' '
|
||||||
|
|
||||||
|
Platform.cpp.o: ../Platform.cpp
|
||||||
|
@echo 'Building file: $<'
|
||||||
|
@echo 'Starting C++ compile'
|
||||||
|
"/usr/local/arduino-1.5.2/hardware/tools/g++_arm_none_eabi/bin/arm-none-eabi-g++" -c -g -Os -w -ffunction-sections -fdata-sections -nostdlib --param max-inline-insns-single=500 -fno-rtti -fno-exceptions -Dprintf=iprintf -mcpu=cortex-m3 -DF_CPU=84000000L -DARDUINO=152 -D__SAM3X8E__ -mthumb -DUSB_PID=0x003e -DUSB_VID=0x2341 -DUSBCON "-I/usr/local/arduino-1.5.2/hardware/arduino/sam/system/libsam" "-I/usr/local/arduino-1.5.2/hardware/arduino/sam/system/CMSIS/CMSIS/Include/" "-I/usr/local/arduino-1.5.2/hardware/arduino/sam/system/CMSIS/Device/ATMEL/" -I"/usr/local/arduino-1.5.2/hardware/arduino/sam/cores/arduino" -I"/usr/local/arduino-1.5.2/hardware/arduino/sam/variants/arduino_due_x" -I"/usr/local/arduino-1.5.2/hardware/arduino/sam/libraries/Ethernet" -I"/usr/local/arduino-1.5.2/hardware/arduino/sam/libraries/Ethernet/utility" -I"/usr/local/arduino-1.5.2/hardware/arduino/sam/libraries/SPI" -I"/usr/local/arduino-1.5.2/libraries/SD" -I"/usr/local/arduino-1.5.2/libraries/SD/utility" -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -x c++ "$<" -o "$@"
|
||||||
|
@echo 'Finished building: $<'
|
||||||
|
@echo ' '
|
||||||
|
|
||||||
|
RepRapFirmware.cpp.o: ../RepRapFirmware.cpp
|
||||||
|
@echo 'Building file: $<'
|
||||||
|
@echo 'Starting C++ compile'
|
||||||
|
"/usr/local/arduino-1.5.2/hardware/tools/g++_arm_none_eabi/bin/arm-none-eabi-g++" -c -g -Os -w -ffunction-sections -fdata-sections -nostdlib --param max-inline-insns-single=500 -fno-rtti -fno-exceptions -Dprintf=iprintf -mcpu=cortex-m3 -DF_CPU=84000000L -DARDUINO=152 -D__SAM3X8E__ -mthumb -DUSB_PID=0x003e -DUSB_VID=0x2341 -DUSBCON "-I/usr/local/arduino-1.5.2/hardware/arduino/sam/system/libsam" "-I/usr/local/arduino-1.5.2/hardware/arduino/sam/system/CMSIS/CMSIS/Include/" "-I/usr/local/arduino-1.5.2/hardware/arduino/sam/system/CMSIS/Device/ATMEL/" -I"/usr/local/arduino-1.5.2/hardware/arduino/sam/cores/arduino" -I"/usr/local/arduino-1.5.2/hardware/arduino/sam/variants/arduino_due_x" -I"/usr/local/arduino-1.5.2/hardware/arduino/sam/libraries/Ethernet" -I"/usr/local/arduino-1.5.2/hardware/arduino/sam/libraries/Ethernet/utility" -I"/usr/local/arduino-1.5.2/hardware/arduino/sam/libraries/SPI" -I"/usr/local/arduino-1.5.2/libraries/SD" -I"/usr/local/arduino-1.5.2/libraries/SD/utility" -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -x c++ "$<" -o "$@"
|
||||||
|
@echo 'Finished building: $<'
|
||||||
|
@echo ' '
|
||||||
|
|
||||||
|
Webserver.cpp.o: ../Webserver.cpp
|
||||||
|
@echo 'Building file: $<'
|
||||||
|
@echo 'Starting C++ compile'
|
||||||
|
"/usr/local/arduino-1.5.2/hardware/tools/g++_arm_none_eabi/bin/arm-none-eabi-g++" -c -g -Os -w -ffunction-sections -fdata-sections -nostdlib --param max-inline-insns-single=500 -fno-rtti -fno-exceptions -Dprintf=iprintf -mcpu=cortex-m3 -DF_CPU=84000000L -DARDUINO=152 -D__SAM3X8E__ -mthumb -DUSB_PID=0x003e -DUSB_VID=0x2341 -DUSBCON "-I/usr/local/arduino-1.5.2/hardware/arduino/sam/system/libsam" "-I/usr/local/arduino-1.5.2/hardware/arduino/sam/system/CMSIS/CMSIS/Include/" "-I/usr/local/arduino-1.5.2/hardware/arduino/sam/system/CMSIS/Device/ATMEL/" -I"/usr/local/arduino-1.5.2/hardware/arduino/sam/cores/arduino" -I"/usr/local/arduino-1.5.2/hardware/arduino/sam/variants/arduino_due_x" -I"/usr/local/arduino-1.5.2/hardware/arduino/sam/libraries/Ethernet" -I"/usr/local/arduino-1.5.2/hardware/arduino/sam/libraries/Ethernet/utility" -I"/usr/local/arduino-1.5.2/hardware/arduino/sam/libraries/SPI" -I"/usr/local/arduino-1.5.2/libraries/SD" -I"/usr/local/arduino-1.5.2/libraries/SD/utility" -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -x c++ "$<" -o "$@"
|
||||||
|
@echo 'Finished building: $<'
|
||||||
|
@echo ' '
|
||||||
|
|
||||||
|
|
Reference in a new issue