mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
19 lines
503 B
C
19 lines
503 B
C
/*
|
|
* SPDX-FileCopyrightText: 2024 Espressif Systems (Shanghai) CO LTD
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
/**
|
|
* @brief ISP peripheral contains many submodules, whose drivers are scattered in different header files.
|
|
* This header file serves as a prelude, contains every thing that is needed to work with the ISP peripheral.
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include "driver/isp_core.h"
|
|
#include "driver/isp_af.h"
|
|
#include "driver/isp_awb.h"
|
|
#include "driver/isp_bf.h"
|
|
#include "driver/isp_ccm.h"
|