Merge branch 'refactor/cleanup_hal_files_v6.0' into 'release/v6.0'

refactor(jpeg): Split hal layer for jpeg  (backport v6.0)

See merge request espressif/esp-idf!45514
This commit is contained in:
morris
2026-02-01 18:51:36 +08:00
26 changed files with 37 additions and 44 deletions

View File

@@ -0,0 +1,25 @@
/*
* SPDX-FileCopyrightText: 2024 Espressif Systems (Shanghai) CO LTD
*
* SPDX-License-Identifier: Apache-2.0
*/
#pragma once
#include <stdlib.h>
#ifdef __cplusplus
extern "C" {
#endif
/**
* @brief Enumeration of PSRAM command types
*/
typedef enum {
PSRAM_HAL_CMD_QPI, /*!< Quad command for psram command */
PSRAM_HAL_CMD_SPI, /*!< SPI command for psram command */
} psram_cmd_mode_t;
#ifdef __cplusplus
}
#endif