mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
24a60c12c6
UART examples, unit test, and programming guide are all updated.
22 lines
611 B
C
22 lines
611 B
C
/*
|
|
* SPDX-FileCopyrightText: 2020-2022 Espressif Systems (Shanghai) CO LTD
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
// This file defines GPIO lookup macros for available UART IO_MUX pins on ESP32C2.
|
|
|
|
#ifndef _SOC_UART_CHANNEL_H
|
|
#define _SOC_UART_CHANNEL_H
|
|
|
|
//UART channels
|
|
#define UART_GPIO20_DIRECT_CHANNEL UART_NUM_0
|
|
#define UART_NUM_0_TXD_DIRECT_GPIO_NUM 20
|
|
#define UART_GPIO19_DIRECT_CHANNEL UART_NUM_0
|
|
#define UART_NUM_0_RXD_DIRECT_GPIO_NUM 19
|
|
|
|
#define UART_TXD_GPIO20_DIRECT_CHANNEL UART_GPIO20_DIRECT_CHANNEL
|
|
#define UART_RXD_GPIO19_DIRECT_CHANNEL UART_GPIO19_DIRECT_CHANNEL
|
|
|
|
#endif
|