mirror of
https://github.com/espressif/esp-idf.git
synced 2025-11-25 19:59:31 +01:00
26 lines
717 B
C
26 lines
717 B
C
/*
|
|
* SPDX-FileCopyrightText: 2020-2024 Espressif Systems (Shanghai) CO LTD
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
// MSPI IOMUX PINs
|
|
#define MSPI_FUNC_NUM 0
|
|
#define MSPI_IOMUX_PIN_NUM_HD 12
|
|
#define MSPI_IOMUX_PIN_NUM_WP 13
|
|
#define MSPI_IOMUX_PIN_NUM_CS0 14
|
|
#define MSPI_IOMUX_PIN_NUM_CLK 15
|
|
#define MSPI_IOMUX_PIN_NUM_MOSI 16
|
|
#define MSPI_IOMUX_PIN_NUM_MISO 17
|
|
|
|
// GPSPI2 IOMUX PINs
|
|
#define SPI2_FUNC_NUM 2
|
|
#define SPI2_IOMUX_PIN_NUM_MISO 2
|
|
#define SPI2_IOMUX_PIN_NUM_HD 4
|
|
#define SPI2_IOMUX_PIN_NUM_WP 5
|
|
#define SPI2_IOMUX_PIN_NUM_CLK 6
|
|
#define SPI2_IOMUX_PIN_NUM_MOSI 7
|
|
#define SPI2_IOMUX_PIN_NUM_CS 10
|