87 lines
2.9 KiB
C
87 lines
2.9 KiB
C
// Copyright 2010-2016 Espressif Systems (Shanghai) PTE LTD
|
|
//
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
// you may not use this file except in compliance with the License.
|
|
// You may obtain a copy of the License at
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
//
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
// See the License for the specific language governing permissions and
|
|
// limitations under the License.
|
|
|
|
#ifndef _SOC_RTC_GPIO_CHANNEL_H
|
|
#define _SOC_RTC_GPIO_CHANNEL_H
|
|
|
|
#define RTC_GPIO_NUMBER 22
|
|
|
|
//RTC GPIO channels
|
|
#define RTCIO_GPIO0_CHANNEL 0 //RTCIO_CHANNEL_0
|
|
#define RTCIO_CHANNEL_0_GPIO_NUM 0
|
|
|
|
#define RTCIO_GPIO1_CHANNEL 1 //RTCIO_CHANNEL_1
|
|
#define RTCIO_CHANNEL_1_GPIO_NUM 1
|
|
|
|
#define RTCIO_GPIO2_CHANNEL 2 //RTCIO_CHANNEL_2
|
|
#define RTCIO_CHANNEL_2_GPIO_NUM 2
|
|
|
|
#define RTCIO_GPIO3_CHANNEL 3 //RTCIO_CHANNEL_3
|
|
#define RTCIO_CHANNEL_3_GPIO_NUM 3
|
|
|
|
#define RTCIO_GPIO4_CHANNEL 4 //RTCIO_CHANNEL_4
|
|
#define RTCIO_CHANNEL_4_GPIO_NUM 4
|
|
|
|
#define RTCIO_GPIO5_CHANNEL 5 //RTCIO_CHANNEL_5
|
|
#define RTCIO_CHANNEL_5_GPIO_NUM 5
|
|
|
|
#define RTCIO_GPIO6_CHANNEL 6 //RTCIO_CHANNEL_6
|
|
#define RTCIO_CHANNEL_6_GPIO_NUM 6
|
|
|
|
#define RTCIO_GPIO7_CHANNEL 7 //RTCIO_CHANNEL_7
|
|
#define RTCIO_CHANNEL_7_GPIO_NUM 7
|
|
|
|
#define RTCIO_GPIO8_CHANNEL 8 //RTCIO_CHANNEL_8
|
|
#define RTCIO_CHANNEL_8_GPIO_NUM 8
|
|
|
|
#define RTCIO_GPIO9_CHANNEL 9 //RTCIO_CHANNEL_9
|
|
#define RTCIO_CHANNEL_9_GPIO_NUM 9
|
|
|
|
#define RTCIO_GPIO10_CHANNEL 10 //RTCIO_CHANNEL_10
|
|
#define RTCIO_CHANNEL_10_GPIO_NUM 10
|
|
|
|
#define RTCIO_GPIO11_CHANNEL 11 //RTCIO_CHANNEL_11
|
|
#define RTCIO_CHANNEL_11_GPIO_NUM 11
|
|
|
|
#define RTCIO_GPIO12_CHANNEL 12 //RTCIO_CHANNEL_12
|
|
#define RTCIO_CHANNEL_12_GPIO_NUM 12
|
|
|
|
#define RTCIO_GPIO13_CHANNEL 13 //RTCIO_CHANNEL_13
|
|
#define RTCIO_CHANNEL_13_GPIO_NUM 13
|
|
|
|
#define RTCIO_GPIO14_CHANNEL 14 //RTCIO_CHANNEL_14
|
|
#define RTCIO_CHANNEL_14_GPIO_NUM 14
|
|
|
|
#define RTCIO_GPIO15_CHANNEL 15 //RTCIO_CHANNEL_15
|
|
#define RTCIO_CHANNEL_15_GPIO_NUM 15
|
|
|
|
#define RTCIO_GPIO16_CHANNEL 16 //RTCIO_CHANNEL_16
|
|
#define RTCIO_CHANNEL_16_GPIO_NUM 16
|
|
|
|
#define RTCIO_GPIO17_CHANNEL 17 //RTCIO_CHANNEL_17
|
|
#define RTCIO_CHANNEL_17_GPIO_NUM 17
|
|
|
|
#define RTCIO_GPIO18_CHANNEL 18 //RTCIO_CHANNEL_18
|
|
#define RTCIO_CHANNEL_18_GPIO_NUM 18
|
|
|
|
#define RTCIO_GPIO19_CHANNEL 19 //RTCIO_CHANNEL_19
|
|
#define RTCIO_CHANNEL_19_GPIO_NUM 19
|
|
|
|
#define RTCIO_GPIO20_CHANNEL 20 //RTCIO_CHANNEL_20
|
|
#define RTCIO_CHANNEL_20_GPIO_NUM 20
|
|
|
|
#define RTCIO_GPIO21_CHANNEL 21 //RTCIO_CHANNEL_21
|
|
#define RTCIO_CHANNEL_21_GPIO_NUM 21
|
|
|
|
#endif
|