Toggle navigation
首页
问答
文章
积分商城
专家
专区
更多专区...
文档中心
返回主站
搜索
提问
会员
中心
登录
注册
AT
K210
esp32
5
K210 esp32 初始化完成后程序崩溃
发布于 2020-10-02 22:27:08 浏览:2065
订阅该版
``` ` \ | / - RT - Thread Operating System / | \ 4.0.2 build Oct 2 2020 2006 - 2019 Copyright by rt-thread team do components initialization. initialize rti_board_end:0 done initialize dfs_init:0 done initialize ulog_init:0 done initialize ulog_console_backend_init:0 done initialize dma_device_init:0 done initialize rt_hw_i2c_init:0 done initialize rt_hw_spi_init:0 done initialize rt_hw_camera_init:0 done initialize esp32_device_class_register:0 done initialize rt_work_sys_workqueue_init:0 done initialize dfs_lfs_init:0 done initialize libc_system_init:0 done initialize sal_init[63] I/sal.skt: Socket Abstraction Layer initialize success. :0 done initialize rt_i2c_core_init:0 done initialize esp32_device_register[76] I/at.clnt: AT client(V1.3.0) on device uart2 initialize success. [82] D/at.dev.esp32: esp32 device initialize start. [89] D/at.dev.esp32: system is processing a commands... [389] D/at.dev.esp32: system is processing a commands... [689] D/at.dev.esp32: system is processing a commands... [989] D/at.dev.esp32: system is processing a commands... [1289] D/at.dev.esp32: system is processing a commands... [1314] I/at.dev.esp32: esp32 device wifi is disconnect. [4225] D/at.dev.esp32: AT version:2.0.0.0(e44648c - Nov 4 2019 02:18:57) [4231] D/at.dev.esp32: SDK version:v3.3 [4234] D/at.dev.esp32: compile time(7cac7ad):Nov 4 2019 06:11:40 [4240] D/at.dev.esp32: Bin version:2.0.0(WROOM-32) [4245] D/at.dev.esp32: [4249] I/at.dev.esp32: esp32 device wifi is connected. [4448] I/at.dev.esp32: esp32 device wifi is connected. [5905] I/at.dev.esp32: esp32 device network initialize successfully. [5910] D/at.dev.esp32: network interface device(esp32) set up status :0 done initialize finsh_system_init:0 done msh /> Exception: Store address misaligned ================================================================= x1 (ra : Return address ) ==> 0x00000000800202dc x2 (sp : Stack pointer ) ==> 0x8000000000007880 x3 (gp : Global pointer ) ==> 0x695d145b4698e208 x4 (tp : Thread pointer ) ==> 0x00000000deadbeef x5 (t0 : Temporary ) ==> 0x000000000000002e x6 (t1 : Temporary ) ==> 0x0000000000000019 x7 (t2 : Temporary ) ==> 0x0000000080073e8c x8 (s0/fp: Save register,frame pointer ) ==> 0x0000000080073d70 x9 (s1 : Save register ) ==> 0x0000000000000008 x10(a0 : Function argument,return value) ==> 0x0000000000000007 x11(a1 : Function argument,return value) ==> 0x0000000000000009 x12(a2 : Function argument ) ==> 0xffffffffffffffbf x13(a3 : Function argument ) ==> 0x0000000000000001 x14(a4 : Function argument ) ==> 0x0000000080073ebf x15(a5 : Function argument ) ==> 0xffffffffffffffff x16(a6 : Function argument ) ==> 0x0000000000000000 x17(a7 : Function argument ) ==> 0x0ccccccccccccccc x18(s2 : Save register ) ==> 0x0000000080073e90 x19(s3 : Save register ) ==> 0x000000008003d830 x20(s4 : Save register ) ==> 0x000000008002d2ea x21(s5 : Save register ) ==> 0x0000000080038048 x22(s6 : Save register ) ==> 0x0000000080073d78 x23(s7 : Save register ) ==> 0x0000000080072991 x24(s8 : Save register ) ==> 0x0000000080072990 x25(s9 : Save register ) ==> 0x0000000000000000 x26(s10 : Save register ) ==> 0x0000000000000400 x27(s11 : Save register ) ==> 0x0000000080073e88 x28(t3 : Temporary ) ==> 0x0000000000000007 x29(t4 : Temporary ) ==> 0x000000000000000a x30(t5 : Temporary ) ==> 0x7fffffffffffffff x31(t6 : Temporary ) ==> 0x0000000000000000 ================================================================= exception pc => 0x8002129a current thread: sys_work thread pri status sp stack size max used left tick error -------- --- ------- ---------- ---------- ------ ---------- --- led 20 init 0x00000100 0x00000200 50% 0x00000064 000 tshell 20 suspend 0x00000330 0x00004000 04% 0x00000009 000 at_clnt 9 suspend 0x00000210 0x00000600 45% 0x00000002 000 sys_work 23 running 0x00000330 0x00000800 69% 0x00000009 000 tidle0 31 ready 0x00000170 0x00001000 08% 0x00000016 000 timer 4 suspend 0x000001a0 0x00000200 81% 0x00000009 000` ``` K210 使用AT组件初始化esp32完成后,在sys_work 线程提示Store address misaligned,地址未对齐。请教下,这个问题该如何排查
查看更多
4
个回答
默认排序
按发布时间排序
bernard
2020-10-03
这家伙很懒,什么也没写!
K210是RV64GC处理器,可能需要多检查下对齐相关的问题,可以试试系统整体以8字节对齐的方式
Remember
2020-10-09
这家伙很懒,什么也没写!
将elf文件反汇编后,查看一下exception PC地址对应的代码附近是否存在问题
freedom195
2020-10-13
好好学习,天天向上
在sys_work中调用esp32_get_netdev_info 函数导致程序崩溃 具体原因是 ```c if (at_resp_parse_line_args_by_kw(resp, "+CWDHCP:", "+CWDHCP:%d", &dhcp_stat) < 0) { LOG_E("%s device prase DHCP status error.", device->name); goto __exit; } ``` 中dhcp_stat 这个变量为rt_uint8_t 类型,直接改为rt_uint32_t 程序不崩溃 在调试中发现的另外一个bug 在esp32_init_thread_entry 函数中 ```c if (at_obj_exec_cmd(client, at_resp_set_info(resp, 512, 0, 20 * RT_TICK_PER_SECOND), "AT+CWJAP=\"%s\",\"%s\"", esp32->wifi_ssid, esp32->wifi_password) != RT_EOK) { LOG_W("%s device wifi connect failed, check ssid(%s) and password(%s).", device->name, esp32->wifi_ssid, esp32->wifi_password); } else { wifi_is_conn = RT_TRUE; } ``` 连接失败后 result 未赋值标志,仍打印连接success.
windoufu
2021-08-30
这家伙很懒,什么也没写!
我也遇到了同样的问题,请问解决了没
撰写答案
登录
注册新账号
关注者
0
被浏览
2.1k
关于作者
freedom195
好好学习,天天向上
提问
33
回答
57
被采纳
1
关注TA
发私信
相关问题
1
rt-thread 2g/3g/4g通信模块的教程有吗?
2
基于AT指令,用esp8266如何连接mqtt?
3
AT组件使用问题
4
官方AT客户端应用笔记的几个小tip
5
RTT的SAL能够判断使用LWIP或者AT?
6
rt_therad AT组件移植不成功(结贴)
7
AT组件在哪个版本的?
8
AT组件 连接 Onenet 连接失败
9
esp8266 AT指令 MQTT连接问题
10
AT组件使用问题之模块主动上报【已解决】
推荐文章
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
使用百度AI助手辅助编写一个rt-thread下的ONVIF设备发现功能的功能代码
2
RT-Thread 发布 EtherKit开源以太网硬件!
3
rt-thread使用cherryusb实现虚拟串口
4
《C++20 图形界面程序:速度与渲染效率的双重优化秘籍》
5
《原子操作:程序世界里的“最小魔法单位”解析》
热门标签
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
ota在线升级
UART
PWM
cubemx
freemodbus
flash
packages_软件包
BSP
潘多拉开发板_Pandora
定时器
ADC
GD32
flashDB
socket
中断
Debug
编译报错
msh
SFUD
keil_MDK
rt_mq_消息队列_msg_queue
at_device
ulog
C++_cpp
本月问答贡献
踩姑娘的小蘑菇
7
个答案
3
次被采纳
张世争
8
个答案
2
次被采纳
rv666
5
个答案
2
次被采纳
用户名由3_15位
11
个答案
1
次被采纳
KunYi
6
个答案
1
次被采纳
本月文章贡献
程序员阿伟
6
篇文章
2
次点赞
hhart
3
篇文章
4
次点赞
大龄码农
1
篇文章
2
次点赞
ThinkCode
1
篇文章
1
次点赞
Betrayer
1
篇文章
1
次点赞
回到
顶部
发布
问题
分享
好友
手机
浏览
扫码手机浏览
投诉
建议
回到
底部