Toggle navigation
首页
问答
文章
积分商城
专家
专区
更多专区...
文档中心
返回主站
搜索
提问
会员
中心
登录
注册
ART-Pi Smart
LED
rt-smart
5
ART-PI Smart User 运行LED 程序崩溃
发布于 2024-07-05 07:06:54 浏览:311
订阅该版
使用的master分支下的代码,通过 6ull bootloader 中的tftp获取kernel后能正常运行,并挂载emmc,和sd卡。 ``` \ | / - RT - Thread Smart Operating System / | \ 5.2.0 build Jul 5 2024 05:55:07 2006 - 2024 Copyright by RT-Thread team lwIP-2.1.2 initialized! [142] E/gt911: Can't find i2c3 device [150] I/sal.skt: Socket Abstraction Layer initialize success. [156] I/drivers.serial: Using /dev/ttyS0 as default console [216] I/SDIO: SD card capacity 15558144 KB. [229] I/SDIO: sd: switch to High Speed / SDR25 mode found part[0], begin: 4194304, size: 14.853GB [282] I/SDIO: emmc card capacity 7634944 KB, card sec count:15269888. [291] I/SDIO: emmc: switch to HIGH Speed mode found part[0], begin: 10485760, size: 500.0MB found part[1], begin: 629145600, size: 6.712GB emmc file system initialization done! sd0 file system initialization done! open em failed! hello rt-smart ``` 在userapps中添加led_test.c,代码如下: ```c #include "led_test.h" #define LED_PIN GET_PIN(1,3) int main() { rt_device_t pin_dev; struct rt_device_pin_mode pin_mode; struct rt_device_pin_status pin_status; pin_dev = rt_device_find("pin"); if (pin_dev == RT_NULL) { rt_kprintf("not find pin device!\n"); return -1; } rt_device_open(pin_dev, RT_DEVICE_OFLAG_RDWR); pin_mode.pin = LED_PIN; pin_mode.mode = 0; rt_device_control(pin_dev, 0 ,(void*)&pin_mode); pin_status.pin = LED_PIN; while(1) { pin_status.status = 0; rt_device_write(pin_dev, 0 ,(void*)&pin_status, sizeof(pin_status)); rt_thread_mdelay(200); pin_status.status = 1; rt_device_write(pin_dev, 0 ,(void*)&pin_status, sizeof(pin_status)); rt_thread_mdelay(200); } rt_device_close(pin_dev); return 0; } ``` 将Userapps 下的hello 和 led 编译后放到sd卡中,kernel运行后运行hello正常,但是运行led,程序直接崩溃了。 ```c msh /sd0>./hello msh /sd0>hello world! test msh /sd0>./led msh /sd0>Function[rt_aspace_fault_try_fix]: scheduler is not available thread pri status sp stack size max used left tick error tcb addr -------- --- ------- ---------- ---------- ------ ---------- ------- ---------- led 25 running 0x00000048 0x00004000 10% 0x000000bc OK 0xc01a0990 tshell 20 suspend 0x0000023c 0x00001000 59% 0x00000008 OK 0xc0197b1c tsdcard 30 suspend 0x0000011c 0x00000800 31% 0x00000014 EINTRPT 0xc0196a38 wlan 15 suspend 0x000000e8 0x00000800 11% 0x0000000a OK 0xc019290c ttywork 3 suspend 0x000000e8 0x00001000 05% 0x0000000a OK 0xc0191754 mmcsd_de 22 suspend 0x00000138 0x00001000 41% 0x00000004 EINTRPT 0xc018028c sys wor 23 suspend 0x000000e8 0x00001000 05% 0x0000000a OK 0xc019059c tcpip 10 suspend 0x00000180 0x00002000 05% 0x00000014 EINTRPT 0xc018e3e4 erx 12 suspend 0x00000138 0x00002000 03% 0x00000010 EINTRPT 0xc01731ac pcache 25 suspend 0x00000170 0x00002000 05% 0x00000005 EINTRPT 0xc018c1c4 tidle0 31 ready 0x0000007c 0x00002000 11% 0x00000015 OK 0xc01818e8 timer 4 suspend 0x00000130 0x00001000 07% 0x00000008 EINTRPT 0xc0183d00 backtrace: 0xc00caf70 @ assert_handler 0xc00caf74 @ assert_handler 0xc010ba8c @ rt_assert_handler 0xc006ed74 @ rt_aspace_fault_try_fix 0xc00c9f44 @ check_data_abort 0xc00ca3a8 @ rt_hw_trap_dabt ``` 怀疑是led测试程序的问题,然后将这部分功能直接放到kernel中,通过msh来调用,是可以正常运行的。 看了下运行报错的地方,没太搞懂是为啥出现了这个情况, 有大佬能解答一下么
查看更多
2
个回答
默认排序
按发布时间排序
bernard
2024-07-05
这家伙很懒,什么也没写!
可以在内核层面加些log看看。出错时的栈回溯是有的,像是访问了非法地址
flashman2002
2024-07-05
这家伙很懒,什么也没写!
我估计是GET_PIN宏使用的不对,一般是GET_PIN(B, 13)之类的,括号中第一个参数是字母,第二个是数字。请检查一下。
撰写答案
登录
注册新账号
关注者
0
被浏览
311
关于作者
freedom195
好好学习,天天向上
提问
33
回答
57
被采纳
1
关注TA
发私信
相关问题
1
应用开发如何包含头文件
2
STM32F03RC跑RTT标准版 没有运行
3
为什么 Count 的值不连续和间隔为 7?
4
请求LED.C/H文件
5
RT-thread 如何被当做“单片机”,控制小灯的亮灭?
6
agile led软件包怎么使用
7
AT32F423开发板呼吸灯无作用,只有一个灯亮
8
rt-smart发布时间
9
rt-smart qemu-vexpress-a9 编译报错
10
rt-smart分支编译rasp4-32bsp报错
推荐文章
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
【RT-Thread】【ci】【scons】将ci.attachconfig.yml和scons结合使用
2
Rt-thread中OTA下载后,bootloader不搬程序
3
ulog 日志 LOG_HEX 输出时间改为本地日期时间
4
在RT-Thread Studio中构建前执行python命令
5
研究一了一段时间RTT,直接标准版上手太难,想用nano,但又舍不得组件
热门标签
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
I2C_IIC
ESP8266
UART
WIZnet_W5500
ota在线升级
cubemx
PWM
flash
freemodbus
BSP
packages_软件包
潘多拉开发板_Pandora
定时器
ADC
flashDB
GD32
socket
编译报错
中断
Debug
rt_mq_消息队列_msg_queue
SFUD
msh
keil_MDK
ulog
C++_cpp
MicroPython
本月问答贡献
xusiwei1236
8
个答案
2
次被采纳
踩姑娘的小蘑菇
1
个答案
2
次被采纳
用户名由3_15位
9
个答案
1
次被采纳
bernard
4
个答案
1
次被采纳
RTT_逍遥
3
个答案
1
次被采纳
本月文章贡献
聚散无由
2
篇文章
15
次点赞
catcatbing
2
篇文章
5
次点赞
Wade
2
篇文章
4
次点赞
Ghost_Girls
1
篇文章
7
次点赞
xiaorui
1
篇文章
2
次点赞
回到
顶部
发布
问题
分享
好友
手机
浏览
扫码手机浏览
投诉
建议
回到
底部