mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
27 lines
661 B
C
27 lines
661 B
C
/*
|
|
* SPDX-FileCopyrightText: 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_CS 24
|
|
#define SPI_IOMUX_PIN_NUM_CLK 29
|
|
#define SPI_IOMUX_PIN_NUM_MOSI 30
|
|
#define SPI_IOMUX_PIN_NUM_MISO 25
|
|
#define SPI_IOMUX_PIN_NUM_WP 26
|
|
#define SPI_IOMUX_PIN_NUM_HD 28
|
|
|
|
#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 16
|
|
|
|
#endif
|