1 .. -*- coding: utf-8; mode: rst -*-
18 .. cpp:function:: int ioctl(int fd, int request = FE_SET_FRONTEND, struct dvb_frontend_parameters *p)
33 - File descriptor returned by a previous call to open().
39 - Equals :ref:`FE_SET_FRONTEND` for this
44 - struct dvb_frontend_parameters \*p
46 - Points to parameters for tuning operation.
52 This ioctl call starts a tuning operation using specified parameters.
53 The result of this call will be successful if the parameters were valid
54 and the tuning could be initiated. The result of the tuning operation in
55 itself, however, will arrive asynchronously as an event (see
56 documentation for :ref:`FE_GET_EVENT` and
57 FrontendEvent.) If a new :ref:`FE_SET_FRONTEND`
58 operation is initiated before the previous one was completed, the
59 previous operation will be aborted in favor of the new one. This command
60 requires read/write access to the device.
66 On success 0 is returned, on error -1 and the ``errno`` variable is set
67 appropriately. The generic error codes are described at the
68 :ref:`Generic Error Codes <gen-errors>` chapter.
79 - Maximum supported symbol rate reached.