<?xml version="1.0" encoding="UTF-8"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en-gb">
	<link rel="self" type="application/atom+xml" href="https://forums.obdev.at/app.php/feed/topic/437" />

	<title>Objective Development Forums</title>
	
	<link href="https://forums.obdev.at/index.php" />
	<updated>2007-04-29T21:56:10+02:00</updated>

	<author><name><![CDATA[Objective Development Forums]]></name></author>
	<id>https://forums.obdev.at/app.php/feed/topic/437</id>

		<entry>
		<author><name><![CDATA[christian]]></name></author>
		<updated>2007-04-29T21:56:10+02:00</updated>

		<published>2007-04-29T21:56:10+02:00</published>
		<id>https://forums.obdev.at/viewtopic.php?t=437&amp;p=1298#p1298</id>
		<link href="https://forums.obdev.at/viewtopic.php?t=437&amp;p=1298#p1298"/>
		<title type="html"><![CDATA[AVR-Doper problems prog ATMEGA2561]]></title>

		
		<content type="html" xml:base="https://forums.obdev.at/viewtopic.php?t=437&amp;p=1298#p1298"><![CDATA[
Thanks for that hint and thanks for testing the patch with large devices!<br /><br />We'll include it in the next release of AVR-Doper.<p>Statistics: Posted by <a href="https://forums.obdev.at/memberlist.php?mode=viewprofile&amp;u=8">christian</a> — Sun Apr 29, 2007 9:56 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Anonymous]]></name></author>
		<updated>2007-04-27T17:31:50+02:00</updated>

		<published>2007-04-27T17:31:50+02:00</published>
		<id>https://forums.obdev.at/viewtopic.php?t=437&amp;p=1288#p1288</id>
		<link href="https://forums.obdev.at/viewtopic.php?t=437&amp;p=1288#p1288"/>
		<title type="html"><![CDATA[AVR-Doper problems prog ATMEGA2561]]></title>

		
		<content type="html" xml:base="https://forums.obdev.at/viewtopic.php?t=437&amp;p=1288#p1288"><![CDATA[
And to author AVR-Doper thanks!!!<p>Statistics: Posted by Guest — Fri Apr 27, 2007 5:31 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Anonymous]]></name></author>
		<updated>2007-04-27T17:28:55+02:00</updated>

		<published>2007-04-27T17:28:55+02:00</published>
		<id>https://forums.obdev.at/viewtopic.php?t=437&amp;p=1287#p1287</id>
		<link href="https://forums.obdev.at/viewtopic.php?t=437&amp;p=1287#p1287"/>
		<title type="html"><![CDATA[AVR-Doper problems prog ATMEGA2561]]></title>

		
		<content type="html" xml:base="https://forums.obdev.at/viewtopic.php?t=437&amp;p=1287#p1287"><![CDATA[
Thanks, ahulap!!!<br />All works!!!<br />(Áîëüøîå ñïàñèáî èç Ñåâàñòîïîëÿ! <img class="smilies" src="./../../../images/smilies/icon_wink.gif" alt=";)" title="Wink" /> )<p>Statistics: Posted by Guest — Fri Apr 27, 2007 5:28 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[ahulap]]></name></author>
		<updated>2007-04-27T13:07:02+02:00</updated>

		<published>2007-04-27T13:07:02+02:00</published>
		<id>https://forums.obdev.at/viewtopic.php?t=437&amp;p=1285#p1285</id>
		<link href="https://forums.obdev.at/viewtopic.php?t=437&amp;p=1285#p1285"/>
		<title type="html"><![CDATA[AVR-Doper problems prog ATMEGA2561]]></title>

		
		<content type="html" xml:base="https://forums.obdev.at/viewtopic.php?t=437&amp;p=1285#p1285"><![CDATA[
In avr068.pdf there is a note about address:<br />&quot;If bit 31 is set, this indicates that the following read/write operation will be performed on a memory that is larger than 64KBytes. This is an indication to STK500 that to load extended address must be executed. &quot;<br />For mega2561 that ISP command is 4D 00 addr 00.<br />So, I think, at the beginning of &quot;ispReadMemory&quot; or &quot;ispProgramMemory&quot; it is needed to insert something like this:<br />if (stkAddress.bytes[3] &amp; 0x80) {<br />     cmdBuffer[0] = 0x4d;<br />     cmdBuffer[1] = 0x00;<br />     cmdBuffer[2] = stkAddress.bytes[2];<br />     cmdBuffer[3] = 0x00;<br />     ispBlockTransfer(cmdBuffer, 4);<br />}<p>Statistics: Posted by <a href="https://forums.obdev.at/memberlist.php?mode=viewprofile&amp;u=111">ahulap</a> — Fri Apr 27, 2007 1:07 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Anonymous]]></name></author>
		<updated>2007-04-27T10:12:17+02:00</updated>

		<published>2007-04-27T10:12:17+02:00</published>
		<id>https://forums.obdev.at/viewtopic.php?t=437&amp;p=1284#p1284</id>
		<link href="https://forums.obdev.at/viewtopic.php?t=437&amp;p=1284#p1284"/>
		<title type="html"><![CDATA[AVR-Doper problems prog ATMEGA2561]]></title>

		
		<content type="html" xml:base="https://forums.obdev.at/viewtopic.php?t=437&amp;p=1284#p1284"><![CDATA[
Well, I've found the declaration of stkAddress<br /><div class="codebox"><p>Code: </p><pre><code>typedef union&#123;<br />    unsigned long   dword;<br />    uchar           bytes&#91;4&#93;;<br />&#125;utilDword_t;<br /></code></pre></div><br /><br />What should I change here to solve the problem?<p>Statistics: Posted by Guest — Fri Apr 27, 2007 10:12 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[christian]]></name></author>
		<updated>2007-04-26T18:16:54+02:00</updated>

		<published>2007-04-26T18:16:54+02:00</published>
		<id>https://forums.obdev.at/viewtopic.php?t=437&amp;p=1281#p1281</id>
		<link href="https://forums.obdev.at/viewtopic.php?t=437&amp;p=1281#p1281"/>
		<title type="html"><![CDATA[AVR-Doper problems prog ATMEGA2561]]></title>

		
		<content type="html" xml:base="https://forums.obdev.at/viewtopic.php?t=437&amp;p=1281#p1281"><![CDATA[
AVR-Doper is not compatible with devices larger than 128 kB. The ISP protocol we have implemented only supports 16 bit word addresses.<br /><br />If you know how to extend this protocol, please provide a patch. See the file isp.c in AVR-Doper's firmware source code and search for &quot;stkAddress&quot;. This yields all places where the device address is accessed. These should be extended to more than 16 bits where applicable.<p>Statistics: Posted by <a href="https://forums.obdev.at/memberlist.php?mode=viewprofile&amp;u=8">christian</a> — Thu Apr 26, 2007 6:16 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Anonymous]]></name></author>
		<updated>2007-04-26T17:21:40+02:00</updated>

		<published>2007-04-26T17:21:40+02:00</published>
		<id>https://forums.obdev.at/viewtopic.php?t=437&amp;p=1278#p1278</id>
		<link href="https://forums.obdev.at/viewtopic.php?t=437&amp;p=1278#p1278"/>
		<title type="html"><![CDATA[AVR-Doper problems prog ATMEGA2561]]></title>

		
		<content type="html" xml:base="https://forums.obdev.at/viewtopic.php?t=437&amp;p=1278#p1278"><![CDATA[
Hi.<br />At programming ATMEGA2561 Flash up to 127,9 kb all OK.<br />If it is more 127,9 kb the program in the controller does not work.<br />It is a problem AVR-Doper?<br />Thanks.<p>Statistics: Posted by Guest — Thu Apr 26, 2007 5:21 pm</p><hr />
]]></content>
	</entry>
	</feed>
