用ov5640上的V4L2设置ctrl

问题描述 投票:0回答:1

我想通过以下方式使用V4L2的ov5640ioctl控制各种VIDIOC_S_CTRL摄像机参数:

#include <string>
#include <iostream>

#include <fcntl.h>
#include <errno.h>
#include <unistd.h>
#include <malloc.h>
#include <cstring>
#include <sys/mman.h>
#include <sys/ioctl.h>
#include <linux/videodev2.h>

#define IOCTL_TRIES 3
#define CLEAR(x) memset (&(x), 0, sizeof (x))

static int xioctl(int fd, int request, void *arg)
{
    int r;
    int tries = IOCTL_TRIES;

    do {
        r = ioctl(fd, request, arg);
    } while (--tries > 0 && r == -1 && EINTR == errno);

    return r;
}

bool v4l2_ctrl_set(int fd, uint32_t id, int val)
{
    struct v4l2_control ctrl;
    CLEAR(ctrl);

    ctrl.id = id;
    ctrl.value = val;
    if (xioctl(fd, VIDIOC_S_CTRL, &ctrl) == -1) {
        std::cout << "Failed to set ctrl with id " 
                  << id << " to value " << val
                  << "\nerror (" << errno << "): " << strerror(errno) << std::endl;

        return false;
    }

    return true;
}

int main()
{

    int fd = open("/dev/video0", O_RDWR | O_NONBLOCK);
    if (fd == -1) {
        std::cout << "Failed to open the camera" << std::endl;
        return -1;
    }

    v4l2_ctrl_set(fd, V4L2_CID_SATURATION, 100);

    return 0;
}

[不幸的是ioctl失败,我得到了error (25): Inappropriate ioctl for device。我正在将Intrinsyc Open-Q 820 µSOMlinaro 4.14结合使用。我设法在ov5640_s_ctrl function之前在if (sensor->power_count == 0) {的ov5640驱动程序文件中添加了一些调试打印(以防节电模式出现问题)并重新编译内核。我运行了代码,但是浏览dmesg并没有显示我的printk消息,所以这意味着即使设置了回调也不会调用ov5640_s_ctrl

static const struct v4l2_ctrl_ops ov5640_ctrl_ops = {
    .g_volatile_ctrl = ov5640_g_volatile_ctrl,
    .s_ctrl = ov5640_s_ctrl,
};

我使用V4L2错误吗?在设置控件之前,我应该启用某些功能吗?由于我设法使用v4l2从相机中获取图像,因此更加令人困惑,但是我无法设置/获取任何控件。

c++ v4l2
1个回答
0
投票

在您提供的ov5640.c的内核源代码中,驱动程序被分配了标志V4L2_SUBDEV_FL_HAS_DEVNODE,这意味着它可能提供了subdev节点/dev/v4l-subdevX。根据内核文档:

可以在/ dev中创建名为v4l-subdevX的设备节点,以直接访问子设备。如果子设备支持直接用户空间配置,则必须在注册之前设置V4L2_SUBDEV_FL_HAS_DEVNODE标志。

因此,您可以尝试直接从v4l-subdevX节点设置控件(如果存在)。>

© www.soinside.com 2019 - 2024. All rights reserved.