2013-12-10 23:10:39 +08:00
|
|
|
/****************************************************************************
|
|
|
|
* include/nuttx/video/ov2640.h
|
|
|
|
*
|
2021-01-29 21:39:49 +08:00
|
|
|
* Licensed to the Apache Software Foundation (ASF) under one or more
|
|
|
|
* contributor license agreements. See the NOTICE file distributed with
|
|
|
|
* this work for additional information regarding copyright ownership. The
|
|
|
|
* ASF licenses this file to you under the Apache License, Version 2.0 (the
|
|
|
|
* "License"); you may not use this file except in compliance with the
|
|
|
|
* License. You may obtain a copy of the License at
|
2013-12-10 23:10:39 +08:00
|
|
|
*
|
2021-01-29 21:39:49 +08:00
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
2013-12-10 23:10:39 +08:00
|
|
|
*
|
2021-01-29 21:39:49 +08:00
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
|
|
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
|
|
* License for the specific language governing permissions and limitations
|
|
|
|
* under the License.
|
2013-12-10 23:10:39 +08:00
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#ifndef __INCLUDE_NUTTX_VIDEO_OV2640_H
|
|
|
|
#define __INCLUDE_NUTTX_VIDEO_OV2640_H
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Included Files
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#include <nuttx/config.h>
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Pre-processor Definitions
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Public Data
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Public Function Prototypes
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
#define EXTERN extern "C"
|
2015-06-13 09:26:01 +08:00
|
|
|
extern "C"
|
|
|
|
{
|
2013-12-10 23:10:39 +08:00
|
|
|
#else
|
|
|
|
#define EXTERN extern
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/****************************************************************************
|
2017-04-22 06:33:14 +08:00
|
|
|
* Name: ov2640_initialize
|
2013-12-10 23:10:39 +08:00
|
|
|
*
|
|
|
|
* Description:
|
|
|
|
* Initialize the OV2640 camera.
|
|
|
|
*
|
2018-03-13 23:52:27 +08:00
|
|
|
* Input Parameters:
|
2013-12-10 23:10:39 +08:00
|
|
|
* i2c - Reference to the I2C driver structure
|
|
|
|
*
|
|
|
|
* Returned Value:
|
|
|
|
* Zero (OK) is returned on success. Otherwise, a negated errno value is
|
|
|
|
* returned to indicate the nature of the failure.
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
2016-01-30 22:36:47 +08:00
|
|
|
struct i2c_master_s;
|
|
|
|
int ov2640_initialize(FAR struct i2c_master_s *i2c);
|
2013-12-10 23:10:39 +08:00
|
|
|
|
|
|
|
#undef EXTERN
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2020-02-01 02:07:39 +08:00
|
|
|
#endif /* __INCLUDE_NUTTX_VIDEO_OV2640_H */
|