OpenEdv-开源电子网

 找回密码
 立即注册
正点原子全套STM32/Linux/FPGA开发资料,上千讲STM32视频教程免费下载...
查看: 576|回复: 1

请教关于ESP32S3的引脚问题

[复制链接]

5

主题

8

帖子

0

精华

新手上路

积分
44
金钱
44
注册时间
2019-8-19
在线时间
6 小时
发表于 2024-5-14 22:19:02 | 显示全部楼层 |阅读模式
1金钱
在分配ESP32S3的串口时,将TX脚设置为43脚,RX脚设置为44脚
#define UART_TX_GPIO_PIN    GPIO_NUM_43
#define UART_RX_GPIO_PIN    GPIO_NUM_44

但是却出现 未定义标识符 "USART_RX_GPIO_PIN"的错误,发现原来是在gpio_tpyes.h中,使用的是CONFIG_IDF_TARGET_ESP32,所以引脚定义如下,它的引脚最多定义到39:
#if CONFIG_IDF_TARGET_ESP32
typedef enum {
    GPIO_NUM_NC = -1,    /*!< Use to signal not connected to S/W */
    GPIO_NUM_0 = 0,     /*!< GPIO0, input and output */
    GPIO_NUM_1 = 1,     /*!< GPIO1, input and output */
    GPIO_NUM_2 = 2,     /*!< GPIO2, input and output */
    GPIO_NUM_3 = 3,     /*!< GPIO3, input and output */
    GPIO_NUM_4 = 4,     /*!< GPIO4, input and output */
    GPIO_NUM_5 = 5,   



而我使用的是ESP32S3,应该用下面这个宏,它定义的管脚数量是48,可是是灰色的。
#elif CONFIG_IDF_TARGET_ESP32S3
typedef enum {
    GPIO_NUM_NC = -1,    /*!< Use to signal not connected to S/W */
    GPIO_NUM_0 = 0,     /*!< GPIO0, input and output */
    GPIO_NUM_1 = 1,     /*!< GPIO1, input and output */
    GPIO_NUM_2 = 2,     /*!< GPIO2, input and output */
    GPIO_NUM_3 = 3,     /*!< GPIO3, input and output */
    GPIO_NUM_4 = 4,     /*!< GPIO4, input and output */
    GPIO_NUM_5 = 5,     /*!< GPIO5, input and output */
    GPIO_NUM_6 = 6,     /*!< GPIO6, input and output */
    GPIO_NUM_7 = 7,     /*!< GPIO7, input and output */

我在使用vscode建立工程时已经选择芯片是ESP32S3,并且sdkconfig文件中也是ESP32S3,究竟是怎么回事呢?应该怎么弄呢?


正点原子逻辑分析仪DL16劲爆上市
回复

使用道具 举报

2

主题

16

帖子

0

精华

初级会员

Rank: 2

积分
86
金钱
86
注册时间
2020-5-10
在线时间
12 小时
发表于 2024-5-19 23:07:20 | 显示全部楼层
确定工程是esp32s3这个芯片型号吗?。如果选择正确,应该不会报这个错误的。可以使用正点原子提供的串口例程编译试试。
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则



关闭

原子哥极力推荐上一条 /2 下一条

正点原子公众号

QQ|手机版|OpenEdv-开源电子网 ( 粤ICP备12000418号-1 )

GMT+8, 2024-11-22 19:23

Powered by OpenEdv-开源电子网

© 2001-2030 OpenEdv-开源电子网

快速回复 返回顶部 返回列表