<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="https://community.arm.com/utility/feedstylesheets/rss.xsl" media="screen"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:wfw="http://wellformedweb.org/CommentAPI/"><channel><title>assembly code and hyperterminal</title><link>https://community.arm.com/developer/tools-software/tools/f/keil-forum/26438/assembly-code-and-hyperterminal</link><description> 
hello guys, i have this code at the end of the post, which control
8 devices over bluetooth. 
im trying to figure out what command that i can send over
hyperterminal to activate a port or a pin. to my understanding if i
want to set pin1.0 i should send</description><dc:language>en-US</dc:language><generator>Telligent Community 10</generator><item><title>RE: assembly code and hyperterminal</title><link>https://community.arm.com/thread/136352?ContentTypeID=1</link><pubDate>Sun, 19 Dec 2010 11:55:18 GMT</pubDate><guid isPermaLink="false">dd9e70c8-6d3c-4c71-b136-2456382a7b5c:e752d187-6253-4cfb-9777-8bd01d82fe9a</guid><dc:creator>Andy Neil</dc:creator><description>&lt;p&gt;&lt;p&gt;
&lt;i&gt;Ctrl+J = LF;&lt;br /&gt;
Ctrl+M = CR.&lt;/i&gt;&lt;/p&gt;

&lt;p&gt;
&amp;quot;Ctrl+J&amp;quot; means &amp;quot;press &amp;#39;J&amp;#39; while holding down the &amp;#39;Ctrl&amp;#39; key&amp;quot;&lt;/p&gt;

&lt;p&gt;
You know - like &amp;quot;Ctrl+Alt+Del&amp;quot;...&lt;/p&gt;
&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: assembly code and hyperterminal</title><link>https://community.arm.com/thread/126563?ContentTypeID=1</link><pubDate>Sun, 19 Dec 2010 08:53:12 GMT</pubDate><guid isPermaLink="false">dd9e70c8-6d3c-4c71-b136-2456382a7b5c:9d3fbea6-9baa-4803-b08e-180fa0899365</guid><dc:creator>Muneir Abdalla</dc:creator><description>&lt;p&gt;&lt;p&gt;
hi, thanks for the feedback,&lt;br /&gt;
but what do they mean?&lt;br /&gt;
Ctrl+J = LF;&lt;br /&gt;
Ctrl+M = CR.&lt;/p&gt;

&lt;p&gt;
btw if want to send A11 over the serial port.&lt;br /&gt;
would that be ..&lt;br /&gt;
(&amp;quot;A11&amp;quot;)&lt;br /&gt;
or&lt;br /&gt;
sendChar(&amp;quot;A11&amp;quot;)&lt;br /&gt;
or&lt;br /&gt;
write.serial(&amp;quot;A11&amp;quot;)&lt;br /&gt;
or&lt;br /&gt;
sendString(&amp;quot;A11&amp;quot;)&lt;/p&gt;

&lt;p&gt;
i know that writing my own code should make things easier, which i
tried in both assembly and C, but it didn&amp;#39;t work, understanding the
key elements in this code is my way of learning right now.&lt;/p&gt;
&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: assembly code and hyperterminal</title><link>https://community.arm.com/thread/119120?ContentTypeID=1</link><pubDate>Sun, 19 Dec 2010 07:46:13 GMT</pubDate><guid isPermaLink="false">dd9e70c8-6d3c-4c71-b136-2456382a7b5c:eb5da1fa-0fa7-4de1-8632-7ae0124e9564</guid><dc:creator>Andy Neil</dc:creator><description>&lt;p&gt;&lt;p&gt;
Well, the ASCII code for Line Feed is certainly 0x0A...&lt;/p&gt;

&lt;p&gt;
&lt;i&gt;&amp;quot;how am i supposed to enter that from the
HyperTerminal&amp;quot;&lt;/i&gt;&lt;/p&gt;

&lt;p&gt;
Ctrl+J = LF;&lt;br /&gt;
Ctrl+M = CR.&lt;/p&gt;
&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: assembly code and hyperterminal</title><link>https://community.arm.com/thread/104459?ContentTypeID=1</link><pubDate>Sun, 19 Dec 2010 05:36:40 GMT</pubDate><guid isPermaLink="false">dd9e70c8-6d3c-4c71-b136-2456382a7b5c:3399226d-f76f-4c68-8135-01acbab816b8</guid><dc:creator>&amp;#178;erik malund</dc:creator><description>&lt;p&gt;&lt;p&gt;
&lt;i&gt;Where did you get it?&lt;br /&gt;
online but unfortunately no documentation,&lt;/i&gt;&lt;/p&gt;

&lt;p&gt;
If you can not code the project yourself, downloaded code is
worthless.&lt;/p&gt;

&lt;p&gt;
Erik&lt;/p&gt;

&lt;p&gt;
PS If you can code the project yourself, downloaded code MAY (not
&amp;#39;will&amp;#39;) save you some time&lt;/p&gt;
&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: assembly code and hyperterminal</title><link>https://community.arm.com/thread/102366?ContentTypeID=1</link><pubDate>Sun, 19 Dec 2010 01:26:22 GMT</pubDate><guid isPermaLink="false">dd9e70c8-6d3c-4c71-b136-2456382a7b5c:444c7d06-b603-49b1-9161-612689423f11</guid><dc:creator>Muneir Abdalla</dc:creator><description>&lt;p&gt;&lt;p&gt;
and to add, This routine will intialize the &amp;quot;COUNTER&amp;quot; to 00, when
the serial port receive character A.&lt;br /&gt;
The next 2 bytes which are received after the character A is stored
into &amp;quot;MOBILE&amp;quot; and &amp;quot;MOBILE+1&amp;quot;&lt;br /&gt;
If data &amp;quot;0AH&amp;quot; is received then the routine jumps to
DEVICE_DECODE.&lt;/p&gt;

&lt;p&gt;
but correct me if im wrong, the data &amp;quot;0AH&amp;quot; means ascii a new line?
and how am i supposed to enter that from the HyperTerminal.&lt;/p&gt;
&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: assembly code and hyperterminal</title><link>https://community.arm.com/thread/78886?ContentTypeID=1</link><pubDate>Sun, 19 Dec 2010 01:21:09 GMT</pubDate><guid isPermaLink="false">dd9e70c8-6d3c-4c71-b136-2456382a7b5c:9d32a42e-8c94-40e4-a7ba-7e4bb6efc1a3</guid><dc:creator>Muneir Abdalla</dc:creator><description>&lt;p&gt;&lt;p&gt;
online but unfortunately no documentation,&lt;br /&gt;
most of the code is initializations and setting for a serial
communication,&lt;br /&gt;
the processing starts from &amp;quot;SERIAL:&amp;quot; i believe. these loops are what
confusing me.&lt;br /&gt;
the &amp;quot;DEVICE_DECODE:&amp;quot; section extends to 8 loads, but its just
repetition of what&amp;#39;s in &amp;quot;LOAD 1&amp;quot;&lt;/p&gt;
&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: assembly code and hyperterminal</title><link>https://community.arm.com/thread/66104?ContentTypeID=1</link><pubDate>Sat, 18 Dec 2010 10:23:59 GMT</pubDate><guid isPermaLink="false">dd9e70c8-6d3c-4c71-b136-2456382a7b5c:bf5b4777-e79f-4a8d-a81b-e3719f5485fe</guid><dc:creator>Andy Neil</dc:creator><description>&lt;p&gt;&lt;p&gt;
Where did you get it? Did it not come with any documentation?&lt;/p&gt;
&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>