mirror of
				https://github.com/espressif/esp-idf.git
				synced 2025-11-03 22:08:28 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			39 lines
		
	
	
		
			864 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			39 lines
		
	
	
		
			864 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
menu "Example Configuration"
 | 
						|
 | 
						|
    menu "UART Configuration"
 | 
						|
        config EXAMPLE_UART_TX_PIN
 | 
						|
            int "TXD Pin Number"
 | 
						|
            default 4
 | 
						|
            range 0 36
 | 
						|
            help
 | 
						|
                Pin number of UART TX.
 | 
						|
 | 
						|
        config EXAMPLE_UART_RX_PIN
 | 
						|
            int "RXD Pin Number"
 | 
						|
            default 36
 | 
						|
            range 0 36
 | 
						|
            help
 | 
						|
                Pin number of UART RX.
 | 
						|
 | 
						|
        config EXAMPLE_UART_BAUD
 | 
						|
            int "UART baud rate"
 | 
						|
            default 115200
 | 
						|
            help
 | 
						|
                Baud rate for UART communication
 | 
						|
 | 
						|
    endmenu
 | 
						|
 | 
						|
    config EXAMPLE_UDP_PORT
 | 
						|
        int "Port for UDP echo server"
 | 
						|
        default 5678
 | 
						|
        help
 | 
						|
            Port for UDP echo server in example
 | 
						|
 | 
						|
    config EXAMPLE_IPV4
 | 
						|
        bool "Test with IPv4 address"
 | 
						|
        default n
 | 
						|
        help
 | 
						|
            Test interface using IPv4
 | 
						|
 | 
						|
endmenu
 |