<?xml version="1.0" encoding="UTF-8"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="pl-pl">
<link rel="self" type="application/atom+xml" href="https://forum.atnel.pl/feed.php?f=4&amp;t=2195&amp;mode" />

<title>ATNEL tech-forum</title>
<link href="https://forum.atnel.pl/index.php" />
<updated>2013-01-26T16:22:36+01:00</updated>

<author><name><![CDATA[ATNEL tech-forum]]></name></author>
<id>https://forum.atnel.pl/feed.php?f=4&amp;t=2195&amp;mode</id>
<entry>
<author><name><![CDATA[staneq]]></name></author>
<updated>2013-01-26T16:22:36+01:00</updated>
<published>2013-01-26T16:22:36+01:00</published>
<id>https://forum.atnel.pl/viewtopic.php?t=2195&amp;p=25900#p25900</id>
<link href="https://forum.atnel.pl/viewtopic.php?t=2195&amp;p=25900#p25900"/>
<title type="html"><![CDATA[Re: PROGMEM problem]]></title>

<content type="html" xml:base="https://forum.atnel.pl/viewtopic.php?t=2195&amp;p=25900#p25900"><![CDATA[
Dziękuje bardzo <img src="https://forum.atnel.pl/images/smilies/icon_e_smile.gif" alt=":)" title="Szczęśliwy" /><br />Fakt oglądałem poradnik i czytałem artykuł ale jakoś wyleciało mi z głowy <img src="https://forum.atnel.pl/images/smilies/icon_e_smile.gif" alt=":)" title="Szczęśliwy" /> <br /><br />A i zaglądałem na strone Atnela w erracie ale to co prawda nie błąd <img src="https://forum.atnel.pl/images/smilies/icon_e_smile.gif" alt=":)" title="Szczęśliwy" /><br />A na bloga jakoś nie pomyślałem żeby wejść.<p>Statystyki: Napisane przez <a href="https://forum.atnel.pl/memberlist.php?mode=viewprofile&amp;u=770">staneq</a> — 26 sty 2013, o 16:22</p><hr />
]]></content>
</entry>
<entry>
<author><name><![CDATA[mirekk36]]></name></author>
<updated>2013-01-26T16:20:17+01:00</updated>
<published>2013-01-26T16:20:17+01:00</published>
<id>https://forum.atnel.pl/viewtopic.php?t=2195&amp;p=25898#p25898</id>
<link href="https://forum.atnel.pl/viewtopic.php?t=2195&amp;p=25898#p25898"/>
<title type="html"><![CDATA[Re: PROGMEM problem]]></title>

<content type="html" xml:base="https://forum.atnel.pl/viewtopic.php?t=2195&amp;p=25898#p25898"><![CDATA[
a czyta kolega poradniki z mojego bloga ??? szczególnie te z &quot;kącika ECLIPSE&quot; ? przecież tam jest to dokładnie wyjaśnione<br /><br /><!-- m --><a class="postlink" href="http://mirekk36.blogspot.com/2012/08/eclipse-kopot-z-pstr-przeczytaj.html" >http://mirekk36.blogspot.com/2012/08/ec ... zytaj.html</a><!-- m --><br /><br />masz więc dwa wyjścia - albo poprawić kod jak w tym artykule albo zastosować toolchain WinAVR (taki jaki ja stosowałem gdy pisałem książkę)<p>Statystyki: Napisane przez <a href="https://forum.atnel.pl/memberlist.php?mode=viewprofile&amp;u=54">mirekk36</a> — 26 sty 2013, o 16:20</p><hr />
]]></content>
</entry>
<entry>
<author><name><![CDATA[artineo]]></name></author>
<updated>2013-01-26T16:09:00+01:00</updated>
<published>2013-01-26T16:09:00+01:00</published>
<id>https://forum.atnel.pl/viewtopic.php?t=2195&amp;p=25893#p25893</id>
<link href="https://forum.atnel.pl/viewtopic.php?t=2195&amp;p=25893#p25893"/>
<title type="html"><![CDATA[Re: Odp: PROGMEM problem]]></title>

<content type="html" xml:base="https://forum.atnel.pl/viewtopic.php?t=2195&amp;p=25893#p25893"><![CDATA[
A czy to nie jest przypadkiem to co Mirek mowil w wideoporadniku, ze w nowym toolchainie musisz dodac const?<p>Statystyki: Napisane przez <a href="https://forum.atnel.pl/memberlist.php?mode=viewprofile&amp;u=565">artineo</a> — 26 sty 2013, o 16:09</p><hr />
]]></content>
</entry>
<entry>
<author><name><![CDATA[staneq]]></name></author>
<updated>2013-01-26T15:45:45+01:00</updated>
<published>2013-01-26T15:45:45+01:00</published>
<id>https://forum.atnel.pl/viewtopic.php?t=2195&amp;p=25889#p25889</id>
<link href="https://forum.atnel.pl/viewtopic.php?t=2195&amp;p=25889#p25889"/>
<title type="html"><![CDATA[PROGMEM problem]]></title>

<content type="html" xml:base="https://forum.atnel.pl/viewtopic.php?t=2195&amp;p=25889#p25889"><![CDATA[
Mam problem ze zmiennymi zapisanymi w pamięci ROM mikroklocka, chodzi o to że jak definiuje te zmienna:<br /><br />[syntax=c]<br />PGM_P array[2] PROGMEM = {<br />    &quot;Foo&quot;,<br />    &quot;Bar&quot;<br />};<br />[/syntax]<br /><br />to wywala mi błąd:<br /><div class="codetitle"><b>Code:</b></div><div class="codecontent">Description   Resource   Path   Location   Type<br />variable 'array' must be const in order to be put into read-only section by means of '__attribute__((progmem))'   commands.c   /RS232_ASCI/UART+ASCII/ASCII   line 24   C/C++ Problem<br /></div><br /><br />kod pochodzi ze strony: <!-- m --><a class="postlink" href="http://www.nongnu.org/avr-libc/user-manual/FAQ.html#faq_rom_array" >http://www.nongnu.org/avr-libc/user-man ... _rom_array</a><!-- m --><br />A na problem natknąłem się podczas zabawy z komendami AT w II książce<br /><br />oczywiście załączony jest nagłówek #include&lt;avr/pgmspace.h&gt;<p>Statystyki: Napisane przez <a href="https://forum.atnel.pl/memberlist.php?mode=viewprofile&amp;u=770">staneq</a> — 26 sty 2013, o 15:45</p><hr />
]]></content>
</entry>
</feed>