<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="de">
	<id>https://spaceonearth.org/index.php?action=history&amp;feed=atom&amp;title=Mc-avr-notes</id>
	<title>Mc-avr-notes - Versionsgeschichte</title>
	<link rel="self" type="application/atom+xml" href="https://spaceonearth.org/index.php?action=history&amp;feed=atom&amp;title=Mc-avr-notes"/>
	<link rel="alternate" type="text/html" href="https://spaceonearth.org/index.php?title=Mc-avr-notes&amp;action=history"/>
	<updated>2026-05-02T18:30:27Z</updated>
	<subtitle>Versionsgeschichte dieser Seite in SpaceOnEarth</subtitle>
	<generator>MediaWiki 1.38.4</generator>
	<entry>
		<id>https://spaceonearth.org/index.php?title=Mc-avr-notes&amp;diff=163&amp;oldid=prev</id>
		<title>Axel: 1 Version importiert</title>
		<link rel="alternate" type="text/html" href="https://spaceonearth.org/index.php?title=Mc-avr-notes&amp;diff=163&amp;oldid=prev"/>
		<updated>2022-04-04T14:35:11Z</updated>

		<summary type="html">&lt;p&gt;1 Version importiert&lt;/p&gt;
&lt;table style=&quot;background-color: #fff; color: #202122;&quot; data-mw=&quot;interface&quot;&gt;
				&lt;tr class=&quot;diff-title&quot; lang=&quot;de&quot;&gt;
				&lt;td colspan=&quot;1&quot; style=&quot;background-color: #fff; color: #202122; text-align: center;&quot;&gt;← Nächstältere Version&lt;/td&gt;
				&lt;td colspan=&quot;1&quot; style=&quot;background-color: #fff; color: #202122; text-align: center;&quot;&gt;Version vom 4. April 2022, 16:35 Uhr&lt;/td&gt;
				&lt;/tr&gt;&lt;tr&gt;&lt;td colspan=&quot;2&quot; class=&quot;diff-notice&quot; lang=&quot;de&quot;&gt;&lt;div class=&quot;mw-diff-empty&quot;&gt;(kein Unterschied)&lt;/div&gt;
&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</summary>
		<author><name>Axel</name></author>
	</entry>
	<entry>
		<id>https://spaceonearth.org/index.php?title=Mc-avr-notes&amp;diff=162&amp;oldid=prev</id>
		<title>h_&gt;Axel: Textersetzung - „  * “ durch „* “</title>
		<link rel="alternate" type="text/html" href="https://spaceonearth.org/index.php?title=Mc-avr-notes&amp;diff=162&amp;oldid=prev"/>
		<updated>2019-12-31T11:28:05Z</updated>

		<summary type="html">&lt;p&gt;Textersetzung - „  * “ durch „* “&lt;/p&gt;
&lt;p&gt;&lt;b&gt;Neue Seite&lt;/b&gt;&lt;/p&gt;&lt;div&gt;====== I_UfE_AVR ======&lt;br /&gt;
&lt;br /&gt;
=usbprog=&lt;br /&gt;
*USBPROG homepage http://www.embedded-projects.net/usbprog&lt;br /&gt;
======installation======&lt;br /&gt;
apt-get install libusb libxml libcurl libcurl-dev wxWidgets&lt;br /&gt;
*libusb to access the device,&lt;br /&gt;
*libxml to parse the firmware descriptions,&lt;br /&gt;
*libcurl libcurl-dev to download the firmware,readline toj simplify editing of the command line (in the CLI version),&lt;br /&gt;
*wxWidgets, if you want to compile also the GUI version and&lt;br /&gt;
&lt;br /&gt;
*$ ./configure&lt;br /&gt;
*$ make&lt;br /&gt;
*$ su&lt;br /&gt;
*$ make install&lt;br /&gt;
&lt;br /&gt;
======Rechte für den Adapter======&lt;br /&gt;
if you want to use the usbprog-gui for firmware change as normal user and not as root only on a recent Linux system using udev, you can tell udev do modify permissions accordingly.&lt;br /&gt;
&lt;br /&gt;
To configure udev, create a file named /etc/udev/rules.d/80-usbprog.rules with the content&lt;br /&gt;
Code:&lt;br /&gt;
&lt;br /&gt;
 SYSFS{idVendor}==&amp;quot;03eb&amp;quot;, SYSFS{idProduct}==&amp;quot;2104&amp;quot;, GROUP=&amp;quot;ufe&amp;quot;, MODE=&amp;quot;0660&amp;quot;&lt;br /&gt;
=programmier Tips=&lt;br /&gt;
======AXOS geht nicht mehr/ Codelänge--[[User:Axel|ag]] 10:24, 28 April 2009 (UTC)======&lt;br /&gt;
wenn man gcc option -O2 wegläßt (bzw -O0 wählt) funktioniert das axos nicht mehr.&lt;br /&gt;
&lt;br /&gt;
-O2 ergab bei meinem Testprogramm den kürzesten code&lt;br /&gt;
======How do I use a #define&amp;#039;d constant in an asm statement?--[[User:Axel|ag]] 15:14, 5 April 2009 (UTC)======&lt;br /&gt;
eg works:&lt;br /&gt;
 asm volatile(&amp;quot;sbi 0x18,0x07;&amp;quot;);&lt;br /&gt;
 Which works. When you do the same thing but replace the address of the port by its macro name, like this:&lt;br /&gt;
 asm volatile(&amp;quot;sbi PORTB,0x07;&amp;quot;);&lt;br /&gt;
 you get a compilation error: &amp;quot;Error: constant value required&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
 PORTB is a precompiler definition included in the processor specific file included in avr/io.h. &lt;br /&gt;
 As you may know, the precompiler will not  touch  strings and PORTB, instead of 0x18, &lt;br /&gt;
 gets passed to the assembler. One way to avoid this problem is:&lt;br /&gt;
&lt;br /&gt;
 asm volatile(&amp;quot;sbi %0, 0x07&amp;quot; : &amp;quot;I&amp;quot; (_SFR_IO_ADDR(PORTB)):);&lt;br /&gt;
Note:&lt;br /&gt;
 For C programs, rather use the standard C bit operators instead, &lt;br /&gt;
 so the above would be expressed as PORTB |= (1 &amp;lt;&amp;lt; 7). &lt;br /&gt;
 The optimizer will  take care to transform this &lt;br /&gt;
 into a single SBI instruction, assuming the operands allow for this.&lt;br /&gt;
&lt;br /&gt;
=Ethernet=&lt;br /&gt;
*http://www.watterott.com/de/WIZnet-WIZ812MJ-Ethernet-Modul&lt;br /&gt;
* ethernet http://www.mikrocontroller.net/articles/ENC28J60#Hardware&lt;br /&gt;
=links=&lt;br /&gt;
* http://www.myavr.de&lt;br /&gt;
* http://www.olimex.com/dev/index.html&lt;br /&gt;
* http://www.myplace.nu/avr/&lt;br /&gt;
* http://www.avrrepository.com/\n[[category:DWImport]]\n&lt;/div&gt;</summary>
		<author><name>h_&gt;Axel</name></author>
	</entry>
</feed>