mirror of
https://github.com/espressif/esp-idf.git
synced 2025-11-26 20:53:11 +00:00
feat(isp): added isp driver framework and isp af driver
This commit is contained in:
24
components/soc/esp32p4/isp_periph.c
Normal file
24
components/soc/esp32p4/isp_periph.c
Normal file
@@ -0,0 +1,24 @@
|
||||
/*
|
||||
* SPDX-FileCopyrightText: 2023-2024 Espressif Systems (Shanghai) CO LTD
|
||||
*
|
||||
* SPDX-License-Identifier: Apache-2.0
|
||||
*/
|
||||
|
||||
#include "soc/periph_defs.h"
|
||||
#include "soc/isp_periph.h"
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
const isp_info_t isp_hw_info = {
|
||||
.instances = {
|
||||
[0] = {
|
||||
.irq = ETS_ISP_INTR_SOURCE,
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
Reference in New Issue
Block a user