私は組み込みの初心者であり、カメラ センサーの初心者でもあります。ご容赦ください。OV2640 カメラ モジュール ( OV2640 データシート、ブレイクアウト ボード付きモジュール) とのインターフェイスを試みています。そこで、以下を接続しました。
- OV2640 - LPC1768
- GND ------- p1 (GND)
- VCC ------- p40 (Vout - 3.3V)
- SDA ------- p28 (I2C SDA)
- SCL ------- p27 (I2C SCL)
SCCBを介して動作させようとしています。そのため、I2C が接続されています。しかし、私はそれを正しく設定することができないようです。
これは私が今持っているコードです:
#include <stdio.h>
#include "mbed.h"
Serial pc(USBTX, USBRX); // tx, rx to the PC
I2C cam(p28, p27); // I2C
int main() {
pc.printf("Starting new program\r\n");
cam.start();
int addressCOM7 = 0x12;
int addressCLKRC = 0x11;
int addressCOM2 = 0x09;
const char data = 1;
int length = 8;
bool repeated = false;
int rtn = -1;
cam.frequency(400000);
pc.printf("Camera I2c set to 400,000Hz \r\n");
rtn = cam.write(addressCOM7, "1", addressCOM7 + data);
if ( rtn == 0)pc.printf("COM7 set to 1. \r\n");
else pc.printf("Error Setting COM7 to 1. \r\n");
rtn = cam.write(addressCLKRC, &data, addressCLKRC + data);
if (rtn == 0) pc.printf("CLKRC set to 1. \r\n");
else pc.printf("Error Setting CLKRC to 1. \r\n");
rtn = cam.write(addressCOM2, &data, addressCOM2 + data);
if (rtn == 0) pc.printf("COM2 set to 1. \r\n");
else pc.printf("Error Setting COM2 to 1. \r\n");
int address = 0x30;
char readData[128];
strcpy (readData,"");
while(1) {
cam.read(address, readData, 128);
wait(2.0);
pc.printf("1 = '%s'\r\n", readData);
}
}
I2C を介して書き込みまたは読み取りができません - ここで何が間違っていますか?
また、XCLK を OV2640 モジュールに接続する必要があると思いますが、LPC1768 マイクロコントローラからどのように行うことができますか?