E-LAB Computers General Support and Questions for our Products https://forum.e-lab.de/rss.php en Thu, 21 Nov 2024 07:58:46 +0100 Thu, 21 Nov 2024 07:58:46 +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 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 Tools in IDE AVRco PEDNew funktionieren nicht Hallo zusammen, wenn ich mit der neuen IDE AVRco PDENew (Rev. 6.92) arbeiten will starten verschiedene Tool nicht (CharSet Editor,LCD Char Editor, Bitmap Editor, Curve Editor), obwohl die Toolpfade alle richtig eingetragen sind . Arbeite ich mit der älteren Version (Rev. 6.42) funktioniert alles. Irgend eine Erklärung / Lösung dafür. Ich arbeite übrigens immer noch mit Win 7 Pro 64Bit auf meinem alten Laptop, sollte das das Problem sein? Grüsse Roy https://forum.e-lab.de/topic.php?t=4148 Tue, 10 Sep 2024 14:22:58 +0200 AVRco https://forum.e-lab.de/topic.php?t=4148 Problem beim Einbinden einer eigenen Unit Hallo, ich habe folgendes Codeschnipsel: program Wiretest;  {$WG}                      {global Warnings on}  {}  {$WG}                      {global Warnings on}  Device = mega32, VCC = 5.0;  { $BOOTRST $03800}         {Reset Jump to $03800}  Import SysTick, LCDport, SwitchPort1;  From System Import longword, SwitchPTimer1, Float;  Define   ProcClock      = 16000000;       {Hertz}    SysTick        = 10;             {msec}    StackSize      = $0064, iData;    FrameSize      = $0064, iData;    LCDport        = PortD;    LCDtype        = 44780;    LCDrows        = 2;              {rows}    LCDcolumns     = 16;             {columns per line}    SwitchPort1    = PinB, $00;     // Polarity, alle Bit (Taster) nach Plus (ClosePlus)    PolarityP1     = %11111111;     uses     1Wirebus; Implementation {$IDATA} {--------------------------------------------------------------}  { Const Declarations }  const Beim Compilieren kommt für die "Us… https://forum.e-lab.de/topic.php?t=4147 Fri, 06 Sep 2024 19:53:48 +0200 AVRco https://forum.e-lab.de/topic.php?t=4147 LCDPORT error on ATMega128 on Compiler 6.00.04 Hi, I've just installed V6.00.04 version of AVRCO. Previously I used 5.10.00 for years. I tried to compile one of my old programs with the new version and run into a probem: On ATMega128, if LCDPORT is defined to PORTF or PORTG then the compiler throws an error: "Error: DEFINE LCDPORT = PortX (x defined in *.dsc) expected". PORTE or lower doesn't give an error. The error could be reproduced with a minimal, project wizard generated file I attached. Any idea about what can be the problem? https://forum.e-lab.de/topic.php?t=4145 Thu, 01 Aug 2024 10:12:53 +0200 AVRco https://forum.e-lab.de/topic.php?t=4145