Gast
#674904
Hallo Leute, ich bin in Thema AVR ein Anfänger: Ich habe mir zum Test, das AVR-GCC-TutorialProjekt, zu rade gezogen, und habe nur die Ports von B auf A umgeschrieben. #include <avr/io.h> // (1) int main (void) { // (2) DDRA = 0xff; // (3) PORTA = 0x03; // (4) while(1) { // (5a) /* "leere" Schleife*/; // (5b) } // (5c) /* wird nie erreicht */ return 0; // (6) } --------------------------------------------- Beim erstellen des Projektes bekomme ich folgende Fehlermeldung: gcc plug-in: Could not insert Project data into Project tree gcc plug-in: Error: Object file not found on expected location C:\Program Files (x86)\Stardock\Object Desktop\DeskScapes\Atmega8515\default\Atmega8515.elf Loaded plugin AVR GCC Loaded partfile: C:\Program Files (x86)\Atmel\AVR Tools\PartDescriptionFiles\ATmega8515.xml gcc plug-in: Error: Object file not found on expected location C:\Users\Tobias\Documents\AVR\Atmega8515\test\default\test.elf ______________________________________________________________ Loaded plugin STK500 gcc plug-in: PlugInUtility::setupAndCheckWinAVR() Found avr-gcc at C:\Program Files (x86)\WinAVR-20070525\bin\avr-gcc.exe gcc plug-in: PlugInUtility::setupAndCheckWinAVR() Found make at C:\Program Files (x86)\WinAVR-20070525\utils\bin\make.exe gcc plug-in: PlugInUtility::setupAndCheckWinAVR() Found avr-gcc at C:\Program Files (x86)\WinAVR-20070525\bin\avr-gcc.exe gcc plug-in: PlugInUtility::setupAndCheckWinAVR() Found make at C:\Program Files (x86)\WinAVR-20070525\utils\bin\make.exe Loaded plugin AVR GCC Loaded partfile: C:\Program Files (x86)\Atmel\AVR Tools\PartDescriptionFiles\ATmega8515.xml Flash memory 8192 EEPROM memory 512 I/O memory start 0x20 I/O start 0x00 I/O stop 0x3F SRAM size 512 SRAM start 0x60 XRAM size 65536 Temporary page buffer 64 SRAM start 0x260 gcc plug-in: CProjectTree::OnSize() gcc plug-in: CProjectTree::OnSize() gcc plug-in: CProjectTree::OnSize() gcc plug-in: CProjectTree::updateControlDataFromProject() Could not find source file in Project datastructure gcc plug-in: Could not insert Project data into Project tree gcc plug-in: Error: Object file not found on expected location C:\Program Files (x86)\Stardock\Object Desktop\DeskScapes\Atmega8515\default\Atmega8515.elf Loaded plugin AVR GCC Loaded partfile: C:\Program Files (x86)\Atmel\AVR Tools\PartDescriptionFiles\ATmega8515.xml Flash memory 8192 EEPROM memory 512 I/O memory start 0x20 I/O start 0x00 I/O stop 0x3F SRAM size 512 SRAM start 0x60 XRAM size 65536 Temporary page buffer 64 SRAM start 0x260 gcc plug-in: CProjectTree::OnSize() gcc plug-in: CProjectTree::OnSize() gcc plug-in: CProjectTree::OnSize() gcc plug-in: PlugInUtility::getExternalHeaderFiles Dependency directory does not exist Loaded file: C:\Users\Tobias\Documents\AVR\Atmega8515\test\test.c gcc plug-in: Output directory C:\Users\Tobias\Documents\AVR\Atmega8515\test\default\ does not exist gcc plug-in: Created directory C:\Users\Tobias\Documents\AVR\Atmega8515\test\default\ gcc plug-in: make() Target successfully built gcc plug-in: PlugInUtility::getExternalHeaderFiles Dependency directory does not exist gcc plug-in: Error: Object file not found on expected location C:\Users\Tobias\Documents\AVR\Atmega8515\test\default\test.elf gcc plug-in: PlugInUtility::getExternalHeaderFiles Dependency directory does not exist Kann mir bitte jemand ein Tip geben was ich falsch mache. Mit besten Dank im voraus Tobias