会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
我爱茜茜公主
纸上得来终觉浅,绝知此事要躬行!
博客园
首页
新随笔
联系
订阅
管理
上一页
1
···
41
42
43
44
45
46
47
48
49
···
67
下一页
2021年11月3日
git github是什么,日常使用
摘要: 使用技巧: git、github、vs code 配合使用; github上项目,在github1s.com/...../......(加粗位置)可以以vs code界面风格,阅读代码 为了不制造无用信息,故不动笔,请看以下文章 参考文章:https://blog.csdn.net/txw0415/
阅读全文
posted @ 2021-11-03 15:30 我爱茜茜公主
阅读(50)
评论(0)
推荐(0)
2021年11月2日
extern "C" { }
摘要: extern "C" { } 为了能够正确实现C++代码调用其他C代码。加上extern "C" 后,会指示编译器按C语言的方式编译这部分代码,而不是C++的。 参考文章:www.cnblogs.com/nx520zj/p/5920782.html 参考文章:http://www.manongjc.
阅读全文
posted @ 2021-11-02 18:41 我爱茜茜公主
阅读(231)
评论(0)
推荐(0)
2021年11月1日
按键事件检测与事件处理
摘要: async 异步 inquire 询问 synch 同步 1 typedef struct button { 2 uint16_t ticks; 3 uint8_t repeat : 4; 4 uint8_t event : 4; 5 uint8_t state : 3; 6 uint8_t deb
阅读全文
posted @ 2021-11-01 11:11 我爱茜茜公主
阅读(154)
评论(0)
推荐(0)
2021年10月30日
创建按键句柄,句柄是什么
摘要: 文章地址:https://www.cnblogs.com/zpcdbky/p/4652151.html 文章地址:https://www.cnblogs.com/wkun/p/4254347.html 句柄是什么概念
阅读全文
posted @ 2021-10-30 14:44 我爱茜茜公主
阅读(51)
评论(0)
推荐(0)
2021年10月22日
带操作系统CPU利用率计算
摘要: 文章地址:https://doc.embedfire.com/rtos/rtthread/zh/latest/application/cpu_usage_rate.html
阅读全文
posted @ 2021-10-22 14:18 我爱茜茜公主
阅读(134)
评论(0)
推荐(0)
static 修饰函数声明
摘要: static void rt_hw_led_init(void); void rt_hw_led_init(void) { } static void rt_hw_led_init(void) { } 效果是一样的,推荐下面这种写法,这种写法能直接看出函数是不是内部函数!
阅读全文
posted @ 2021-10-22 11:04 我爱茜茜公主
阅读(162)
评论(0)
推荐(0)
rtt创建任务后线程何时运行
摘要: void demo_thread_creat(void) { rt_err_t result; /* 创建静态线程 : 优先级 16 ,时间片 2个系统滴答 */ result = rt_thread_init(&thread_test1, "test1", test1_thread_entry,
阅读全文
posted @ 2021-10-22 10:01 我爱茜茜公主
阅读(159)
评论(0)
推荐(0)
2021年10月21日
父结构体和子结构体
摘要: 致谢 文章地址1:https://www.cnblogs.com/qiumingcheng/p/11229086.html
阅读全文
posted @ 2021-10-21 10:54 我爱茜茜公主
阅读(183)
评论(0)
推荐(0)
2021年10月20日
函数内检查参数实现
摘要: the assert_param macro(宏) #define assert_param(expr) ((expr) ? (void)0 : assert_failed((uint8_t *)__FILE__, __LINE__)) /* Exported functions */ void a
阅读全文
posted @ 2021-10-20 13:57 我爱茜茜公主
阅读(45)
评论(0)
推荐(0)
芯片序列号
摘要: 长度:96bit 文章1地址:https://blog.csdn.net/xiaofeng1234/article/details/38876447 文章2地址:https://www.cnblogs.com/hujianhua/archive/2012/07/03/2574917.html 文章3
阅读全文
posted @ 2021-10-20 11:17 我爱茜茜公主
阅读(184)
评论(0)
推荐(0)
上一页
1
···
41
42
43
44
45
46
47
48
49
···
67
下一页
公告