fe-set-tone.xml 2.6 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
<refentry id="FE_SET_TONE">
  <refmeta>
    <refentrytitle>ioctl FE_SET_TONE</refentrytitle>
    &manvol;
  </refmeta>

  <refnamediv>
    <refname>FE_SET_TONE</refname>
    <refpurpose>Sets/resets the generation of the continuous 22kHz tone.</refpurpose>
  </refnamediv>

  <refsynopsisdiv>
    <funcsynopsis>
      <funcprototype>
	<funcdef>int <function>ioctl</function></funcdef>
	<paramdef>int <parameter>fd</parameter></paramdef>
	<paramdef>int <parameter>request</parameter></paramdef>
18
	<paramdef>enum fe_sec_tone_mode *<parameter>tone</parameter></paramdef>
19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38
      </funcprototype>
    </funcsynopsis>
  </refsynopsisdiv>

  <refsect1>
    <title>Arguments</title>
        <variablelist>
      <varlistentry>
	<term><parameter>fd</parameter></term>
	<listitem>
	  <para>&fe_fd;</para>
	</listitem>
      </varlistentry>
      <varlistentry>
	<term><parameter>request</parameter></term>
	<listitem>
	  <para>FE_SET_TONE</para>
	</listitem>
      </varlistentry>
      <varlistentry>
39 40 41 42
	<term><parameter>tone</parameter></term>
	<listitem>
	  <para>pointer to &fe-sec-tone-mode;</para>
	</listitem>
43 44 45 46 47 48 49 50 51
      </varlistentry>
    </variablelist>
  </refsect1>

  <refsect1>
    <title>Description</title>

<para>This ioctl is used to set the generation of the continuous 22kHz tone.
    This call requires read/write permissions.</para>
H
Hans Verkuil 已提交
52
<para>Usually, satellite antenna subsystems require that the digital TV
53 54 55 56 57 58 59 60 61 62 63
    device to send a 22kHz tone in order to select between high/low band on
    some dual-band LNBf. It is also used to send signals to DiSEqC equipment,
    but this is done using the DiSEqC ioctls.</para>
<para>NOTE: if more than one device is connected to the same antenna,
    setting a tone may interfere on other devices, as they may lose
    the capability of selecting the band. So, it is recommended that
    applications would change to SEC_TONE_OFF when the device is not used.</para>

&return-value-dvb;
</refsect1>

64 65
<refsect1 id="fe-sec-tone-mode-t">
<title>enum fe_sec_tone_mode</title>
66 67 68 69 70 71 72 73 74 75 76 77 78

<table pgwide="1" frame="none" id="fe-sec-tone-mode">
    <title>enum fe_sec_tone_mode</title>
    <tgroup cols="2">
	&cs-def;
	<thead>
	<row>
	    <entry>ID</entry>
	    <entry>Description</entry>
	</row>
	</thead>
	<tbody valign="top">
	<row>
79
	    <entry align="char" id="SEC-TONE-ON"><constant>SEC_TONE_ON</constant></entry>
80 81
	    <entry align="char">Sends a 22kHz tone burst to the antenna</entry>
	</row><row>
82
	    <entry align="char" id="SEC-TONE-OFF"><constant>SEC_TONE_OFF</constant></entry>
83 84 85 86 87 88
	    <entry align="char">Don't send a 22kHz tone to the antenna
		(except if the FE_DISEQC_* ioctls are called)</entry>
	</row>
        </tbody>
    </tgroup>
</table>
89
</refsect1>
90 91

</refentry>