摘要: TEC>256 恢复BUS OFF状态 __disable(); IfxMultican_Can_Node_recoverBusOff(&mCanSrcNodeOfVihicleP);__enable(); 阅读全文
posted @ 2020-12-29 17:03 觅思剏新 阅读(444) 评论(0) 推荐(0)
摘要: https://blog.csdn.net/q1148013214/article/details/81172446 阅读全文
posted @ 2020-08-24 09:50 觅思剏新 阅读(189) 评论(0) 推荐(0)
摘要: 1 #include<stdio.h> 2 //定义结构体 3 typedef struct{ 4 int data; 5 struct Stack_chain * next; 6 }*Stack_chain,Stack; 7 8 typedef struct index{ 9 //存储栈的地址 1 阅读全文
posted @ 2020-08-13 21:17 觅思剏新 阅读(129) 评论(0) 推荐(0)
摘要: 实现简单的两栈共享空间的数据结构 栈1满和栈2满的四种情况要分析清楚 1 #include<stdio.h> 2 #define MAXSIZE 8 3 typedef struct spare_stack{ 4 int top1; 5 int top2; 6 int data[MAXSIZE]; 阅读全文
posted @ 2020-08-01 17:11 觅思剏新 阅读(268) 评论(0) 推荐(0)