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