This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

LeopardBoard DM368 LI-M024DUAL Support

Hi, 

I was wondering if anyone had any experience with the LI-M024DUAL camera from leopard imaging.

What I'm trying to do is get a side by side stream from the board over wifi. 

I got the driver for the camera from leopard imaging, but I'm not sure how to load it. I'm trying to use the Ridge Run SDK, but will move over to the DVSDK if necessary.

Any help would be appreciated,

Thanks.

-Jared

  • Hi Jared,

    Are you running Linux OS on your board ?

    If it is Linux, they might have shared linux camera driver files,

    There are two ways to build the linux driver

    1. Statically linking to kernel image (inbuilt - uImage)

    2. Dynamically loadable Modules

    1. Inbuilt kernel image (uImage)

      For this you must find a appropriate place in kernel folder (somewhere in drivers/) to copy your .c files. copy them there. Edit Kconfig and Makefiles refering to other kernel drivers. and enable the support using menuconfig. Compile.

    2. Dynamically loadable Module

                 You can built without copying them to Kernel directory. Just create a Makefile and place rules in Makefile        to compile your module. Here you must link your module to your kernel which is currently running on board by providing the kernel source path.