PicoCamera 0.2.0
Camera library for RP2040 with an esp32-camera compatible API
GitHub
载入中...
搜索中...
未找到
xclk.h
浏览该文件的文档.
1/*
2 * This file is part of the PicoCamera project.
3 * https://github.com/umeiko/PicoCamera
4 *
5 * Author: umeko <umeko@stu.xmu.edu.cn>
6 * License: MIT
7 */
8
13#pragma once
14
15#include <stdint.h>
16
17#ifdef __cplusplus
18extern "C" {
19#endif
20
33int xclk_start(int pin, uint32_t freq_hz);
34
36void xclk_stop(int pin);
37
38#ifdef __cplusplus
39}
40#endif
English version