1 // Copyright 2015-2018 Espressif Systems (Shanghai) PTE LTD 2 // 3 // Licensed under the Apache License, Version 2.0 (the "License"); 4 // you may not use this file except in compliance with the License. 5 // You may obtain a copy of the License at 6 7 // http://www.apache.org/licenses/LICENSE-2.0 8 // 9 // Unless required by applicable law or agreed to in writing, software 10 // distributed under the License is distributed on an "AS IS" BASIS, 11 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 // See the License for the specific language governing permissions and 13 // limitations under the License. 14 15 #ifndef _SOC_SDMMC_PINS_H_ 16 #define _SOC_SDMMC_PINS_H_ 17 18 #define SDMMC_SLOT0_IOMUX_PIN_NUM_CLK 6 19 #define SDMMC_SLOT0_IOMUX_PIN_NUM_CMD 11 20 #define SDMMC_SLOT0_IOMUX_PIN_NUM_D0 7 21 #define SDMMC_SLOT0_IOMUX_PIN_NUM_D1 8 22 #define SDMMC_SLOT0_IOMUX_PIN_NUM_D2 9 23 #define SDMMC_SLOT0_IOMUX_PIN_NUM_D3 10 24 #define SDMMC_SLOT0_IOMUX_PIN_NUM_D4 16 25 #define SDMMC_SLOT0_IOMUX_PIN_NUM_D5 17 26 #define SDMMC_SLOT0_IOMUX_PIN_NUM_D6 5 27 #define SDMMC_SLOT0_IOMUX_PIN_NUM_D7 18 28 #define SDMMC_SLOT0_FUNC 0 29 30 #define SDMMC_SLOT1_IOMUX_PIN_NUM_CLK 14 31 #define SDMMC_SLOT1_IOMUX_PIN_NUM_CMD 15 32 #define SDMMC_SLOT1_IOMUX_PIN_NUM_D0 2 33 #define SDMMC_SLOT1_IOMUX_PIN_NUM_D1 4 34 #define SDMMC_SLOT1_IOMUX_PIN_NUM_D2 12 35 #define SDMMC_SLOT1_IOMUX_PIN_NUM_D3 13 36 #define SDMMC_SLOT1_FUNC 4 37 38 #endif /* _SOC_SDMMC_PINS_H_ */ 39