Toggle navigation
首页
问答
文章
积分商城
专家
专区
更多专区...
文档中心
返回主站
搜索
提问
会员
中心
登录
注册
BSP
I2C引脚配置问题
发布于 2019-10-25 11:57:00 浏览:2165
订阅该版
--- Enable I2C1 BUS (software simulation) │ │ │ │ (15) i2c1 scl pin number (NEW) │ │ │ │ (16) I2C1 sda pin number (NEW) │ │ 我在尝试添加一个SHT20的驱动,我能想到的步骤 1:进入menuconfig 2:在芯片外设里,添加I2C1的外设 3:在package里,添加shtxx的驱动 4:打开cubemx,配置好I2C引脚 上图添加i2c外设时,这个15和16对应的是芯片的引脚序号吗
查看更多
8
个回答
默认排序
按发布时间排序
sjj430
2019-10-25
这家伙很懒,什么也没写!
>i2c使用软件模拟实现,不需要在cube中开启i2c功能。 >引脚序号怎么设置,你看看drv_gpio.c,就知道序号所对 ... --- 谢谢,问一下为什么不用cube生成的I2C
cookie2g
2019-12-12
这家伙很懒,什么也没写!
>用模拟的,rtthread 提供了驱动的 --- 请问,如果要根据自己的硬件,调整引脚配置,需要在哪里修改?
whj467467222
认证专家
2019-12-12
开源,分享,交流,共同进步
>请问,如果要根据自己的硬件,调整引脚配置,需要在哪里修改? --- rtconfig.h
cookie2g
2019-12-12
这家伙很懒,什么也没写!
这是我工程文件中rtconfig.h的代码,里面只能找到开启I2C,没有引脚相关配置代码啊 ``` #ifndef RT_CONFIG_H__ #define RT_CONFIG_H__ /* Generated by Kconfiglib (https://github.com/ulfalizer/Kconfiglib) */ /* RT-Thread Kernel */ #define RT_NAME_MAX 8 #define RT_ALIGN_SIZE 4 #define RT_THREAD_PRIORITY_32 #define RT_THREAD_PRIORITY_MAX 32 #define RT_TICK_PER_SECOND 1000 #define RT_USING_OVERFLOW_CHECK #define RT_USING_HOOK #define RT_USING_IDLE_HOOK #define RT_IDLE_HOOK_LIST_SIZE 4 #define IDLE_THREAD_STACK_SIZE 256 #define RT_USING_TIMER_SOFT #define RT_TIMER_THREAD_PRIO 4 #define RT_TIMER_THREAD_STACK_SIZE 512 #define RT_DEBUG #define RT_DEBUG_COLOR /* Inter-Thread communication */ #define RT_USING_SEMAPHORE #define RT_USING_MUTEX #define RT_USING_EVENT #define RT_USING_MAILBOX #define RT_USING_MESSAGEQUEUE /* end of Inter-Thread communication */ /* Memory Management */ #define RT_USING_MEMPOOL #define RT_USING_SMALL_MEM #define RT_USING_HEAP /* end of Memory Management */ /* Kernel Device Object */ #define RT_USING_DEVICE #define RT_USING_CONSOLE #define RT_CONSOLEBUF_SIZE 256 #define RT_CONSOLE_DEVICE_NAME "uart1" /* end of Kernel Device Object */ #define RT_VER_NUM 0x40002 /* end of RT-Thread Kernel */ #define ARCH_ARM #define RT_USING_CPU_FFS #define ARCH_ARM_CORTEX_M #define ARCH_ARM_CORTEX_M4 /* RT-Thread Components */ #define RT_USING_COMPONENTS_INIT #define RT_USING_USER_MAIN #define RT_MAIN_THREAD_STACK_SIZE 2048 #define RT_MAIN_THREAD_PRIORITY 10 /* C++ features */ /* end of C++ features */ /* Command shell */ #define RT_USING_FINSH #define FINSH_THREAD_NAME "tshell" #define FINSH_USING_HISTORY #define FINSH_HISTORY_LINES 5 #define FINSH_USING_SYMTAB #define FINSH_USING_DESCRIPTION #define FINSH_THREAD_PRIORITY 20 #define FINSH_THREAD_STACK_SIZE 4096 #define FINSH_CMD_SIZE 80 #define FINSH_USING_MSH #define FINSH_USING_MSH_DEFAULT #define FINSH_USING_MSH_ONLY #define FINSH_ARG_MAX 10 /* end of Command shell */ /* Device virtual file system */ /* end of Device virtual file system */ /* Device Drivers */ #define RT_USING_DEVICE_IPC #define RT_PIPE_BUFSZ 512 #define RT_USING_SERIAL #define RT_SERIAL_RB_BUFSZ 64 #define RT_USING_I2C #define RT_USING_I2C_BITOPS #define RT_USING_PIN #define RT_USING_SENSOR #define RT_USING_SENSOR_CMD /* Using USB */ /* end of Using USB */ /* end of Device Drivers */ /* POSIX layer and C standard library */ #define RT_LIBC_USING_TIME /* end of POSIX layer and C standard library */ /* Network */ /* Socket abstraction layer */ /* end of Socket abstraction layer */ /* Network interface device */ /* end of Network interface device */ /* light weight TCP/IP stack */ /* end of light weight TCP/IP stack */ /* AT commands */ /* end of AT commands */ /* end of Network */ /* VBUS(Virtual Software BUS) */ /* end of VBUS(Virtual Software BUS) */ /* Utilities */ /* end of Utilities */ /* end of RT-Thread Components */ /* RT-Thread online packages */ /* IoT - internet of things */ /* Wi-Fi */ /* Marvell WiFi */ /* end of Marvell WiFi */ /* Wiced WiFi */ /* end of Wiced WiFi */ /* end of Wi-Fi */ /* IoT Cloud */ /* end of IoT Cloud */ /* end of IoT - internet of things */ /* security packages */ /* end of security packages */ /* language packages */ /* end of language packages */ /* multimedia packages */ /* end of multimedia packages */ /* tools packages */ /* end of tools packages */ /* system packages */ /* end of system packages */ /* peripheral libraries and drivers */ #define PKG_USING_SENSORS_DRIVERS #define PKG_USING_MS5611 #define PKG_USING_MS5611_LATEST_VERSION #define PKG_USING_DS18B20 #define PKG_USING_DS18B20_LATEST_VERSION #define PKG_USING_DS18B20_SAMPLE /* end of peripheral libraries and drivers */ /* miscellaneous packages */ /* samples: kernel and components samples */ /* end of samples: kernel and components samples */ /* end of miscellaneous packages */ /* end of RT-Thread online packages */ #define SOC_FAMILY_STM32 #define SOC_SERIES_STM32F4 #define SOC_STM32F407ZGT6 #endif ```
进击的错觉
2019-12-13
这家伙很懒,什么也没写!
drivers/pin_config.h #define SOFT_I2C1_SDA_PIN #define SOFT_I2C1_SCL_PIN 有时候找不到,建议全局搜,没多少代码,一会就搜到了
Survive
2021-08-08
这家伙很懒,什么也没写!
位于drv_soft_i2c.h 和board.h
撰写答案
登录
注册新账号
关注者
0
被浏览
2.2k
关于作者
sjj430
这家伙很懒,什么也没写!
提问
12
回答
51
被采纳
0
关注TA
发私信
相关问题
1
STM32 407 串口接收数据 系统卡死
2
RTT nrf24l01 设备驱动程序
3
stm32f10x串口只能发送数据,无法接收
4
第一次尝试移植rt-thread 到stm32F103系列问题
5
有人把stm32L07xx的bsp移到rtt上来了吗?求一个
6
rt-thread线程调度异常在stm32f103芯片上
7
RTT是否支持STM32F429
8
请问谁有 STM32F40x HAL + RT-THREAD 模板
9
rt-thread在stm32f411下的移植问题
10
针对STM32F7系列平台的MPU,Cache特性,需要注意哪些问题?
推荐文章
1
RT-Thread应用项目汇总
2
玩转RT-Thread系列教程
3
国产MCU移植系列教程汇总,欢迎查看!
4
机器人操作系统 (ROS2) 和 RT-Thread 通信
5
五分钟玩转RT-Thread新社区
6
【技术三千问】之《玩转ART-Pi》,看这篇就够了!干货汇总
7
关于STM32H7开发板上使用SDIO接口驱动SD卡挂载文件系统的问题总结
8
STM32的“GPU”——DMA2D实例详解
9
RT-Thread隐藏的宝藏之completion
10
【ART-PI】RT-Thread 开启RTC 与 Alarm组件
最新文章
1
【24嵌入式设计大赛】基于RT-Thread星火一号的智慧家居系统
2
RT-Thread EtherKit开源以太网硬件正式发布
3
如何在master上的BSP中添加配置yml文件
4
使用百度AI助手辅助编写一个rt-thread下的ONVIF设备发现功能的功能代码
5
RT-Thread 发布 EtherKit开源以太网硬件!
热门标签
RT-Thread Studio
串口
Env
LWIP
SPI
AT
Bootloader
Hardfault
CAN总线
FinSH
ART-Pi
USB
DMA
文件系统
RT-Thread
SCons
RT-Thread Nano
线程
MQTT
STM32
RTC
FAL
rt-smart
ESP8266
I2C_IIC
WIZnet_W5500
UART
ota在线升级
PWM
cubemx
freemodbus
flash
packages_软件包
BSP
潘多拉开发板_Pandora
定时器
ADC
GD32
flashDB
socket
中断
Debug
编译报错
msh
SFUD
keil_MDK
rt_mq_消息队列_msg_queue
MicroPython
ulog
C++_cpp
本月问答贡献
踩姑娘的小蘑菇
7
个答案
3
次被采纳
a1012112796
15
个答案
2
次被采纳
张世争
9
个答案
2
次被采纳
rv666
5
个答案
2
次被采纳
用户名由3_15位
13
个答案
1
次被采纳
本月文章贡献
程序员阿伟
9
篇文章
2
次点赞
hhart
3
篇文章
4
次点赞
大龄码农
1
篇文章
5
次点赞
RTT_逍遥
1
篇文章
2
次点赞
ThinkCode
1
篇文章
1
次点赞
回到
顶部
发布
问题
分享
好友
手机
浏览
扫码手机浏览
投诉
建议
回到
底部