mirror of
https://github.com/espressif/esp-idf.git
synced 2026-09-22 13:01:16 +03:00
Move per-target JPEG regdma retention descriptors out of esp_hal_jpeg and into esp_driver_jpeg so the codec driver owns its backup scope and restore flow.
25 lines
429 B
C
25 lines
429 B
C
/*
|
|
* SPDX-FileCopyrightText: 2026 Espressif Systems (Shanghai) CO LTD
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include "soc/soc_caps.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
typedef struct {
|
|
const char *module_name; // Module name
|
|
const int irq_id; // interrupt source ID
|
|
} soc_jpeg_signal_desc_t;
|
|
|
|
extern const soc_jpeg_signal_desc_t soc_jpeg_signals[1];
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|