上一页 1 ··· 41 42 43 44 45 46 47 48 49 ··· 67 下一页
摘要: 使用技巧: git、github、vs code 配合使用; github上项目,在github1s.com/...../......(加粗位置)可以以vs code界面风格,阅读代码 为了不制造无用信息,故不动笔,请看以下文章 参考文章:https://blog.csdn.net/txw0415/ 阅读全文
posted @ 2021-11-03 15:30 我爱茜茜公主 阅读(50) 评论(0) 推荐(0)
摘要: 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)
摘要: 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)
摘要: 文章地址: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)
摘要: 文章地址:https://doc.embedfire.com/rtos/rtthread/zh/latest/application/cpu_usage_rate.html 阅读全文
posted @ 2021-10-22 14:18 我爱茜茜公主 阅读(134) 评论(0) 推荐(0)
摘要: 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)
摘要: 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)
摘要: 致谢 文章地址1:https://www.cnblogs.com/qiumingcheng/p/11229086.html 阅读全文
posted @ 2021-10-21 10:54 我爱茜茜公主 阅读(183) 评论(0) 推荐(0)
摘要: 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 下一页