mirror of
				https://github.com/espressif/esp-idf.git
				synced 2025-10-26 20:51:49 +01:00 
			
		
		
		
	Add support of gpio for esp32s3(728). Adjust some pins and comments in test_gpio.c. Add support for gpio functions for gpio19 and gpio20. Update S3 programming guide Peripheral API: gpio and sigmadelta. Add unit test for input and output function of S3 USB pins(GPIO19 and GPIO20) and C3 USB pins(GPIO18 and GPIO19). Adjust input only test in test_spi_master.c.
		
			
				
	
	
		
			119 lines
		
	
	
		
			2.2 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			119 lines
		
	
	
		
			2.2 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
| // Copyright 2018 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.
 | |
| 
 | |
| #include "soc/gpio_periph.h"
 | |
| 
 | |
| const uint32_t GPIO_PIN_MUX_REG[SOC_GPIO_PIN_COUNT] = {
 | |
|     IO_MUX_GPIO0_REG,
 | |
|     IO_MUX_GPIO1_REG,
 | |
|     IO_MUX_GPIO2_REG,
 | |
|     IO_MUX_GPIO3_REG,
 | |
|     IO_MUX_GPIO4_REG,
 | |
|     IO_MUX_GPIO5_REG,
 | |
|     IO_MUX_GPIO6_REG,
 | |
|     IO_MUX_GPIO7_REG,
 | |
|     IO_MUX_GPIO8_REG,
 | |
|     IO_MUX_GPIO9_REG,
 | |
|     IO_MUX_GPIO10_REG,
 | |
|     IO_MUX_GPIO11_REG,
 | |
|     IO_MUX_GPIO12_REG,
 | |
|     IO_MUX_GPIO13_REG,
 | |
|     IO_MUX_GPIO14_REG,
 | |
|     IO_MUX_GPIO15_REG,
 | |
|     IO_MUX_GPIO16_REG,
 | |
|     IO_MUX_GPIO17_REG,
 | |
|     IO_MUX_GPIO18_REG,
 | |
|     IO_MUX_GPIO19_REG,
 | |
|     IO_MUX_GPIO20_REG,
 | |
|     IO_MUX_GPIO21_REG,
 | |
|     0,
 | |
|     0,
 | |
|     0,
 | |
|     0,
 | |
|     IO_MUX_GPIO26_REG,
 | |
|     IO_MUX_GPIO27_REG,
 | |
|     IO_MUX_GPIO28_REG,
 | |
|     IO_MUX_GPIO29_REG,
 | |
|     IO_MUX_GPIO30_REG,
 | |
|     IO_MUX_GPIO31_REG,
 | |
|     IO_MUX_GPIO32_REG,
 | |
|     IO_MUX_GPIO33_REG,
 | |
|     IO_MUX_GPIO34_REG,
 | |
|     IO_MUX_GPIO35_REG,
 | |
|     IO_MUX_GPIO36_REG,
 | |
|     IO_MUX_GPIO37_REG,
 | |
|     IO_MUX_GPIO38_REG,
 | |
|     IO_MUX_GPIO39_REG,
 | |
|     IO_MUX_GPIO40_REG,
 | |
|     IO_MUX_GPIO41_REG,
 | |
|     IO_MUX_GPIO42_REG,
 | |
|     IO_MUX_GPIO43_REG,
 | |
|     IO_MUX_GPIO44_REG,
 | |
|     IO_MUX_GPIO45_REG,
 | |
|     IO_MUX_GPIO46_REG,
 | |
|     IO_MUX_GPIO47_REG,
 | |
|     IO_MUX_GPIO48_REG,
 | |
| };
 | |
| 
 | |
| const uint32_t GPIO_HOLD_MASK[SOC_GPIO_PIN_COUNT] = {
 | |
|     0,
 | |
|     0,
 | |
|     0,
 | |
|     0,
 | |
|     0,
 | |
|     0,
 | |
|     0,
 | |
|     0,
 | |
|     0,
 | |
|     0,
 | |
|     0,
 | |
|     0,
 | |
|     0,
 | |
|     0,
 | |
|     0,
 | |
|     0,
 | |
|     0,
 | |
|     0,
 | |
|     0,
 | |
|     0,
 | |
|     0,
 | |
|     0,
 | |
|     BIT(1),
 | |
|     BIT(2),
 | |
|     BIT(3),
 | |
|     BIT(4),
 | |
|     BIT(5),
 | |
|     BIT(6),
 | |
|     BIT(7),
 | |
|     BIT(8),
 | |
|     BIT(9),
 | |
|     BIT(10),
 | |
|     BIT(11),
 | |
|     BIT(12),
 | |
|     BIT(13),
 | |
|     BIT(14),
 | |
|     BIT(15),
 | |
|     BIT(16),
 | |
|     BIT(17),
 | |
|     BIT(18),
 | |
|     BIT(19),
 | |
|     BIT(20),
 | |
|     BIT(21),
 | |
|     BIT(22),
 | |
|     BIT(23),
 | |
|     BIT(24),
 | |
|     BIT(25),
 | |
|     BIT(26),
 | |
| };
 |