Navigation

    VEYE IMAGING Forum

    • Register
    • Login
    • Search
    • Categories
    • Tags
    • Recent
    • Popular
    • Users
    • WIKI
    • veye.cc
    1. Home
    2. nimadibaj
    3. Topics
    N
    • Profile
    • Following 0
    • Followers 0
    • Topics 5
    • Posts 11
    • Best 0
    • Groups 0

    Topics created by nimadibaj

    • N

      UNSOLVED Saving VeyeMIPI parameters
      VEYE MIPI camera • • nimadibaj

      2
      0
      Votes
      2
      Posts
      69
      Views

      veye_xumm

      @nimadibaj

      @nimadibaj said in Saving VeyeMIPI parameters:

      1_ Writing 0xff to 0x000b solved our problem and now the CSI-2 output of the module is in HS mode not LP mode. Thank you. Please give us a command to save this change.

      Sorry, this command cannot save settings during a power outage.

      @nimadibaj said in Saving VeyeMIPI parameters:

      2_ We are trying to change video frame rate (now is 30fps and we need 25fps).
      by these commands we cannot do this :
      0x10 0xDE
      0x11 0xC2
      0x12 0x00
      0x13 0x00
      (sending Two byte, then sending next two byte and ... ).

      write_videoformat() { local videoformat=0; local res=0; res=$(./i2c_write $I2C_DEV $I2C_ADDR 0x10 0xDE ); res=$(./i2c_write $I2C_DEV $I2C_ADDR 0x11 0xC2 ); if [ $PARAM1 = "PAL" ] ; then res=$(./i2c_write $I2C_DEV $I2C_ADDR 0x12 0x0); elif [ $PARAM1 = "NTSC" ] ; then res=$(./i2c_write $I2C_DEV $I2C_ADDR 0x12 0x1); fi res=$(./i2c_write $I2C_DEV $I2C_ADDR 0x13 0x00 ); printf "w videoformat is %s\n" $PARAM1; }

      The detailed code of the i2c_write function in the above example shows the actual bytecode it sends. Specifically, i2c_write sends multiple bytes in a single standard I2C transaction to modify register values.The specific steps are the same as writing 0xff to 0x000b.

    • N

      SOLVED Veye MIPI imx462 Defaults
      VEYE MIPI camera • • nimadibaj

      8
      0
      Votes
      8
      Posts
      265
      Views

      N

      @veye_xumm

      Hello my friend.
      We are sending I2C commands via a FPGA.

      1_ Writing 0xff to 0x000b solved our problem. Thank you. Please give us a command to save this change.

      2_ We are trying to change video frame rate (now is 30fps and we need 25fps).
      by these commands we cannot do this :
      0x10 0xDE
      0x11 0xC2
      0x12 0x00
      0x13 0x00
      (sending Two byte, then sending next two byte and ... ).

      Please guide me. Thanks a lot.

    • N

      Veye imx462 comnands
      VEYE MIPI camera • • nimadibaj

      2
      0
      Votes
      2
      Posts
      560
      Views

      V

      Before accessing these registers, write register 07 to 0xFE.

    • N

      SOLVED VEYE-IMX462 Video Format
      VEYE MIPI camera • • nimadibaj

      3
      0
      Votes
      3
      Posts
      1152
      Views

      N

      @veye_xumm
      Thanks

    • N

      SOLVED Veye IMX462 I2C Address
      VEYE MIPI camera • • nimadibaj

      3
      0
      Votes
      3
      Posts
      1185
      Views

      veye_xumm

      @nimadibaj
      0x3b
      This camera has isp module, so you can't control the sensor directly. please refer to the following code.
      http://wiki.veye.cc/index.php/VEYE-MIPI-290/327_i2c/
      https://github.com/veyeimaging/raspberrypi/blob/master/i2c_cmd/bin/veye_mipi_i2c.sh