E-LAB Computers General Support and Questions for our Products https://forum.e-lab.de/rss.php en Wed, 22 Jan 2025 06:13:36 +0100 Wed, 22 Jan 2025 06:13:36 +0100 CBACK Forum https://forum.e-lab.de/shared/syndication_gfx/touch_icon.png E-LAB Computers https://forum.e-lab.de/shared/syndication_gfx/touch_icon.png General Support and Questions for our Products 144 144 Hilfe beim Übersetzen des Handbuchs erforderlich Hallo. Ich brauche Hilfe von einem oder mehreren deutschen Muttersprachlern bei der bevorstehenden Veröffentlichung von AVRco. Ich habe die Änderungen in separate Dokumente im otd-Format aufgeteilt, kann sie aber bei Bedarf in das doc-Format ändern. Machen Sie sich keine Sorgen um die Abschnittsnummern – damit kann ich umgehen. Ich füge auch die vollständige englische Version des Compilers als Kontextreferenz bei. https://forum.e-lab.de/topic.php?t=4166 Sat, 18 Jan 2025 17:36:59 +0100 AVRco https://forum.e-lab.de/topic.php?t=4166 eeprom bei Xmega256A3U Guten morgen, noch nie hatte ich Probleme beim eeprom schreiben und lesen bei AtXmega256A3U, aber gestern abend bin ich fast irre geworden. Good morning, I've never had problems reading and writing eeprom on AtXmega256A3U, but last night I almost went crazy. Seit wann geht das nicht mehr Since when is this no longer possible {$EEPROM} structconst   MyString1   : String[5]  =  'C2';       MyString2   : String[5]  =  'D3';  Aber so gehts, wenn ich {$EEPROM} raus lasse. But this works if I leave out {$EEPROM}. structconst   MyString1   : String[5]  =  'C2';       MyString2   : String[5]  =  'D3';  Gruß Frank https://forum.e-lab.de/topic.php?t=4162 Thu, 05 Dec 2024 05:54:29 +0100 AVRco https://forum.e-lab.de/topic.php?t=4162 Problem with pTiny828.dsc file Hello I have a project that uses the ATTiny828. This is an old project, that recently I had to update to fix a bug in it. However, when I compile this project, I receive the error: Error: C:\program files (x86)\avrco\avrco\PTINY828.dsc "ubbrl" not complete/correct defined I have attached the descriptor file. As you can see, ubrrl does exist in this file, "ubrrl=$C4". Just in case it was a problem with the latest version of E-Lab, I uninstalled it and installed the version I used to create the original project, with the same result. I even created a blank Tiny828 project with the same result. What is puzzling me the most is that this is an old project, and I previously had no problems with it. Now I am having problems, but cannot see what is causing that problem. Any ideas? Thank you https://forum.e-lab.de/topic.php?t=4159 Thu, 21 Nov 2024 10:10:23 +0100 AVRco https://forum.e-lab.de/topic.php?t=4159 neuere ATtinys Aktuelle Compilerversion: 5.11.15 Programmer: ISP3-X Hallo, welche neuere Compilerversion passt zu den neueren ATtinys: ATtiny417/814/816/817 ATtiny1614/1616/1617 Danke Gruß Mathias https://forum.e-lab.de/topic.php?t=4155 Tue, 29 Oct 2024 20:29:57 +0100 AVRco https://forum.e-lab.de/topic.php?t=4155 Bug in Optimizer at CompareBlock? Hi, In my program, I use CompareBlock. It works normally until I run the Optimizer. With the optimized code, it always gives a False result. I've checked the generated asm files and find that with the optimizer, only the first variable's addres is set, so it will always compare with a rendom memory area. I atttached a very simple test program and the 2 asm outputs. I use compiler ver. 6.00.00, optimizer ver. 3.6.12.0 Do I something wrong or it isreally a bug? And a smaller error in PED32new: If I open the About dialog a second time, then it doesn't write the compiler version and the dialog couldn't be closed, so it hangs the whole program. https://forum.e-lab.de/topic.php?t=4154 Mon, 21 Oct 2024 16:54:21 +0200 AVRco https://forum.e-lab.de/topic.php?t=4154 v6.00.05 released Version 6.00.05 of the AVRco install has been released. This includes new releases by Miparo as well as a new version of the compiler. Regards Merlin. ================================================================= Version 6.00.05 der AVRco-Installation wurde veröffentlicht. Diese enthält neue Versionen von Miparo sowie eine neue Version des Compilers. Grüße, Merlin. https://forum.e-lab.de/topic.php?t=4153 Sun, 29 Sep 2024 17:46:18 +0200 AVRco https://forum.e-lab.de/topic.php?t=4153 BMPEdit Ich hab da noch etwas neueres, herzlichen Dank an Miparo, einen anderen BMPEdit. Der Unterschied zum Original besteht darin, daß dieser bei gedrückter Maustaste weiter zeichet. Aber Achtung: Fährt man mit gedrückter Maustaste über ein bereits aktiviertes/schwarzes Pixel, wird dieses invertiert. Gruss Harry https://forum.e-lab.de/topic.php?t=4152 Thu, 19 Sep 2024 17:02:58 +0200 AVRco https://forum.e-lab.de/topic.php?t=4152 I2C Bus - wie funktioniert die Kommunikation Hallo zusammen, Ich habe mir einen SHT31-D (Temperatur- und Feuchtigkeits-) Sensor zugelegt, der mit dem I2C-Bus angesprochen wird, und möchte gern unter AVRco Pascal "mit ihm reden". Verwenden will ich den HardwareTWI im Atmega 32, also SCL auf C.0, SDA auf C.1. Ich finde aber keinen Ansatz. Die einzigen Befehle, die ich zur Kommunikation gefunden habe sind TWIin und TWIout. Nun ist es so, dass ich das Teil schon über BASCOM ausprobiert habe und dort hat es wie folgt geklappt: --------------------------------------------- I2Cstart Adressbyte + Schreibbit senden MSB Befehl senden LSB Befehl senden I2Cstop 200ms warten I2Cstart Adreesbyte + Lesebit senden LSB einlesen , Ack //Temperatur MSB einlesen, Ack //Temperatur CRC einlesen, Ack LSB einlesen, Ack //Feuchte MSB einlesen, Ack //Feuchte CRC einlesen, NAck I2Cstop --------------------------------------------- und dann alles ausrechnen usw. Wie bekomme ich diesen Ablauf in AVRco hin oder … https://forum.e-lab.de/topic.php?t=4151 Mon, 16 Sep 2024 19:17:43 +0200 AVRco https://forum.e-lab.de/topic.php?t=4151 AVRProg Wenn wir schon dabei sind, hier noch gleich die neueste Version des AVRProg.exe von, ich glaube, letztem Montag. Gruss Harry https://forum.e-lab.de/topic.php?t=4150 Wed, 11 Sep 2024 17:45:04 +0200 AVRco https://forum.e-lab.de/topic.php?t=4150 AVRco Install Ich habe gerade AVRco neu Installiert, aber die Treiber für den Programmer werden nicht mit Installiert. I just reinstalled AVRco, but the drivers for the programmer are not installed. Gruß Frank https://forum.e-lab.de/topic.php?t=4149 Wed, 11 Sep 2024 13:09:52 +0200 AVRco https://forum.e-lab.de/topic.php?t=4149