12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- #include "driver/gpio.h"
- #include "driver/ledc.h"
- #include "esp_err.h"
- #include "esp_log.h"
- #include "xclk.h"
- #if defined(ARDUINO_ARCH_ESP32) && defined(CONFIG_ARDUHAL_ESP_LOG)
- #include "esp32-hal-log.h"
- #else
- #include "esp_log.h"
- static const char* TAG = "camera_xclk";
- #endif
- esp_err_t camera_enable_out_clock(camera_config_t* config)
- {
- periph_module_enable(PERIPH_LEDC_MODULE);
- ledc_timer_config_t timer_conf;
- timer_conf.duty_resolution = 2;
- timer_conf.freq_hz = config->xclk_freq_hz;
- timer_conf.speed_mode = LEDC_HIGH_SPEED_MODE;
- timer_conf.timer_num = config->ledc_timer;
- timer_conf.clk_cfg = LEDC_USE_APB_CLK;
- esp_err_t err = ledc_timer_config(&timer_conf);
- if (err != ESP_OK) {
- ESP_LOGE(TAG, "ledc_timer_config failed, rc=%x", err);
- return err;
- }
- ledc_channel_config_t ch_conf;
- ch_conf.gpio_num = config->pin_xclk;
- ch_conf.speed_mode = LEDC_HIGH_SPEED_MODE;
- ch_conf.channel = config->ledc_channel;
- ch_conf.intr_type = LEDC_INTR_DISABLE;
- ch_conf.timer_sel = config->ledc_timer;
- ch_conf.duty = 2;
- ch_conf.hpoint = 0;
- err = ledc_channel_config(&ch_conf);
- if (err != ESP_OK) {
- ESP_LOGE(TAG, "ledc_channel_config failed, rc=%x", err);
- return err;
- }
- return ESP_OK;
- }
- void camera_disable_out_clock()
- {
- periph_module_disable(PERIPH_LEDC_MODULE);
- }
|