1<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
2<html xml:lang="en-US" lang="en-US" xmlns="http://www.w3.org/1999/xhtml">
3  <head>
4    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
5    <meta http-equiv="Content-Style-Type" content="text/css" />
6    <link rel="stylesheet" href="../css/manpage.css" type="text/css" />
7    <style type="text/css"><!--
8      span.static_style
9      {
10        font-size			: 8pt;
11        color				: white;
12        font-weight			: bold;
13        background			: #44f;
14        border-left			: solid 1px #aaf;
15        border-top			: solid 1px #aaf;
16        border-right		: solid 1px #00c;
17        border-bottom		: solid 1px #00c;
18        padding-left		: 2px;
19        padding-right		: 2px;
20      }
21      span.virtual_style
22      {
23        font-size			 : 8pt;
24        color				 : white;
25        font-weight			: bold;
26        background			: #0a0;
27        border-left			: solid 1px #0f0;
28        border-top			: solid 1px #0f0;
29        border-right		: solid 1px #060;
30        border-bottom		: solid 1px #060;
31        padding-left		: 2px;
32        padding-right		: 2px;
33      }
34      span.protected_style
35      {
36        font-size			 : 8pt;
37        color				 : white;
38        font-weight			: bold;
39        background			: #444;
40        border-left			: solid 1px #ccc;
41        border-top			: solid 1px #ccc;
42        border-right		: solid 1px #222;
43        border-bottom		: solid 1px #222;
44        padding-left		: 2px;
45        padding-right		: 2px;
46      }
47        --></style>
48<title>Host IO (PC)</title>
49  </head>
50  <body>
51<h1>Host IO (PC)</h1>
52<h2>Description</h2>
53    <div class="section">
54<p>Module for Host IO on the PC side.</p><!-- write here --></div>
55    <a name="function" id="function">
56<h2>Functions</h2>
57      <div class="section">
58        <table class="members">
59          <tr>
60<th class="category" colspan="3">Device Search and Connection</th>
61          </tr>
62          <tr>
63            <td width="100">  </td>
64            <th>
65<a href="../pc_hio_c/DEVHIO_host_find.html"><CODE>DEVHIO_host_find</CODE></a>
66            </th>
67<td>Searches for connectable devices.</td>
68          </tr>
69          <tr>
70            <td width="100">  </td>
71            <th>
72<a href="../pc_hio_c/DEVHIO_host_connect.html"><CODE>DEVHIO_host_connect</CODE></a>
73            </th>
74<td>Starts a Host IO connection with a device.</td>
75          </tr>
76          <tr>
77            <td width="100">  </td>
78            <th>
79<a href="../pc_hio_c/DEVHIO_host_disconnect.html"><CODE>DEVHIO_host_disconnect</CODE></a>
80            </th>
81<td>Ends a Host IO connection.</td>
82          </tr>
83          <tr>
84            <td width="100">  </td>
85            <th>
86<a href="../pc_hio_c/DEVHIO_host_getconnectid.html"><CODE>DEVHIO_host_getconnectid</CODE></a>
87            </th>
88<td>Gets the ID of the currently connected device.</td>
89          </tr>
90          <tr>
91<th class="category" colspan="3">Serial Communication</th>
92          </tr>
93          <tr>
94            <td width="100">  </td>
95            <th>
96<a href="../pc_hio_c/DEVHIO_sio_open.html"><CODE>DEVHIO_sio_open</CODE></a>
97            </th>
98<td>Opens a serial communication channel.</td>
99          </tr>
100          <tr>
101            <td width="100">  </td>
102            <th>
103<a href="../pc_hio_c/DEVHIO_sio_close.html"><CODE>DEVHIO_sio_close</CODE></a>
104            </th>
105<td>Closes a serial communication channel.</td>
106          </tr>
107          <tr>
108            <td width="100">  </td>
109            <th>
110<a href="../pc_hio_c/DEVHIO_sio_connect.html"><CODE>DEVHIO_sio_connect</CODE></a>
111            </th>
112<td>Starts a connection for serial communication and waits until the target device calls <CODE>wait</CODE>.</td>
113          </tr>
114          <tr>
115            <td width="100">  </td>
116            <th>
117<a href="../pc_hio_c/DEVHIO_sio_wait.html"><CODE>DEVHIO_sio_wait</CODE></a>
118            </th>
119<td>Waits until the target device for serial communication calls <CODE>connect</CODE>.</td>
120          </tr>
121          <tr>
122            <td width="100">  </td>
123            <th>
124<a href="../pc_hio_c/DEVHIO_sio_disconnect.html"><CODE>DEVHIO_sio_disconnect</CODE></a>
125            </th>
126<td>Disconnects from a serial communication session.</td>
127          </tr>
128          <tr>
129            <td width="100">  </td>
130            <th>
131<a href="../pc_hio_c/DEVHIO_sio_flush.html"><CODE>DEVHIO_sio_flush</CODE></a>
132            </th>
133<td>Waits until all outgoing data has been sent during serial communication.</td>
134          </tr>
135          <tr>
136            <td width="100">  </td>
137            <th>
138<a href="../pc_hio_c/DEVHIO_sio_read.html"><CODE>DEVHIO_sio_read</CODE></a>
139            </th>
140<td>Receives data via serial communication.</td>
141          </tr>
142          <tr>
143            <td width="100">  </td>
144            <th>
145<a href="../pc_hio_c/DEVHIO_sio_write.html"><CODE>DEVHIO_sio_write</CODE></a>
146            </th>
147<td>Sends data via serial communication.</td>
148          </tr>
149          <tr>
150<th class="category" colspan="3">Shared Memory</th>
151          </tr>
152          <tr>
153            <td width="100">  </td>
154            <th>
155<a href="../pc_hio_c/DEVHIO_smem_open.html"><CODE>DEVHIO_smem_open</CODE></a>
156            </th>
157<td>Opens a shared memory channel.</td>
158          </tr>
159          <tr>
160            <td width="100">  </td>
161            <th>
162<a href="../pc_hio_c/DEVHIO_smem_close.html"><CODE>DEVHIO_smem_close</CODE></a>
163            </th>
164<td>Closes a shared memory channel.</td>
165          </tr>
166          <tr>
167            <td width="100">  </td>
168            <th>
169<a href="../pc_hio_c/DEVHIO_smem_getsize.html"><CODE>DEVHIO_smem_getsize</CODE></a>
170            </th>
171<td>Gets the size of the shared memory.</td>
172          </tr>
173          <tr>
174            <td width="100">  </td>
175            <th>
176<a href="../pc_hio_c/DEVHIO_smem_read.html"><CODE>DEVHIO_smem_read</CODE></a>
177            </th>
178<td>Loads data from shared memory.</td>
179          </tr>
180          <tr>
181            <td width="100">  </td>
182            <th>
183<a href="../pc_hio_c/DEVHIO_smem_write.html"><CODE>DEVHIO_smem_write</CODE></a>
184            </th>
185<td>Writes data in shared memory.</td>
186          </tr>
187          <tr>
188<th class="category" colspan="3">Other</th>
189          </tr>
190          <tr>
191            <td width="100">  </td>
192            <th>
193<a href="../pc_hio_c/DEVHIO_host_getversion.html"><CODE>DEVHIO_host_getversion</CODE></a>
194            </th>
195<td>Gets the version number.</td>
196          </tr> </table>
197      </div>
198    </a>
199<h2>Revision History</h2>
200    <div class="section">
201      <dl class="history">
202        <dt>2010/08/16</dt>
203<dd>Initial version.<br />
204        </dd>
205      </dl>
206    </div>
207  <hr><p>CONFIDENTIAL</p></body>
208</html>
209