* Fix: Make esp32-camera function prototypes strict This is required for pedantic builds with -Wstrict-prototypes flag * ci: Enable pedantic example build
10 lines
229 B
C
Executable file
10 lines
229 B
C
Executable file
#pragma once
|
|
|
|
#include "esp_system.h"
|
|
#include "esp_camera.h"
|
|
|
|
esp_err_t xclk_timer_conf(int ledc_timer, int xclk_freq_hz);
|
|
|
|
esp_err_t camera_enable_out_clock(const camera_config_t *config);
|
|
|
|
void camera_disable_out_clock(void);
|