mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
27 lines
666 B
C
27 lines
666 B
C
/*
|
|
* SPDX-FileCopyrightText: 2020-2022 Espressif Systems (Shanghai) CO LTD
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
#ifndef _SOC_SPI_PINS_H_
|
|
#define _SOC_SPI_PINS_H_
|
|
|
|
#define SPI_FUNC_NUM 0
|
|
#define SPI_IOMUX_PIN_NUM_HD 12
|
|
#define SPI_IOMUX_PIN_NUM_CS 14
|
|
#define SPI_IOMUX_PIN_NUM_MOSI 16
|
|
#define SPI_IOMUX_PIN_NUM_CLK 15
|
|
#define SPI_IOMUX_PIN_NUM_MISO 17
|
|
#define SPI_IOMUX_PIN_NUM_WP 13
|
|
|
|
#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
|
|
|
|
#endif
|