首页 > 代码库 > VmodCAM 初始化
VmodCAM 初始化
; WIP Last Changed Rev: 2172 ;************************************************************************************** ; Copyright 2011 Aptina Imaging Corporation. All rights reserved. ; ; ; No permission to use, copy, modify, or distribute this software and/or ; its documentation for any purpose has been granted by Aptina Imaging Corporation. ; If any such permission has been granted ( by separate agreement ), it ; is required that the above copyright notice appear in all copies and ; that both that copyright notice and this permission notice appear in ; supporting documentation, and that the name of Aptina Imaging Corporation or any ; of its trademarks may not be used in advertising or publicity pertaining ; to distribution of the software without specific, written prior permission. ; ; ; This software and any associated documentation are provided "AS IS" and ; without warranty of any kind. APTINA IMAGING CORPORATION EXPRESSLY DISCLAIMS ; ALL WARRANTIES EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO, NONINFRINGEMENT ; OF THIRD PARTY RIGHTS, AND ANY IMPLIED WARRANTIES OF MERCHANTABILITY OR FITNESS ; FOR A PARTICULAR PURPOSE. APTINA DOES NOT WARRANT THAT THE FUNCTIONS CONTAINED ; IN THIS SOFTWARE WILL MEET YOUR REQUIREMENTS, OR THAT THE OPERATION OF THIS SOFTWARE ; WILL BE UNINTERRUPTED OR ERROR-FREE. FURTHERMORE, APTINA DOES NOT WARRANT OR ; MAKE ANY REPRESENTATIONS REGARDING THE USE OR THE RESULTS OF THE USE OF ANY ; ACCOMPANYING DOCUMENTATION IN TERMS OF ITS CORRECTNESS, ACCURACY, RELIABILITY, ; OR OTHERWISE. ;*************************************************************************************/ ; Default INI file for the A-2020SOC-REV3 ; ; $Revision: 28073 $ ; $Date: 2011-05-24 14:58:00 -0700 (Tue, 24 May 2011) $ ; ; This file holds groups of register presets (sections) specific for this sensor. The ; presets allow you to overwrite the power-on default settings with optimized register ; settings. ; The [Demo Initialization] section contains all optimized register settings for running ; the sensor in the demo environment. Other sections include settings optimized for a ; variety of situations like: Running at different master clock speeds, running under ; different lighting situations, running with different lenses, etc. ; Most of the demonstration software (DevWare, SensorDemo, ...) make use of this file ; to load and store the user presets. ; ; Keyname description: ; REG = assign a new register value ; BITFIELD = do a READ-MODIFY-WRITE to part of a register. The part is defined as a mask. ; FIELD_WR = Write any register, variable or bitfield, specified by its symbol name ; LOAD = load an alternate section from this section ; STATE = set non-register state ; DELAY = delay a certain amount of milliseconds before continuing ; POLL_REG = Read a register a specified number of times, or until the register ; value no longer meets a specified condition. You specify the ; register by its address, and it only works with simple registers. ; You also specify a delay between each iteration of the loop. ; POLL_FIELD = Like POLL_REG except you specify the register by its symbol name ; as defined in the sensor data file. POLL_FIELD works with any kind ; of register or variable. ; ; Keyname format: ; REG = [<page>,] <address>, <value> //<comment> ; BITFIELD = [<page>,] <address>, <mask>, <value> ; Some examples: ; BITFIELD=2, 0x05, 0x0020, 1 //for register 5 on page 2, set the 6th bit to 1 ; BITFIELD=0x06, 0x000F, 0 //for register 6, clear the first 4 bits ; FIELD_WR = <registername>, [<bitfieldname>,] <value> ; LOAD = <section> ; STATE = <state>, <value> ; DELAY = <milliseconds> ; POLL_REG = [<page>,]<address>,<mask>,<condition>,DELAY=<milliseconds>,TIMEOUT=<count> //<comment> ; Example: Poll every 50ms, stop when value <= 8 or after 5 times (250ms). ; POLL_REG= 2, 0x3F, 0xFFFF, >8, DELAY=50, TIMEOUT=5 ; POLL_FIELD = <registername>, [<bitfieldname>,] <condition>, DELAY=<milliseconds>, TIMEOUT=<count> //<comment> ; Example: Poll every 10 ms, stop when the value = http://www.mamicode.com/0, or after 500ms.>
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。