mirror of
https://github.com/espressif/esp-idf.git
synced 2025-09-30 19:19:21 +00:00
fix(mspi): collect mspi iomux pin macro from iomux_reg.h to spi_pins.h
This commit is contained in:
@@ -1,26 +1,25 @@
|
||||
/*
|
||||
* SPDX-FileCopyrightText: 2020-2022 Espressif Systems (Shanghai) CO LTD
|
||||
* SPDX-FileCopyrightText: 2020-2024 Espressif Systems (Shanghai) CO LTD
|
||||
*
|
||||
* SPDX-License-Identifier: Apache-2.0
|
||||
*/
|
||||
|
||||
#ifndef _SOC_SPI_PINS_H_
|
||||
#define _SOC_SPI_PINS_H_
|
||||
#pragma once
|
||||
|
||||
#define SPI_FUNC_NUM 0
|
||||
#define SPI_IOMUX_PIN_NUM_HD 18
|
||||
#define SPI_IOMUX_PIN_NUM_CS 15
|
||||
#define SPI_IOMUX_PIN_NUM_MOSI 20
|
||||
#define SPI_IOMUX_PIN_NUM_CLK 19
|
||||
#define SPI_IOMUX_PIN_NUM_MISO 16
|
||||
#define SPI_IOMUX_PIN_NUM_WP 17
|
||||
// MSPI IOMUX PINs
|
||||
#define MSPI_FUNC_NUM 0
|
||||
#define MSPI_IOMUX_PIN_NUM_HD 18
|
||||
#define MSPI_IOMUX_PIN_NUM_WP 17
|
||||
#define MSPI_IOMUX_PIN_NUM_CS0 15
|
||||
#define MSPI_IOMUX_PIN_NUM_CLK 19
|
||||
#define MSPI_IOMUX_PIN_NUM_MOSI 20
|
||||
#define MSPI_IOMUX_PIN_NUM_MISO 16
|
||||
|
||||
#define SPI2_FUNC_NUM 2
|
||||
#define SPI2_IOMUX_PIN_NUM_MISO 0
|
||||
#define SPI2_IOMUX_PIN_NUM_HD 3
|
||||
#define SPI2_IOMUX_PIN_NUM_WP 2
|
||||
#define SPI2_IOMUX_PIN_NUM_CLK 4
|
||||
#define SPI2_IOMUX_PIN_NUM_MOSI 5
|
||||
#define SPI2_IOMUX_PIN_NUM_CS 1
|
||||
|
||||
#endif
|
||||
// GPSPI2 IOMUX PINs
|
||||
#define SPI2_FUNC_NUM 2
|
||||
#define SPI2_IOMUX_PIN_NUM_MISO 0
|
||||
#define SPI2_IOMUX_PIN_NUM_HD 3
|
||||
#define SPI2_IOMUX_PIN_NUM_WP 2
|
||||
#define SPI2_IOMUX_PIN_NUM_CLK 4
|
||||
#define SPI2_IOMUX_PIN_NUM_MOSI 5
|
||||
#define SPI2_IOMUX_PIN_NUM_CS 1
|
||||
|
Reference in New Issue
Block a user