Upload files to "/"

This commit is contained in:
psionrevo 2024-09-26 19:21:23 +00:00
parent 9873f21bde
commit 500bb2f382
5 changed files with 1324 additions and 0 deletions

678
remoteli.htm Normal file
View File

@ -0,0 +1,678 @@
<html>
<head>
<meta http-equiv="Content-Type"
content="text/html; charset=iso-8859-1">
<meta name="GENERATOR" content="Microsoft FrontPage Express 2.0">
<title>RemoteLink class</title>
</head>
<body>
<table border="0" cellpadding="0" cellspacing="0" width="100%">
<tr>
<td width="400" height="40">&nbsp;</td>
<td width="30" height="40"><a
href="../../../epoc32/doc/group/sdk.html"><img
src="../../../epoc32/doc/group/library.gif"
alt="SDK Home" align="top" border="0" width="30"
height="30"></a></td>
<td width="30" height="40"><a
href="../../../epoc32/doc/glossary/glossary.html"><img
src="../../../epoc32/doc/group/glossary.gif"
alt="Glossary" align="top" border="0" width="30"
height="30"></a></td>
<td width="30" height="40"><a
href="../../../epoc32/doc/index/id-toc.html"><img
src="../../../epoc32/doc/group/index.gif" alt="Index"
align="top" border="0" width="30" height="30"></a></td>
<td width="30" height="40"><a href="devcomm.htm"><b><img
src="../../../epoc32/doc/group/stoneleft.gif" alt="Left"
align="top" border="0" width="30" height="30"></b></a></td>
<td width="30" height="40"><a
href="../DOCUME~1/charsize.htm"><b><img
src="../../../epoc32/doc/group/stoneright.gif"
alt="Right" align="top" border="0" width="30" height="30"></b></a></td>
<td width="30" height="40"><a
href="../DOCUME~1/programm.htm"><b><img
src="../../../epoc32/doc/group/stoneup.gif" alt="Up"
align="top" border="0" width="30" height="30"></b></a></td>
</tr>
</table>
<hr>
<h1>RemoteLink class</h1>
<hr>
<p><em>Section contents</em></p>
<ul>
<li><a href="#Overview"><strong>Overview</strong></a></li>
<li><a href="#Construction"><strong>Construction /
destruction</strong></a><ul>
<li><a href="#NewCommServ"><strong>NewRemoteLink -
Constructor</strong></a></li>
<li><a href="#DeleteCommServ"><strong>DeleteRemoteLink
- Destructor</strong></a></li>
</ul>
</li>
<li><a href="#Methods provided"><strong>Methods provided</strong></a><ul>
<li><a href="#Description"><strong>RemoteLinkCancelAll</strong></a></li>
<li><a href="#CancelLoadRemoteServer"><strong>RemoteLinkCancelRemoteServer</strong></a></li>
<li><a href="#CancelNotifyStatusChange"><strong>RemoteLinkCancelNotifyStatusChng</strong></a></li>
<li><a href="#Close"><strong>RemoteLinkeClose</strong></a></li>
<li><a href="#Config"><strong>RemoteLinkConfig</strong></a></li>
<li><a href="#Disable"><strong>RemoteLinkDisable</strong></a></li>
<li><a href="#Enable"><strong>RemoteLinkEnable</strong></a></li>
<li><a href="#EnableFileAccess"><strong>RemoteLinkEnableFileAccess</strong></a></li>
<li><a href="#LoadLocalServer"><strong>RemoteLinkLoadLocalServer</strong></a></li>
<li><a href="#LoadRemoteServerA"><strong>RemoteLinkLoadRemoteServerA</strong></a></li>
<li><a href="#NotifyStatusChange"><strong>RemoteLinkNotifyStatusChange</strong></a></li>
<li><a href="#Open"><strong>RemoteLinkOpen</strong></a></li>
<li><a href="#Status"><strong>RemoteLinkStatus</strong></a></li>
<li><a href="#UnloadLocalServer"><strong>RemoteLinkUnloadLocalServer</strong></a></li>
<li><a href="#Version"><strong>RemoteLinkVersion</strong></a></li>
<li><a href="#WaitForConnect"><strong>RemoteLinkWaitForConnect</strong></a></li>
</ul>
</li>
</ul>
<hr>
<h2><a name="Overview">Overview</a></h2>
<h5>Defined in</h5>
<p><code>ccomms.oxh</code></p>
<h5><code>See Also</code></h5>
<hr>
<h2><a name="Construction">Construction / destruction</a></h2>
<hr size="1">
<h3><a name="NewCommServ">NewRemoteLink - Constructor</a></h3>
<h5>Usage</h5>
<p><code>this&amp; = NewRemoteLink&amp;:</code></p>
<h5>Description</h5>
<p>Creates a remote linkobject and returns a handle which allows
the object to be manipulated.</p>
<h5>Return Value</h5>
<table border="1">
<tr>
<td><code>this&amp;</code></td>
<td>An value which represents the created object</td>
</tr>
</table>
<h5>Error Handling</h5>
<p>If the object could not be created then an error is generated
which should be trapped by an <font face="Times New Roman"><code>ONERR</code></font>
handler.</p>
<h5>Example</h5>
<pre> LOCAL this&amp;
<strong>this&amp; = NewRemoteLink&amp;:</strong>
DeleteRemoteLink:(this&amp;) </pre>
<hr size="1">
<h3><a name="DeleteCommServ">DeleteRemoteLink - Destructor</a></h3>
<h5>Usage</h5>
<p><code>DeleteSerialInfo:(BYREF this&amp;)</code></p>
<h5>Description</h5>
<p>Destroys the remote link object.</p>
<h5>Arguments</h5>
<table border="1">
<tr>
<td><code>BYREF this&amp;</code></td>
<td>A handle to a remote link object</td>
</tr>
</table>
<h5>Example</h5>
<pre> LOCAL this&amp;
this&amp; = NewRemoteLink&amp;:
<strong>DeleteRemoteLink:(this&amp;)</strong> </pre>
<hr>
<h2><a name="Methods provided">Methods provided</a></h2>
<hr size="1">
<h3><a name="CancelAll">RemoteLinkCancelAll</a></h3>
<h5>Usage</h5>
<p><code>RemoteLinkCancelAll:(this&amp;)</code></p>
<h5>Description</h5>
<p><font color="#FF0000">&lt;TBS&gt;</font></p>
<h5>Arguments</h5>
<table border="1">
<tr>
<td><code>this&amp;</code></td>
<td>A handle to a remote link object</td>
</tr>
</table>
<hr size="1">
<h3><a name="CancelLoadRemoteServer">RemoteLinkCancelLoadRemoteServer</a></h3>
<h5>Usage</h5>
<p><code>RemoteLinkCancelLoadRemoteServer:(this&amp;)</code></p>
<h5>Description</h5>
<p><font color="#FF0000">&lt;TBS&gt;</font></p>
<h5>Arguments</h5>
<table border="1">
<tr>
<td><code>this&amp;</code></td>
<td>A handle to a remote link object</td>
</tr>
</table>
<hr size="1">
<h3><a name="CancelNotifyStatusChange">RemoteLinkCancelNotifyStatusChng</a></h3>
<h5>Usage</h5>
<p><code>RemoteLinkCancelNotifyStatusChng:(this&amp;)</code></p>
<h5>Description</h5>
<p><font color="#FF0000">&lt;TBS&gt;</font></p>
<h5>Arguments</h5>
<table border="1">
<tr>
<td><code>this&amp;</code></td>
<td>A handle to a remote link object</td>
</tr>
</table>
<hr size="1">
<h3><a name="Close">RemoteLinkClose</a></h3>
<h5>Usage</h5>
<p><code>RemoteLinkClose:(this&amp;)</code></p>
<h5>Description</h5>
<p><font color="#FF0000">&lt;TBS&gt;</font></p>
<h5>Arguments</h5>
<table border="1">
<tr>
<td><code>this&amp;</code></td>
<td>A handle to a remote link object</td>
</tr>
</table>
<hr size="1">
<h3><a name="Config">RemoteLinkConfig</a></h3>
<h5>Usage</h5>
<p><code>result% = RemoteLinkConfig%:(this&amp;,BYREF port&amp;,
BYREF module&amp;, BYREF lowPowerMode%)</code></p>
<h5>Description</h5>
<p><font color="#FF0000">&lt;TBS&gt;</font></p>
<h5>Arguments</h5>
<table border="1">
<tr>
<td><code>this&amp;</code></td>
<td>A handle to a remote link object</td>
</tr>
<tr>
<td><code>BYREF port&amp;</code></td>
<td><font color="#FF0000">&lt;TBS&gt;</font></td>
</tr>
<tr>
<td><code>BYREF module&amp;</code></td>
<td><font color="#FF0000">&lt;TBS&gt;</font></td>
</tr>
<tr>
<td><code>BYREF lowPowerMode%</code></td>
<td><font color="#FF0000">&lt;TBS&gt;</font></td>
</tr>
</table>
<h5>Return Value</h5>
<table border="1">
<tr>
<td><code>result%</code></td>
<td><font color="#FF0000">&lt;TBS&gt;</font></td>
</tr>
</table>
<hr size="1">
<h3><a name="Disable">RemoteLinkDisable</a></h3>
<h5>Usage</h5>
<p><code>result% = RemoteLinkDisable%:(this&amp;)</code></p>
<h5>Description</h5>
<p><font color="#FF0000">&lt;TBS&gt;</font></p>
<h5>Arguments</h5>
<table border="1">
<tr>
<td><code>this&amp;</code></td>
<td>A handle to a remote link object</td>
</tr>
</table>
<h5>Return Value</h5>
<table border="1">
<tr>
<td><code>result%</code></td>
<td><font color="#FF0000">&lt;TBS&gt;</font></td>
</tr>
</table>
<hr size="1">
<h3><a name="Enable">RemoteLinkEnable</a></h3>
<h5>Usage</h5>
<p><code>result% = RemoteLinkEnable%:(this&amp;)</code></p>
<h5>Description</h5>
<p><font color="#FF0000">&lt;TBS&gt;</font></p>
<h5>Arguments</h5>
<table border="1">
<tr>
<td><code>this&amp;</code></td>
<td>A handle to a remote link object</td>
</tr>
</table>
<h5>Return Value</h5>
<table border="1">
<tr>
<td><code>result%</code></td>
<td><font color="#FF0000">&lt;TBS&gt;</font></td>
</tr>
</table>
<hr size="1">
<h3><a name="EnableFileAccess">RemoteLinkEnableFileAccess</a></h3>
<h5>Usage</h5>
<p><code>result% = RemoteLinkEnableFileAccess%:(this&amp;,enable%)</code></p>
<h5>Description</h5>
<p><font color="#FF0000">&lt;TBS&gt;</font></p>
<h5>Arguments</h5>
<table border="1">
<tr>
<td><code>this&amp;</code></td>
<td>A handle to a remote link object</td>
</tr>
<tr>
<td><code>enable%</code></td>
<td><font color="#FF0000">&lt;TBS&gt;</font></td>
</tr>
</table>
<h5>Return Value</h5>
<table border="1">
<tr>
<td><code>result%</code></td>
<td><font color="#FF0000">&lt;TBS&gt;</font></td>
</tr>
</table>
<hr size="1">
<h3><a name="LoadLocalServer">RemoteLinkLoadLocalServer</a></h3>
<h5>Usage</h5>
<p><code>result% = RemoteLinkLoadLocalServer%:(this&amp;,result&amp;,filename$,args$)</code></p>
<h5>Description</h5>
<p><font color="#FF0000">&lt;TBS&gt;</font></p>
<h5>Arguments</h5>
<table border="1">
<tr>
<td><code>this&amp;</code></td>
<td>A handle to a remote link object</td>
</tr>
<tr>
<td><code>result&amp;</code></td>
<td><font color="#FF0000">&lt;TBS&gt;</font></td>
</tr>
<tr>
<td><code>filename$</code></td>
<td><font color="#FF0000">&lt;TBS&gt;</font></td>
</tr>
<tr>
<td><code>args$</code></td>
<td><font color="#FF0000">&lt;TBS&gt;</font></td>
</tr>
</table>
<h5>Return Value</h5>
<table border="1">
<tr>
<td><code>result%</code></td>
<td><font color="#FF0000">&lt;TBS&gt;</font></td>
</tr>
</table>
<hr size="1">
<h3><a name="LoadRemoteServerA">RemoteLinkLoadRemoteServerA</a></h3>
<h5>Usage</h5>
<p><code>RemoteLinkLoadRemoteServerA:(this&amp;,result&amp;,filename$,args$,BYREF
status&amp;)</code></p>
<h5>Description</h5>
<p><font color="#FF0000">&lt;TBS&gt;</font></p>
<h5>Arguments</h5>
<table border="1">
<tr>
<td><code>this&amp;</code></td>
<td>A handle to a remote link object</td>
</tr>
<tr>
<td><code>result&amp;</code></td>
<td><font color="#FF0000">&lt;TBS&gt;</font></td>
</tr>
<tr>
<td><code>filename$</code></td>
<td><font color="#FF0000">&lt;TBS&gt;</font></td>
</tr>
<tr>
<td><code>args$</code></td>
<td><font color="#FF0000">&lt;TBS&gt;</font></td>
</tr>
<tr>
<td><code>BYREF status&amp;</code></td>
<td><font color="#FF0000">&lt;TBS&gt;</font></td>
</tr>
</table>
<hr size="1">
<h3><a name="NotifyStatusChange">RemoteLinkNotifyStatusChange</a></h3>
<h5>Usage</h5>
<p><code>RemoteLinkNotifyStatusChange:(this&amp;,BYREF status&amp;,state&amp;)</code></p>
<h5>Description</h5>
<p><font color="#FF0000">&lt;TBS&gt;</font></p>
<h5>Arguments</h5>
<table border="1">
<tr>
<td><code>this&amp;</code></td>
<td>A handle to a remote link object</td>
</tr>
<tr>
<td><code>BYREF status&amp;</code></td>
<td><font color="#FF0000">&lt;TBS&gt;</font></td>
</tr>
<tr>
<td><code>state&amp;</code></td>
<td><font color="#FF0000">&lt;TBS&gt;</font></td>
</tr>
</table>
<hr size="1">
<h3><a name="Open">RemoteLinkOpen</a></h3>
<h5>Usage</h5>
<p><code>result% = RemoteLinkOpen%:(this&amp;,interface%)</code></p>
<h5>Description</h5>
<p><font color="#FF0000">&lt;TBS&gt;</font></p>
<h5>Arguments</h5>
<table border="1">
<tr>
<td><code>this&amp;</code></td>
<td>A handle to a remote link object</td>
</tr>
<tr>
<td><code>interface%</code></td>
<td><font color="#FF0000">&lt;TBS&gt;</font></td>
</tr>
</table>
<h5>Return Value</h5>
<table border="1">
<tr>
<td><code>result%</code></td>
<td><font color="#FF0000">&lt;TBS&gt;</font></td>
</tr>
</table>
<hr size="1">
<h3><a name="Status">RemoteLinkStatus</a></h3>
<h5>Usage</h5>
<p><code>result% = RemoteLinkStatus%:(this&amp;,status&amp;)</code></p>
<h5>Description</h5>
<p><font color="#FF0000">&lt;TBS&gt;</font></p>
<h5>Arguments</h5>
<table border="1">
<tr>
<td><code>this&amp;</code></td>
<td>A handle to a remote link object</td>
</tr>
<tr>
<td><code>status&amp;</code></td>
<td><font color="#FF0000">&lt;TBS&gt;</font></td>
</tr>
</table>
<h5>Return Value</h5>
<table border="1">
<tr>
<td><code>result%</code></td>
<td><font color="#FF0000">&lt;TBS&gt;</font></td>
</tr>
</table>
<hr size="1">
<h3><a name="UnloadLocalServer">RemoteLinkUnloadLocalServer</a></h3>
<h5>Usage</h5>
<p><code>RemoteLinkStatus%:(this&amp;,name$)</code></p>
<h5>Description</h5>
<p><font color="#FF0000">&lt;TBS&gt;</font></p>
<h5>Arguments</h5>
<table border="1">
<tr>
<td><code>this&amp;</code></td>
<td>A handle to a remote link object</td>
</tr>
<tr>
<td><code>name$</code></td>
<td><font color="#FF0000">&lt;TBS&gt;</font></td>
</tr>
</table>
<hr size="1">
<h3><a name="Version">RemoteLinkVersion</a></h3>
<h5>Usage</h5>
<p><code>version&amp; = RemoteLinkStatus&amp;:(this&amp;)</code></p>
<h5>Description</h5>
<p><font color="#FF0000">&lt;TBS&gt;</font></p>
<h5>Arguments</h5>
<table border="1">
<tr>
<td><code>this&amp;</code></td>
<td>A handle to a remote link object</td>
</tr>
</table>
<h5>Return Value</h5>
<table border="1">
<tr>
<td><code>version&amp;</code></td>
<td><font color="#FF0000">&lt;TBS&gt;</font></td>
</tr>
</table>
<hr size="1">
<h3><a name="WaitForConnect">RemoteLinkWaitForConnect</a></h3>
<h5>Usage</h5>
<p><code>RemoteLinkWaitForConnect:(this&amp;,BYREF status&amp;,state&amp;)</code></p>
<h5>Description</h5>
<p><font color="#FF0000">&lt;TBS&gt;</font></p>
<h5>Arguments</h5>
<table border="1">
<tr>
<td><code>this&amp;</code></td>
<td>A handle to a remote link object</td>
</tr>
<tr>
<td><code>BYREF status&amp;</code></td>
<td><font color="#FF0000">&lt;TBS&gt;</font></td>
</tr>
<tr>
<td><code>state&amp;</code></td>
<td><font color="#FF0000">&lt;TBS&gt;</font></td>
</tr>
</table>
<hr>
<table border="0" cellpadding="0" cellspacing="0" width="100%">
<tr>
<td width="400" height="40">&nbsp;</td>
<td width="30" height="40"><a
href="../../../epoc32/doc/group/sdk.html"><img
src="../../../epoc32/doc/group/library.gif"
alt="SDK Home" align="top" border="0" width="30"
height="30"></a></td>
<td width="30" height="40"><a
href="../../../epoc32/doc/glossary/glossary.html"><img
src="../../../epoc32/doc/group/glossary.gif"
alt="Glossary" align="top" border="0" width="30"
height="30"></a></td>
<td width="30" height="40"><a
href="../../../epoc32/doc/index/id-toc.html"><img
src="../../../epoc32/doc/group/index.gif" alt="Index"
align="top" border="0" width="30" height="30"></a></td>
<td width="30" height="40"><a href="devcomm.htm"><b><img
src="../../../epoc32/doc/group/stoneleft.gif" alt="Left"
align="top" border="0" width="30" height="30"></b></a></td>
<td width="30" height="40"><a
href="../DOCUME~1/charsize.htm"><b><img
src="../../../epoc32/doc/group/stoneright.gif"
alt="Right" align="top" border="0" width="30" height="30"></b></a></td>
<td width="30" height="40"><a
href="../DOCUME~1/programm.htm"><b><img
src="../../../epoc32/doc/group/stoneup.gif" alt="Up"
align="top" border="0" width="30" height="30"></b></a></td>
</tr>
</table>
</body>
</html>

107
serial.htm Normal file
View File

@ -0,0 +1,107 @@
<html>
<head>
<meta http-equiv="Content-Type"
content="text/html; charset=iso-8859-1">
<meta name="GENERATOR" content="Microsoft FrontPage Express 2.0">
<title>Serial infra red transmitter control</title>
</head>
<body>
<table border="0" cellpadding="0" cellspacing="0" width="100%">
<tr>
<td width="400" height="40">&nbsp;</td>
<td width="30" height="40"><a
href="../../../epoc32/doc/group/sdk.html"><img
src="../../../epoc32/doc/group/library.gif"
alt="SDK Home" align="top" border="0" width="30"
height="30"></a></td>
<td width="30" height="40"><a
href="../../../epoc32/doc/glossary/glossary.html"><img
src="../../../epoc32/doc/group/glossary.gif"
alt="Glossary" align="top" border="0" width="30"
height="30"></a></td>
<td width="30" height="40"><a
href="../../../epoc32/doc/index/id-toc.html"><img
src="../../../epoc32/doc/group/index.gif" alt="Index"
align="top" border="0" width="30" height="30"></a></td>
<td width="30" height="40"><a href="port.htm"><b><img
src="../../../epoc32/doc/group/stoneleft.gif" alt="Left"
align="top" border="0" width="30" height="30"></b></a></td>
<td width="30" height="40"><a
href="../Documentation/serialset.htm"><b><img
src="../../../epoc32/doc/group/stoneright.gif"
alt="Right" align="top" border="0" width="30" height="30"></b></a></td>
<td width="30" height="40"><a href="programm.htm"><b><img
src="../../../epoc32/doc/group/stoneup.gif" alt="Up"
align="top" border="0" width="30" height="30"></b></a></td>
</tr>
</table>
<hr>
<h1>Serial infra red transmitter control</h1>
<hr>
<h2><a name="Overview">Overview</a></h2>
<h5>Defined in</h5>
<p><code>ccomms.oxh</code></p>
<hr>
<table border="1">
<tr>
<td><code>KSIREnable%</code></td>
<td>Enable the serial infra red transmitters and
receivers (i.e. disable the RS232 line drivers)</td>
</tr>
<tr>
<td><code>KSIRDisable%</code></td>
<td>Disable the serial infra red transmitters and
receivers (i.e. enable the RS232 line drivers)</td>
</tr>
</table>
<h5>See Also</h5>
<p><a href="commcfg1.htm#SIREnable">CommConfigSIREnable</a>, <a
href="commcfg1.htm#SetSIREnable">CommConfigSetSIREnable</a>, <a
href="serialcap.htm">Serial infra red transmitter capabilities</a></p>
<hr>
<table border="0" cellpadding="0" cellspacing="0" width="100%">
<tr>
<td width="400" height="40">&nbsp;</td>
<td width="30" height="40"><a
href="../../../epoc32/doc/group/sdk.html"><img
src="../../../epoc32/doc/group/library.gif"
alt="SDK Home" align="top" border="0" width="30"
height="30"></a></td>
<td width="30" height="40"><a
href="../../../epoc32/doc/glossary/glossary.html"><img
src="../../../epoc32/doc/group/glossary.gif"
alt="Glossary" align="top" border="0" width="30"
height="30"></a></td>
<td width="30" height="40"><a
href="../../../epoc32/doc/index/id-toc.html"><img
src="../../../epoc32/doc/group/index.gif" alt="Index"
align="top" border="0" width="30" height="30"></a></td>
<td width="30" height="40"><a href="port.htm"><b><img
src="../../../epoc32/doc/group/stoneleft.gif" alt="Left"
align="top" border="0" width="30" height="30"></b></a></td>
<td width="30" height="40"><a
href="../Documentation/serialset.htm"><b><img
src="../../../epoc32/doc/group/stoneright.gif"
alt="Right" align="top" border="0" width="30" height="30"></b></a></td>
<td width="30" height="40"><a href="programm.htm"><b><img
src="../../../epoc32/doc/group/stoneup.gif" alt="Up"
align="top" border="0" width="30" height="30"></b></a></td>
</tr>
</table>
</body>
</html>

106
serialcap.htm Normal file
View File

@ -0,0 +1,106 @@
<html>
<head>
<meta http-equiv="Content-Type"
content="text/html; charset=iso-8859-1">
<meta name="GENERATOR" content="Microsoft FrontPage Express 2.0">
<title>Serial infra red transmitter capabilities</title>
</head>
<body>
<table border="0" cellpadding="0" cellspacing="0" width="100%">
<tr>
<td width="400" height="40">&nbsp;</td>
<td width="30" height="40"><a
href="../../../epoc32/doc/group/sdk.html"><img
src="../../../epoc32/doc/group/library.gif"
alt="SDK Home" align="top" border="0" width="30"
height="30"></a></td>
<td width="30" height="40"><a
href="../../../epoc32/doc/glossary/glossary.html"><img
src="../../../epoc32/doc/group/glossary.gif"
alt="Glossary" align="top" border="0" width="30"
height="30"></a></td>
<td width="30" height="40"><a
href="../../../epoc32/doc/index/id-toc.html"><img
src="../../../epoc32/doc/group/index.gif" alt="Index"
align="top" border="0" width="30" height="30"></a></td>
<td width="30" height="40"><a href="paritycap.htm"><b><img
src="../../../epoc32/doc/group/stoneleft.gif" alt="Left"
align="top" border="0" width="30" height="30"></b></a></td>
<td width="30" height="40"><a href="signalcap.htm"><b><img
src="../../../epoc32/doc/group/stoneright.gif"
alt="Right" align="top" border="0" width="30" height="30"></b></a></td>
<td width="30" height="40"><a href="programm.htm"><b><img
src="../../../epoc32/doc/group/stoneup.gif" alt="Up"
align="top" border="0" width="30" height="30"></b></a></td>
</tr>
</table>
<hr>
<h1>Serial infra red transmitter capabilities</h1>
<hr>
<h2><a name="Overview">Overview</a></h2>
<h5>Defined in</h5>
<p><code>ccomms.oxh</code></p>
<hr>
<table border="1">
<tr>
<td><code>KCapsSIR115kbps&amp;</code></td>
<td>The serial device supports 115k SIR encoding</td>
</tr>
<tr>
<td><code>KCapsSIR2400bpsOnly&amp;</code></td>
<td>The serial device is a 2400 bps only SIR device</td>
</tr>
<tr>
<td><code>KCapsSIR4Mbs&amp;</code></td>
<td>The Serial device supports 4Mbps FSIR encoding</td>
</tr>
</table>
<h5>See Also</h5>
<p><a href="serial.htm">Serial infra red transmitter constants</a>,
<a href="commcaps.htm#SIR">CommCapsSIR</a></p>
<hr>
<table border="0" cellpadding="0" cellspacing="0" width="100%">
<tr>
<td width="400" height="40">&nbsp;</td>
<td width="30" height="40"><a
href="../../../epoc32/doc/group/sdk.html"><img
src="../../../epoc32/doc/group/library.gif"
alt="SDK Home" align="top" border="0" width="30"
height="30"></a></td>
<td width="30" height="40"><a
href="../../../epoc32/doc/glossary/glossary.html"><img
src="../../../epoc32/doc/group/glossary.gif"
alt="Glossary" align="top" border="0" width="30"
height="30"></a></td>
<td width="30" height="40"><a
href="../../../epoc32/doc/index/id-toc.html"><img
src="../../../epoc32/doc/group/index.gif" alt="Index"
align="top" border="0" width="30" height="30"></a></td>
<td width="30" height="40"><a href="paritycap.htm"><b><img
src="../../../epoc32/doc/group/stoneleft.gif" alt="Left"
align="top" border="0" width="30" height="30"></b></a></td>
<td width="30" height="40"><a href="signalcap.htm"><b><img
src="../../../epoc32/doc/group/stoneright.gif"
alt="Right" align="top" border="0" width="30" height="30"></b></a></td>
<td width="30" height="40"><a href="programm.htm"><b><img
src="../../../epoc32/doc/group/stoneup.gif" alt="Up"
align="top" border="0" width="30" height="30"></b></a></td>
</tr>
</table>
</body>
</html>

323
serialin.htm Normal file
View File

@ -0,0 +1,323 @@
<html>
<head>
<meta http-equiv="Content-Type"
content="text/html; charset=iso-8859-1">
<meta name="GENERATOR" content="Microsoft FrontPage Express 2.0">
<title>SerialInfo</title>
</head>
<body>
<table border="0" cellpadding="0" cellspacing="0" width="100%">
<tr>
<td width="400" height="40">&nbsp;</td>
<td width="30" height="40"><a
href="../../../epoc32/doc/group/sdk.html"><img
src="../../../epoc32/doc/group/library.gif"
alt="SDK Home" align="top" border="0" width="30"
height="30"></a></td>
<td width="30" height="40"><a
href="../../../epoc32/doc/glossary/glossary.html"><img
src="../../../epoc32/doc/group/glossary.gif"
alt="Glossary" align="top" border="0" width="30"
height="30"></a></td>
<td width="30" height="40"><a
href="../../../epoc32/doc/index/id-toc.html"><img
src="../../../epoc32/doc/group/index.gif" alt="Index"
align="top" border="0" width="30" height="30"></a></td>
<td width="30" height="40"><a href="devcomm.htm"><b><img
src="../../../epoc32/doc/group/stoneleft.gif" alt="Left"
align="top" border="0" width="30" height="30"></b></a></td>
<td width="30" height="40"><a
href="../DOCUME~1/charsize.htm"><b><img
src="../../../epoc32/doc/group/stoneright.gif"
alt="Right" align="top" border="0" width="30" height="30"></b></a></td>
<td width="30" height="40"><a
href="../DOCUME~1/programm.htm"><b><img
src="../../../epoc32/doc/group/stoneup.gif" alt="Up"
align="top" border="0" width="30" height="30"></b></a></td>
</tr>
</table>
<hr>
<h1>SerialInfo class</h1>
<hr>
<p><em>Section contents</em></p>
<ul>
<li><a href="#Overview"><strong>Overview</strong></a></li>
<li><a href="#Construction"><strong>Construction /
destruction</strong></a><ul>
<li><a href="#NewCommServ"><strong>NewSerialInfo -
Constructor</strong></a></li>
<li><a href="#DeleteCommServ"><strong>DeleteSerialInfo
- Destructor</strong></a></li>
</ul>
</li>
<li><a href="#Methods provided"><strong>Methods provided</strong></a><ul>
<li><a href="#Description"><strong>SerialInfoDescription</strong></a></li>
<li><a href="#HighUnit"><strong>SerialInfoHighUnit</strong></a></li>
<li><a href="#LowUnit"><strong>SerialInfoLowUnit</strong></a></li>
<li><a href="#Name"><strong>SerialInfoName</strong></a></li>
</ul>
</li>
</ul>
<hr>
<h2><a name="Overview">Overview</a></h2>
<h5>Defined in</h5>
<p><code>ccomms.oxh</code></p>
<h5><code>See Also</code></h5>
<p><a href="../DOCUME~1/commserv.htm#GetPortInfo"><code>CommServerGetPortInfo</code></a><code>,
</code><a href="../DOCUME~1/commserv.htm#GetPortInfo2"><code>CommServerGetPortInfo2</code></a></p>
<hr>
<h2><a name="Construction">Construction / destruction</a></h2>
<hr size="1">
<h3><a name="NewCommServ">NewSerialInfo - Constructor</a></h3>
<h5>Usage</h5>
<p><code>this&amp; = NewSerialInfo&amp;:</code></p>
<h5>Description</h5>
<p>Creates a serial information object and returns a handle which
allows the object to be manipulated.</p>
<h5>Return Value</h5>
<table border="1">
<tr>
<td><code>this&amp;</code></td>
<td>An value which represents the created object</td>
</tr>
</table>
<h5>Error Handling</h5>
<p>If the object could not be created then an error is generated
which should be trapped by an <font face="Times New Roman"><code>ONERR</code></font>
handler.</p>
<h5>Example</h5>
<pre> LOCAL this&amp;
<strong>this&amp; = NewSerialInfo&amp;:</strong>
DeleteSerialInfo:(this&amp;) </pre>
<hr size="1">
<h3><a name="DeleteCommServ">DeleteSerialInfo - Destructor</a></h3>
<h5>Usage</h5>
<p><code>DeleteSerialInfo:(BYREF this&amp;)</code></p>
<h5>Description</h5>
<p>Destroys the serial information object.</p>
<h5>Arguments</h5>
<table border="1">
<tr>
<td><code>BYREF this&amp;</code></td>
<td>A handle to a serial information object</td>
</tr>
</table>
<h5>Example</h5>
<pre> LOCAL this&amp;
this&amp; = NewSerialInfo&amp;:
<strong>DeleteSerialInfo:(this&amp;)</strong> </pre>
<hr>
<h2><a name="Methods provided">Methods provided</a></h2>
<hr size="1">
<h3><a name="Description">SerialInfoDescription</a></h3>
<h5>Usage</h5>
<p><code>desc$ = SerialInfoDescription$:(this&amp;)</code></p>
<h5>Description</h5>
<p>Get the port description.</p>
<h5>Arguments</h5>
<table border="1">
<tr>
<td><code>this&amp;</code></td>
<td>A handle to a serial information object</td>
</tr>
</table>
<h5>Return Value</h5>
<table border="1">
<tr>
<td><code>desc$</code></td>
<td>The full name of the port (<code>KMaxPortDescription%</code>
in length). This is used only for user interaction </td>
</tr>
</table>
<hr size="1">
<h3><a name="HighUnit">SerialInfoHighUnit</a></h3>
<h5>Usage</h5>
<p><code>unit&amp; = SerialInfoHighUnit&amp;:(this&amp;)</code></p>
<h5>Description</h5>
<p>Get the highest unit number supported by the serial module.</p>
<h5>Arguments</h5>
<table border="1">
<tr>
<td><code>this&amp;</code></td>
<td>A handle to a serial information object</td>
</tr>
</table>
<h5>Return Value</h5>
<table border="1">
<tr>
<td><code>unit&amp;</code></td>
<td>The highest unit number supported by the serial
module</td>
</tr>
</table>
<hr size="1">
<h3><a name="LowUnit">SerialInfoLowUnit</a></h3>
<h5>Usage</h5>
<p><code>unit&amp; = SerialInfoLowUnit&amp;:(this&amp;)</code></p>
<h5>Description</h5>
<p>Get the lowest unit number supported by the serial module.</p>
<h5>Arguments</h5>
<table border="1">
<tr>
<td><code>this&amp;</code></td>
<td>A handle to a serial information object</td>
</tr>
</table>
<h5>Return Value</h5>
<table border="1">
<tr>
<td><code>unit&amp;</code></td>
<td>The lowest unit number supported by the serial module</td>
</tr>
</table>
<h5>Note</h5>
<p>The lowest port need not necessarily be numbered zero. </p>
<hr size="1">
<h3><a name="Name">SerialInfoName</a></h3>
<h5>Usage</h5>
<p><code>name$ = SerialInfoName$:(this&amp;)</code></p>
<h5>Description</h5>
<p>Get the short name of the port.</p>
<h5>Arguments</h5>
<table border="1">
<tr>
<td><code>this&amp;</code></td>
<td>A handle to a serial information object</td>
</tr>
</table>
<h5>Return Value</h5>
<table border="1">
<tr>
<td><code>name$</code></td>
<td>The short name of the port (<code>KMaxPortName%</code>
in length). This is used in calls to <a
href="../DOCUME~1/comm.htm#Open"><code>CommOpen</code></a></td>
</tr>
</table>
<h5>Note</h5>
<p>The full name of the serial port (used when opening it)
consists of the name returned by <code>SerialInfoName</code>,
followed by a double colon separator, followed by the unit number
as an ASCII number (for instance <font size="4"><tt>COMM::0</tt></font>).
</p>
<hr>
<table border="0" cellpadding="0" cellspacing="0" width="100%">
<tr>
<td width="400" height="40">&nbsp;</td>
<td width="30" height="40"><a
href="../../../epoc32/doc/group/sdk.html"><img
src="../../../epoc32/doc/group/library.gif"
alt="SDK Home" align="top" border="0" width="30"
height="30"></a></td>
<td width="30" height="40"><a
href="../../../epoc32/doc/glossary/glossary.html"><img
src="../../../epoc32/doc/group/glossary.gif"
alt="Glossary" align="top" border="0" width="30"
height="30"></a></td>
<td width="30" height="40"><a
href="../../../epoc32/doc/index/id-toc.html"><img
src="../../../epoc32/doc/group/index.gif" alt="Index"
align="top" border="0" width="30" height="30"></a></td>
<td width="30" height="40"><a href="devcomm.htm"><b><img
src="../../../epoc32/doc/group/stoneleft.gif" alt="Left"
align="top" border="0" width="30" height="30"></b></a></td>
<td width="30" height="40"><a
href="../DOCUME~1/charsize.htm"><b><img
src="../../../epoc32/doc/group/stoneright.gif"
alt="Right" align="top" border="0" width="30" height="30"></b></a></td>
<td width="30" height="40"><a
href="../DOCUME~1/programm.htm"><b><img
src="../../../epoc32/doc/group/stoneup.gif" alt="Up"
align="top" border="0" width="30" height="30"></b></a></td>
</tr>
</table>
</body>
</html>

110
serialset.htm Normal file
View File

@ -0,0 +1,110 @@
<html>
<head>
<meta http-equiv="Content-Type"
content="text/html; charset=iso-8859-1">
<meta name="GENERATOR" content="Microsoft FrontPage Express 2.0">
<title>Serial infra red transmitter settings</title>
</head>
<body>
<table border="0" cellpadding="0" cellspacing="0" width="100%">
<tr>
<td width="400" height="40">&nbsp;</td>
<td width="30" height="40"><a
href="../../../epoc32/doc/group/sdk.html"><img
src="../../../epoc32/doc/group/library.gif"
alt="SDK Home" align="top" border="0" width="30"
height="30"></a></td>
<td width="30" height="40"><a
href="../../../epoc32/doc/glossary/glossary.html"><img
src="../../../epoc32/doc/group/glossary.gif"
alt="Glossary" align="top" border="0" width="30"
height="30"></a></td>
<td width="30" height="40"><a
href="../../../epoc32/doc/index/id-toc.html"><img
src="../../../epoc32/doc/group/index.gif" alt="Index"
align="top" border="0" width="30" height="30"></a></td>
<td width="30" height="40"><a
href="../DOCUME~1/serial.htm"><b><img
src="../../../epoc32/doc/group/stoneleft.gif" alt="Left"
align="top" border="0" width="30" height="30"></b></a></td>
<td width="30" height="40"><a
href="../DOCUME~1/signal.htm"><b><img
src="../../../epoc32/doc/group/stoneright.gif"
alt="Right" align="top" border="0" width="30" height="30"></b></a></td>
<td width="30" height="40"><a
href="../DOCUME~1/programm.htm"><b><img
src="../../../epoc32/doc/group/stoneup.gif" alt="Up"
align="top" border="0" width="30" height="30"></b></a></td>
</tr>
</table>
<hr>
<h1>Serial infra red transmitter settings</h1>
<hr>
<h2><a name="Overview">Overview</a></h2>
<h5>Defined in</h5>
<p><code>ccomms.oxh</code></p>
<hr>
<table border="1">
<tr>
<td><code>KConfigSIRPulseWidthMaximum&amp;</code></td>
<td>Set the serial infra red transmitter to maximum with
pulses</td>
</tr>
<tr>
<td><code>KConfigSIRPulseWidthMinumim&amp;</code></td>
<td>Set the serial infra red transmitter to minimum with
pulses</td>
</tr>
</table>
<h5>See Also</h5>
<p><a href="../DOCUME~1/commcfg1.htm#SIRSettings">CommConfigSIRSettings</a>,
<a href="../DOCUME~1/commcfg1.htm#SetSIRSettings">CommConfigSetSIRSettings</a></p>
<hr>
<table border="0" cellpadding="0" cellspacing="0" width="100%">
<tr>
<td width="400" height="40">&nbsp;</td>
<td width="30" height="40"><a
href="../../../epoc32/doc/group/sdk.html"><img
src="../../../epoc32/doc/group/library.gif"
alt="SDK Home" align="top" border="0" width="30"
height="30"></a></td>
<td width="30" height="40"><a
href="../../../epoc32/doc/glossary/glossary.html"><img
src="../../../epoc32/doc/group/glossary.gif"
alt="Glossary" align="top" border="0" width="30"
height="30"></a></td>
<td width="30" height="40"><a
href="../../../epoc32/doc/index/id-toc.html"><img
src="../../../epoc32/doc/group/index.gif" alt="Index"
align="top" border="0" width="30" height="30"></a></td>
<td width="30" height="40"><a
href="../DOCUME~1/serial.htm"><b><img
src="../../../epoc32/doc/group/stoneleft.gif" alt="Left"
align="top" border="0" width="30" height="30"></b></a></td>
<td width="30" height="40"><a
href="../DOCUME~1/signal.htm"><b><img
src="../../../epoc32/doc/group/stoneright.gif"
alt="Right" align="top" border="0" width="30" height="30"></b></a></td>
<td width="30" height="40"><a
href="../DOCUME~1/programm.htm"><b><img
src="../../../epoc32/doc/group/stoneup.gif" alt="Up"
align="top" border="0" width="30" height="30"></b></a></td>
</tr>
</table>
</body>
</html>