mirror of
https://github.com/openmv/openmv.git
synced 2025-11-04 14:49:50 +08:00
17 lines
374 B
C
17 lines
374 B
C
/*
|
|
* This file is part of the OpenMV project.
|
|
* Copyright (c) 2019 Lake Fu <lake_fu@pixart.com>
|
|
* This work is licensed under the MIT license, see the file LICENSE for details.
|
|
*
|
|
* PAJ6100 driver.
|
|
*
|
|
*/
|
|
#ifndef __PAJ6100_H__
|
|
#define __PAJ6100_H__
|
|
|
|
#define PAJ6100_XCLK_FREQ 6000000
|
|
|
|
bool paj6100_detect(sensor_t *sensor);
|
|
int paj6100_init(sensor_t *sensor);
|
|
#endif
|