CAMERAIntrVsync

Definition

#include <twl/camera.h>


typedef enum {
    CAMERA_INTR_VSYNC_NONE          = (0 << REG_CAM_CNT_IREQVS_SHIFT),
    CAMERA_INTR_VSYNC_NEGATIVE_EDGE = (2 << REG_CAM_CNT_IREQVS_SHIFT),
    CAMERA_INTR_VSYNC_POSITIVE_EDGE = (3 << REG_CAM_CNT_IREQVS_SHIFT)
} CAMERAIntrVsync;

Elements

CAMERA_INTR_VSYNC_NONE Interrupts are disabled.
CAMERA_INTR_VSYNC_NEGATIVE_EDGE Interrupts occur at the end of the camera VSync.
CAMERA_INTR_VSYNC_POSITIVE_EDGE Interrupts occur at the start of the camera VSync.

Description

This enumerated type is used to specify when camera VSync interrupts will occur.

Revision History

2007/11/09 Initial version.


CONFIDENTIAL