mirror of
https://github.com/openmv/openmv.git
synced 2025-09-26 23:09:13 +08:00

Old header files are no longer needed. Signed-off-by: iabdalkader <i.abdalkader@gmail.com>
64 lines
1.9 KiB
C
64 lines
1.9 KiB
C
/*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
* Copyright (C) 2013-2024 OpenMV, LLC.
|
|
*
|
|
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
* of this software and associated documentation files (the "Software"), to deal
|
|
* in the Software without restriction, including without limitation the rights
|
|
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
* copies of the Software, and to permit persons to whom the Software is
|
|
* furnished to do so, subject to the following conditions:
|
|
*
|
|
* The above copyright notice and this permission notice shall be included in
|
|
* all copies or substantial portions of the Software.
|
|
*
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
* THE SOFTWARE.
|
|
*
|
|
* OV7690 register definitions.
|
|
*/
|
|
#ifndef __REG_REGS_H__
|
|
#define __REG_REGS_H__
|
|
|
|
#define GAIN 0x00
|
|
#define BGAIN 0x01
|
|
#define RGAIN 0x02
|
|
#define GGAIN 0x03
|
|
#define REG0C 0x0C
|
|
#define REG0E 0x0E
|
|
#define AECH 0x0F
|
|
#define AECL 0x10
|
|
#define CLKRC 0x11
|
|
#define REG12 0x12
|
|
#define REG13 0x13
|
|
#define REG14 0x14
|
|
#define REG15 0x15
|
|
#define REG19 0x19
|
|
#define PLL 0x29
|
|
#define REG3E 0x3E
|
|
#define REG82 0x82
|
|
#define LCC0 0x85
|
|
#define LCC1 0x86
|
|
#define LCC4 0x89
|
|
#define LCC5 0x8A
|
|
#define LCC6 0x8B
|
|
#define REGC8 0xC8
|
|
#define REGC9 0xC9
|
|
#define REGCA 0xCA
|
|
#define REGCB 0xCB
|
|
#define REGCC 0xCC
|
|
#define REGCD 0xCD
|
|
#define REGCE 0xCE
|
|
#define REGCF 0xCF
|
|
#define REGD2 0xD2
|
|
#define REGD8 0xD8
|
|
#define REGD9 0xD9
|
|
|
|
#endif //__REG_REGS_H__
|