Subversion Repositories svnkaklik

Rev

Go to most recent revision | Details | Last modification | View Log

Rev Author Line No. Line
151 kaklik 1
#ifndef CAMCONFIG_H
2
#define CAMCONFIG_H
3
 
4
/*
5
    Copyright (C) 2004    John Orlando
6
 
7
   AVRcam: a small real-time image processing engine.
8
 
9
    This program is free software; you can redistribute it and/or
10
    modify it under the terms of the GNU General Public
11
    License as published by the Free Software Foundation; either
12
    version 2 of the License, or (at your option) any later version.
13
 
14
    This program is distributed in the hope that it will be useful,
15
    but WITHOUT ANY WARRANTY; without even the implied warranty of
16
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
17
    General Public License for more details.
18
 
19
    You should have received a copy of the GNU General Public
20
    License along with this program; if not, write to the Free Software
21
    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
22
 
23
   For more information on the AVRcam, please contact:
24
 
25
   john@jrobot.net
26
 
27
   or go to www.jrobot.net for more details regarding the system.
28
*/
29
/***********************************************************
30
	Module Name: CamConfig.h
31
	Module Date: 04/12/2004
32
	Module Auth: John Orlando
33
 
34
	Description: This file provides the external interface
35
	to the CamConfig module.
36
 
37
    Revision History:
38
    Date        Rel Ver.    Notes
39
    4/10/2004      0.1     Module created
40
    6/30/2004      1.0     Initial release for Circuit Cellar
41
                           contest.
42
***********************************************************/
43
 
44
#include "I2CInterface.h"
45
 
46
/* This is the I2C slave address of the OV6620 module.
47
NOTE: The actual address of the camera is 0xC0.  However,
48
the TWI interface on the mega8 needs to have the address
49
shifted one bit to the right, which yields 0x60.  The
50
LSB is used to set whether the operation is read or 
51
write. */
52
#define CAM_ADDRESS 0x60	
53
 
54
extern i2cCmd_t CamConfig_txFifo[];
55
extern unsigned char 	CamConfig_txFifoHead;
56
extern unsigned char 	CamConfig_txFifoTail;
57
extern bool_t 			CamConfig_txComplete;
58
 
59
extern void  	CamConfig_init(void);
60
extern bool_t 	CamConfig_writeTxFifo(i2cCmd_t cmd);
61
extern void  	CamConfig_setCamReg(unsigned char reg, unsigned char val);
62
extern void  	CamConfig_sendFifoCmds(void);
63
 
64
#endif	
65