This post is older than 2 years and might not be relevant anymore
More Info: Consider searching for newer posts

Camera interface for nRF52840

Hello,

I would like to take a photo and send it via Zigbee to another on nRF52840. Just a single image that is around 600x480 sizes. What interfaces can I use for that purpose? There is no MIPI CSI-2 or DVP. Time delay and colors are not priorities.

Additionally, could you recommend any camera module for an embedded system?

Thank you.

Parents Reply Children
  • Camera videoport is a master device - you need to synchronize nRF with PCLK coming from sensor. I cannot imagine a simple solution to convert videoport signal to SPI, maybe some small FPGA.
    If you'll find a way to configure OV2640 for low-frequency PCLK (1-2 MHz), you can try bit-banging method as awneil suggested. In this case, you need to disable interrupts completely for the whole time of receiving frame data, it's hard to say whether ZigBee stack will survive after that.

Related