Toggle navigation
首页
问答
文章
积分商城
专家
专区
更多专区...
文档中心
返回主站
搜索
提问
会员
中心
登录
注册
串口
龙芯
代码运行结果于我的预期不符
发布于 2023-11-29 15:00:35 浏览:260
订阅该版
代码: ```c /* mailbox_sample.c * * created: 2023/11/29 * author: */ #include
#include
static rt_thread_t tid1 = RT_NULL; static rt_thread_t tid2 = RT_NULL; #define THREAD_PRIORITY 25 #define THREAD_STACK_SIZE 512 #define THREAD_TIMESLICE 5 static struct rt_mailbox mb; static char mb_pool[128]; static char mb_str1[] = "I' am a mail"; static char mb_str2[] = "this is another mail!"; static void thread1_entry(void* parameter) { unsigned char* str; while(1) { rt_kprintf("thread1: try to recv a mail\n"); if(rt_mb_recv(&mb, (rt_uint32_t*)&str, RT_WAITING_FOREVER) == RT_EOK) { rt_kprintf("thread1: get a mail, the content: %s\n", str); rt_thread_delay(10); } } } static void thread2_entry(void* parameter) { rt_uint8_t count; count = 0; while(1) { count++; if(count & 0x1) { rt_mb_send(&mb, (rt_uint32_t)&mb_str1[0]); } else { rt_mb_send(&mb, (rt_uint32_t)&mb_str2[0]); } rt_thread_delay(20); } } int mailbox_sample(void) { rt_mb_init(&mb, "mbt", &mb_pool[0], sizeof(mb_pool)/4, RT_IPC_FLAG_FIFO); tid1 = rt_thread_create("thread1", thread1_entry, RT_NULL, THREAD_STACK_SIZE, THREAD_PRIORITY, THREAD_TIMESLICE); if(tid1 != RT_NULL) rt_thread_startup(tid1); tid2 = rt_thread_create("thread2", thread2_entry, RT_NULL, THREAD_STACK_SIZE, THREAD_PRIORITY, THREAD_TIMESLICE); if(tid2 != RT_NULL) rt_thread_startup(tid2); return 0; } MSH_CMD_EXPORT(mailbox_sample, send receive test); ``` 结果: ``` msh />mailbox_sample msh />thread1: try to recv a mail threa at =FFFFFFFE , v0 =0000007C , v1 =8021B474 , a0 =80247D38 , a1 =00000000 , a2 =000004E0 , a3 =80247E1C , t0 =1000FF02 , t1 =23232323 , t2 =23232323 , t3 =23232323 , t4 =23232323 , t5 =23232323 , t6 =23232323 , t7 =23232323 , s0 =1000FF03 , s1 =23232323 , s2 =23232323 , s3 =23232323 , s4 =23232323 , s5 =23232323 , s6 =23232323 , s7 =23232323 , t8 =23232323 , t9 =23232323 , k0 =8021C208 , k1 =0000007C , gp =80241B08 , sp =80245A58 , fp =80245A58 , ra =8022AE94 , mdlo =23232323 , mdhi =23232323 , badva =0000007C , cause =8000000C , status =1000FF02 , epc =8022FDBC , CPU Exception: TLB Store ```
查看更多
3
个回答
默认排序
按发布时间排序
红枫
认证专家
2023-11-29
这家伙很懒,什么也没写!
是线程堆栈太小了吧?
JMQN_4639
2023-11-29
STM32F407
楼主能详细描述下用的是什么硬件/开发板,用的是哪里的例程,以及预期的结果是什么样吗?谢谢
oxlm
2023-11-30
这家伙很懒,什么也没写!
感觉是堆栈溢出之类的问题,有没有可能是板子的堆栈空间配置的问题?
撰写答案
登录
注册新账号
关注者
0
被浏览
260
关于作者
郭aaaa
这家伙很懒,什么也没写!
提问
1
回答
0
被采纳
0
关注TA
发私信
相关问题
1
串口DMA发送数据时,数据被覆盖
2
关于串口DMA模式下rt_device_close问题
3
利用stm32f427实现usb转串口,电脑端什么也没有识别到
4
finsh 控制台 适配 RS 485请大神指点????
5
uart_sample.c 中,读串口设备时偏移量pos要设置为-1而不是0?
6
【结贴】at_device软件包中对串口接收数据缺少判断导致数据接收异常
7
串口无法接受数据,但可以发送
8
串口如何有效的清除掉接收缓冲,而不必一个一个的去读取
9
串口接收使用方式问题
10
雅特力FINSH问题
推荐文章
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
次被采纳
张世争
9
个答案
2
次被采纳
rv666
5
个答案
2
次被采纳
a1012112796
13
个答案
1
次被采纳
用户名由3_15位
11
个答案
1
次被采纳
本月文章贡献
程序员阿伟
6
篇文章
2
次点赞
hhart
3
篇文章
4
次点赞
大龄码农
1
篇文章
2
次点赞
ThinkCode
1
篇文章
1
次点赞
Betrayer
1
篇文章
1
次点赞
回到
顶部
发布
问题
分享
好友
手机
浏览
扫码手机浏览
投诉
建议
回到
底部