Line No. | Rev | Author | Line |
---|---|---|---|
1 | 6 | kaklik | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> |
2 | <html><head><meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1"> |
||
3 | <title>Procyon AVRlib: vt100.c File Reference</title> |
||
4 | <link href="dox.css" rel="stylesheet" type="text/css"> |
||
5 | </head><body> |
||
6 | <!-- Generated by Doxygen 1.4.2 --> |
||
7 | <div class="qindex"><a class="qindex" href="main.html">Main Page</a> | <a class="qindex" href="modules.html">Modules</a> | <a class="qindex" href="annotated.html">Data Structures</a> | <a class="qindex" href="dirs.html">Directories</a> | <a class="qindex" href="files.html">File List</a> | <a class="qindex" href="functions.html">Data Fields</a> | <a class="qindex" href="globals.html">Globals</a> | <a class="qindex" href="pages.html">Related Pages</a></div> |
||
8 | <h1>vt100.c File Reference</h1><hr><a name="_details"></a><h2>Detailed Description</h2> |
||
9 | |||
10 | <p> |
||
11 | Definition in file <a class="el" href="vt100_8c-source.html">vt100.c</a>. |
||
12 | <p> |
||
13 | <code>#include <avr/io.h></code><br> |
||
14 | <code>#include <avr/interrupt.h></code><br> |
||
15 | <code>#include <avr/pgmspace.h></code><br> |
||
16 | <code>#include "<a class="el" href="global_8h-source.html">global.h</a>"</code><br> |
||
17 | <code>#include "<a class="el" href="rprintf_8h-source.html">rprintf.h</a>"</code><br> |
||
18 | <code>#include "<a class="el" href="vt100_8h-source.html">vt100.h</a>"</code><br> |
||
19 | |||
20 | <p> |
||
21 | <a href="vt100_8c-source.html">Go to the source code of this file.</a><table border="0" cellpadding="0" cellspacing="0"> |
||
22 | <tr><td></td></tr> |
||
23 | <tr><td colspan="2"><br><h2>Functions</h2></td></tr> |
||
24 | <tr><td class="memItemLeft" nowrap align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="vt100_8c.html#a0">vt100Init</a> (void)</td></tr> |
||
25 | |||
26 | <tr><td class="memItemLeft" nowrap align="right" valign="top"><a class="anchor" name="a1" doxytag="vt100.c::vt100ClearScreen"></a> |
||
27 | void </td><td class="memItemRight" valign="bottom"><a class="el" href="vt100_8c.html#a1">vt100ClearScreen</a> (void)</td></tr> |
||
28 | |||
29 | <tr><td class="mdescLeft"> </td><td class="mdescRight"><a class="el" href="vt100_8c.html#a1">vt100ClearScreen()</a> clears the terminal screen <br></td></tr> |
||
30 | <tr><td class="memItemLeft" nowrap align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="vt100_8c.html#a2">vt100SetAttr</a> (u08 attr)</td></tr> |
||
31 | |||
32 | <tr><td class="memItemLeft" nowrap align="right" valign="top"><a class="anchor" name="a3" doxytag="vt100.c::vt100SetCursorMode"></a> |
||
33 | void </td><td class="memItemRight" valign="bottom"><a class="el" href="vt100_8c.html#a3">vt100SetCursorMode</a> (u08 visible)</td></tr> |
||
34 | |||
35 | <tr><td class="mdescLeft"> </td><td class="mdescRight"><a class="el" href="vt100_8c.html#a3">vt100SetCursorMode()</a> sets the cursor to visible or invisible <br></td></tr> |
||
36 | <tr><td class="memItemLeft" nowrap align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="vt100_8c.html#a4">vt100SetCursorPos</a> (u08 line, u08 col)</td></tr> |
||
37 | |||
38 | </table> |
||
39 | <hr><h2>Function Documentation</h2> |
||
40 | <a class="anchor" name="a0" doxytag="vt100.c::vt100Init"></a><p> |
||
41 | <table class="mdTable" cellpadding="2" cellspacing="0"> |
||
42 | <tr> |
||
43 | <td class="mdRow"> |
||
44 | <table cellpadding="0" cellspacing="0" border="0"> |
||
45 | <tr> |
||
46 | <td class="md" nowrap valign="top">void vt100Init </td> |
||
47 | <td class="md" valign="top">( </td> |
||
48 | <td class="md" nowrap valign="top">void </td> |
||
49 | <td class="mdname1" valign="top" nowrap> </td> |
||
50 | <td class="md" valign="top"> ) </td> |
||
51 | <td class="md" nowrap></td> |
||
52 | </tr> |
||
53 | </table> |
||
54 | </td> |
||
55 | </tr> |
||
56 | </table> |
||
57 | <table cellspacing="5" cellpadding="0" border="0"> |
||
58 | <tr> |
||
59 | <td> |
||
60 | |
||
61 | </td> |
||
62 | <td> |
||
63 | |||
64 | <p> |
||
65 | <a class="el" href="vt100_8c.html#a0">vt100Init()</a> initializes terminal and vt100 library Run this init routine once before using any other vt100 function. |
||
66 | <p> |
||
67 | Definition at line <a class="el" href="vt100_8c-source.html#l00035">35</a> of file <a class="el" href="vt100_8c-source.html">vt100.c</a>. </td> |
||
68 | </tr> |
||
69 | </table> |
||
70 | <a class="anchor" name="a2" doxytag="vt100.c::vt100SetAttr"></a><p> |
||
71 | <table class="mdTable" cellpadding="2" cellspacing="0"> |
||
72 | <tr> |
||
73 | <td class="mdRow"> |
||
74 | <table cellpadding="0" cellspacing="0" border="0"> |
||
75 | <tr> |
||
76 | <td class="md" nowrap valign="top">void vt100SetAttr </td> |
||
77 | <td class="md" valign="top">( </td> |
||
78 | <td class="md" nowrap valign="top">u08 </td> |
||
79 | <td class="mdname1" valign="top" nowrap> <em>attr</em> </td> |
||
80 | <td class="md" valign="top"> ) </td> |
||
81 | <td class="md" nowrap></td> |
||
82 | </tr> |
||
83 | </table> |
||
84 | </td> |
||
85 | </tr> |
||
86 | </table> |
||
87 | <table cellspacing="5" cellpadding="0" border="0"> |
||
88 | <tr> |
||
89 | <td> |
||
90 | |
||
91 | </td> |
||
92 | <td> |
||
93 | |||
94 | <p> |
||
95 | <a class="el" href="vt100_8c.html#a2">vt100SetAttr()</a> sets the text attributes like BOLD or REVERSE Text written to the terminal after this function is called will have the desired attribuutes. |
||
96 | <p> |
||
97 | Definition at line <a class="el" href="vt100_8c-source.html#l00048">48</a> of file <a class="el" href="vt100_8c-source.html">vt100.c</a>. </td> |
||
98 | </tr> |
||
99 | </table> |
||
100 | <a class="anchor" name="a4" doxytag="vt100.c::vt100SetCursorPos"></a><p> |
||
101 | <table class="mdTable" cellpadding="2" cellspacing="0"> |
||
102 | <tr> |
||
103 | <td class="mdRow"> |
||
104 | <table cellpadding="0" cellspacing="0" border="0"> |
||
105 | <tr> |
||
106 | <td class="md" nowrap valign="top">void vt100SetCursorPos </td> |
||
107 | <td class="md" valign="top">( </td> |
||
108 | <td class="md" nowrap valign="top">u08 </td> |
||
109 | <td class="mdname" nowrap> <em>line</em>, </td> |
||
110 | </tr> |
||
111 | <tr> |
||
112 | <td class="md" nowrap align="right"></td> |
||
113 | <td class="md"></td> |
||
114 | <td class="md" nowrap>u08 </td> |
||
115 | <td class="mdname" nowrap> <em>col</em></td> |
||
116 | </tr> |
||
117 | <tr> |
||
118 | <td class="md"></td> |
||
119 | <td class="md">) </td> |
||
120 | <td class="md" colspan="2"></td> |
||
121 | </tr> |
||
122 | </table> |
||
123 | </td> |
||
124 | </tr> |
||
125 | </table> |
||
126 | <table cellspacing="5" cellpadding="0" border="0"> |
||
127 | <tr> |
||
128 | <td> |
||
129 | |
||
130 | </td> |
||
131 | <td> |
||
132 | |||
133 | <p> |
||
134 | <a class="el" href="vt100_8c.html#a4">vt100SetCursorPos()</a> sets the cursor position All text which is written to the terminal after a SetCursorPos command will begin at the new location of the cursor. |
||
135 | <p> |
||
136 | Definition at line <a class="el" href="vt100_8c-source.html#l00064">64</a> of file <a class="el" href="vt100_8c-source.html">vt100.c</a>. </td> |
||
137 | </tr> |
||
138 | </table> |
||
139 | <hr size="1"><address style="align: right;"><small>Generated on Sun Oct 29 03:41:09 2006 for Procyon AVRlib by |
||
140 | <a href="http://www.doxygen.org/index.html"> |
||
141 | <img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.2 </small></address> |
||
142 | </body> |
||
143 | </html> |
Powered by WebSVN v2.8.3