-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
yaml --- r: 219532 b: refs/heads/master c: 75e2bda h: refs/heads/master v: v3
- Loading branch information
Daniel Drake
authored and
Mauro Carvalho Chehab
committed
Oct 23, 2010
1 parent
b7a74f2
commit ec1bce5
Showing
3 changed files
with
116 additions
and
39 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
--- | ||
refs/heads/master: f8c612744359179c6c90faccb6b0ca185cb65d15 | ||
refs/heads/master: 75e2bdad8901a0b599e01a96229be922eef1e488 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
/* | ||
* A V4L2 driver for OmniVision OV7670 cameras. | ||
* | ||
* Copyright 2010 One Laptop Per Child | ||
* | ||
* This file may be distributed under the terms of the GNU General | ||
* Public License, version 2. | ||
*/ | ||
|
||
#ifndef __OV7670_H | ||
#define __OV7670_H | ||
|
||
struct ov7670_config { | ||
int min_width; /* Filter out smaller sizes */ | ||
int min_height; /* Filter out smaller sizes */ | ||
int clock_speed; /* External clock speed (MHz) */ | ||
bool use_smbus; /* Use smbus I/O instead of I2C */ | ||
}; | ||
|
||
#endif |