Project

General

Profile

Statistics
| Revision:

root / trunk / docs / libdragonfly / serial_8h-source.html @ 1145

History | View | Annotate | Download (9.11 KB)

1
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
2
<html><head><meta http-equiv="Content-Type" content="text/html;charset=UTF-8">
3
<title>libdragonfly: serial.h Source File</title>
4
<link href="doxygen.css" rel="stylesheet" type="text/css">
5
<link href="tabs.css" rel="stylesheet" type="text/css">
6
</head><body>
7
<!-- Generated by Doxygen 1.5.5 -->
8
<div class="navigation" id="top">
9
  <div class="tabs">
10
    <ul>
11
      <li><a href="index.html"><span>Main&nbsp;Page</span></a></li>
12
      <li><a href="pages.html"><span>Related&nbsp;Pages</span></a></li>
13
      <li><a href="modules.html"><span>Modules</span></a></li>
14
      <li><a href="annotated.html"><span>Data&nbsp;Structures</span></a></li>
15
      <li class="current"><a href="files.html"><span>Files</span></a></li>
16
    </ul>
17
  </div>
18
<h1>serial.h</h1><a href="serial_8h.html">Go to the documentation of this file.</a><div class="fragment"><pre class="fragment"><a name="l00001"></a>00001 
19
<a name="l00038"></a>00038 <span class="comment">/*</span>
20
<a name="l00039"></a>00039 <span class="comment">  serial.h - Contains definitions and function prototypes for the RS232 serial port</span>
21
<a name="l00040"></a>00040 <span class="comment">  author(s): pkv</span>
22
<a name="l00041"></a>00041 <span class="comment">  </span>
23
<a name="l00042"></a>00042 <span class="comment">  Directions:</span>
24
<a name="l00043"></a>00043 <span class="comment">  Call the initialization function for the serial port you wish to use.  Then, use</span>
25
<a name="l00044"></a>00044 <span class="comment">  either the provided functions or the stdio functions (fprintf, etc) to read and</span>
26
<a name="l00045"></a>00045 <span class="comment">  write characters to the serial ports.</span>
27
<a name="l00046"></a>00046 <span class="comment">  </span>
28
<a name="l00047"></a>00047 <span class="comment">  UART Mapping:</span>
29
<a name="l00048"></a>00048 <span class="comment">  usb_*() -&gt; UART0</span>
30
<a name="l00049"></a>00049 <span class="comment">  xbee_*() -&gt; UART1</span>
31
<a name="l00050"></a>00050 <span class="comment">  </span>
32
<a name="l00051"></a>00051 <span class="comment">  Options: (Add the following defines to your code to configure this library)</span>
33
<a name="l00052"></a>00052 <span class="comment">  #define USB_BAUD { 115200 | 9600 } &lt;= pick ONE value from in here</span>
34
<a name="l00053"></a>00053 <span class="comment">  #define XBEE_BAUD { 115200 | 9600 } &lt;= pick ONE value from in here</span>
35
<a name="l00054"></a>00054 <span class="comment">  #define USE_STDIO</span>
36
<a name="l00055"></a>00055 <span class="comment">  </span>
37
<a name="l00056"></a>00056 <span class="comment">  Note: If you enable USE_STDIO, the first init function that is called will </span>
38
<a name="l00057"></a>00057 <span class="comment">  automatically be linked to stdin, stdout, and stderr.  To use the baud rate </span>
39
<a name="l00058"></a>00058 <span class="comment">  commands, add something like the following to your code:</span>
40
<a name="l00059"></a>00059 <span class="comment">  </span>
41
<a name="l00060"></a>00060 <span class="comment">  #define FOO_BAUD 9600</span>
42
<a name="l00061"></a>00061 <span class="comment">  </span>
43
<a name="l00062"></a>00062 <span class="comment">  **UNLESS YOU KNOW WHAT YOU ARE DOING, PLEASE DO NOT CHANGE THIS FILE**</span>
44
<a name="l00063"></a>00063 <span class="comment">  Many, many other people use this file in their code.  If you change it, you will</span>
45
<a name="l00064"></a>00064 <span class="comment">  probably break all of their nice code.  You should not need to change anything in</span>
46
<a name="l00065"></a>00065 <span class="comment">  here, except to accomodate new hardware.</span>
47
<a name="l00066"></a>00066 <span class="comment">*/</span>
48
<a name="l00067"></a>00067 
49
<a name="l00068"></a>00068 <span class="preprocessor">#ifndef _SERIAL_H</span>
50
<a name="l00069"></a>00069 <span class="preprocessor"></span><span class="preprocessor">#define _SERIAL_H</span>
51
<a name="l00070"></a>00070 <span class="preprocessor"></span>
52
<a name="l00080"></a>00080 <span class="comment">// if no baud rate is defined for usb, default is set here</span>
53
<a name="l00081"></a>00081 <span class="preprocessor">#ifndef USB_BAUD</span>
54
<a name="l00082"></a>00082 <span class="preprocessor"></span>
55
<a name="l00083"></a><a class="code" href="group__usb.html#g378065b4d75b008228ee41cc335474a7">00083</a> <span class="preprocessor">#define USB_BAUD 115200</span>
56
<a name="l00084"></a>00084 <span class="preprocessor"></span><span class="preprocessor">#endif</span>
57
<a name="l00085"></a>00085 <span class="preprocessor"></span>
58
<a name="l00087"></a>00087 <span class="keywordtype">void</span> <a class="code" href="group__usb.html#gddfbdb66f507ffcd08b4496531ed0a3d" title="Initialize the USB.">usb_init</a>(<span class="keywordtype">void</span>);
59
<a name="l00089"></a>00089 <span class="keywordtype">int</span> <a class="code" href="group__usb.html#g3ee898cfe59d05c428c56021c2ccf946" title="Print a character to USB.">usb_putc</a>(<span class="keywordtype">char</span> c);
60
<a name="l00091"></a>00091 <span class="keywordtype">int</span> <a class="code" href="group__usb.html#g053a5d887edfe8e8be543ec53a3f60ae" title="Read a character from USB.">usb_getc</a>(<span class="keywordtype">void</span>);
61
<a name="l00093"></a>00093 <span class="keywordtype">int</span> <a class="code" href="group__usb.html#g6b1209b19e7fd2bbedc7407e0218453c" title="Read a character from USB without blocking.">usb_getc_nb</a>(<span class="keywordtype">char</span> *c);
62
<a name="l00095"></a>00095 <span class="keywordtype">int</span> <a class="code" href="group__usb.html#g6e101f68856f272f67923c4fb35a99e0" title="Print a string to USB.">usb_puts</a>(<span class="keywordtype">char</span> *s);
63
<a name="l00097"></a>00097 <span class="keywordtype">int</span> <a class="code" href="group__usb.html#gcd371dedbff10f0c52dca4b3b7af9e3d" title="Print an integer to USB.">usb_puti</a>(<span class="keywordtype">int</span> value);
64
<a name="l00099"></a>00099 uint8_t <a class="code" href="group__usb.html#g94d47853c33da12c71dec155f819cfeb" title="Determine a hexadecimal digit.">hex_digit</a> (uint8_t value);
65
<a name="l00101"></a>00101 <span class="keywordtype">void</span> <a class="code" href="group__usb.html#g8e7e31f1e45721ac032267b13d0f759b" title="Print a fixed width hexadecimal representation to USB.">usb_puth16</a> (uint16_t value);
66
<a name="l00103"></a>00103 <span class="keywordtype">void</span> <a class="code" href="group__usb.html#g21462df541911e0611416e85be6ea34d" title="Print a fixed width hexadecimal representation to USB.">usb_puth8</a>(uint8_t value);
67
<a name="l00105"></a>00105 <span class="keyword">static</span> <span class="keyword">inline</span> <span class="keywordtype">void</span> usb_puth (uint16_t value) { <a class="code" href="group__usb.html#g8e7e31f1e45721ac032267b13d0f759b" title="Print a fixed width hexadecimal representation to USB.">usb_puth16</a> (value); };
68
<a name="l00106"></a>00106 
69
<a name="l00107"></a>00107  <span class="comment">//end addtogroup</span>
70
<a name="l00109"></a>00109 
71
<a name="l00119"></a>00119 <span class="comment">// if no baud rate is defined for usb, default is set here</span>
72
<a name="l00120"></a>00120 
73
<a name="l00121"></a>00121 <span class="comment">// if no baud rate is defined for xbee, default is set here</span>
74
<a name="l00122"></a>00122 <span class="preprocessor">#ifndef XBEE_BAUD</span>
75
<a name="l00123"></a>00123 <span class="preprocessor"></span>
76
<a name="l00124"></a><a class="code" href="group__xbee.html#g7125fc8f3df24a2db8e074983206b054">00124</a> <span class="preprocessor">#define XBEE_BAUD 9600</span>
77
<a name="l00125"></a>00125 <span class="preprocessor"></span><span class="preprocessor">#endif</span>
78
<a name="l00126"></a>00126 <span class="preprocessor"></span>
79
<a name="l00128"></a>00128 <span class="keywordtype">void</span> <a class="code" href="group__xbee.html#g964a1e8461e9c1187e5d69f521e5e107" title="Initialize the XBee.">xbee_init</a>(<span class="keywordtype">void</span>);
80
<a name="l00130"></a>00130 <span class="keywordtype">int</span> <a class="code" href="group__xbee.html#g70c6b231330312d4f69b9a8afb5af989" title="Print a character to the XBee.">xbee_putc</a>(<span class="keywordtype">char</span> c);
81
<a name="l00132"></a>00132 <span class="keywordtype">int</span> <a class="code" href="group__xbee.html#g1f468ae159ba5d97bdfb3f4855d15d88" title="Read a character from the XBee.">xbee_getc</a>(<span class="keywordtype">void</span>);
82
<a name="l00134"></a>00134 <span class="keywordtype">int</span> <a class="code" href="group__xbee.html#gfb7bd5dd535e8251bfff78854c6c15f2" title="Read a character from the XBee without blocking.">xbee_getc_nb</a>(<span class="keywordtype">char</span> *c);
83
<a name="l00135"></a>00135 
84
<a name="l00136"></a>00136 
85
<a name="l00137"></a>00137  <span class="comment">//end addtogroup</span>
86
<a name="l00139"></a>00139 
87
<a name="l00140"></a>00140 <span class="preprocessor">#endif</span>
88
<a name="l00141"></a>00141 <span class="preprocessor"></span>
89
</pre></div></div>
90
<hr size="1"><address style="text-align: right;"><small>Generated on Thu Apr 16 18:33:23 2009 for libdragonfly by&nbsp;
91
<a href="http://www.doxygen.org/index.html">
92
<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.5.5 </small></address>
93
</body>
94
</html>