11 2020 档案
摘要:最近vscode好像失灵了,c/c++的插件都无法安装了,查了github的类似问题,就是删除ms-vscode相关的文件夹,重新安装。 我今天测试了,手动安装,成功,首先vscode经过好几版本的自动更新,已经达到了10G的缓存,太大了,狠下心来,直接卸载,删除缓存,这样下来,很多配置文件也没有了
阅读全文
摘要:#include <stdio.h> #include <stdlib.h> int main() { unsigned long long un_var_long = 0; long long var_long = 0; unsigned int data_un = 0x8000; int dat
阅读全文
摘要:最近几个晚上,在b站中看完了arm公司官网的视屏教程,链接在下面,专门介绍了keil-mdk-arm中的keil5软件的使用教程,附带了ads-5开发平台的一节视频。总的来说,keil5的使用,我还是菜鸟,很多功能我们都没有使用上。官网的教程就是原汁原味,比很多论坛上的教程都是耳目一新,当然论坛上的
阅读全文
摘要:网站逻辑分析仪开源项目软件版本汇总及最新版本发布
阅读全文
摘要:使用union来打包/拆包数据联合的成员存储在共享存储区中。这是使我们能够找到有趣的工会应用程序的关键功能。考虑下面的联合: union { uint16_t word; struct { uint8_t byte1; uint8_t byte2; }; } u1; 复制代码 此union内部有两个
阅读全文
摘要:8.2 Conditional Compilation (#if, #ifdef, #ifndef, #else, #elif, #endif, and defined) Six directives are available to control conditional compilation.
阅读全文
摘要:原文:https://stackoverflow.com/questions/9946108/if-defined-x-y-is-this-valid 下面的示例显示||的更常见用法 和&&操作符针对#defined宏: #define AA 1 #define BB 2 #if (defined
阅读全文
摘要:http://pandafruits.com/stm32_primer/stm32_primer_lib.php As I mentioned in the last section we need to do a bit more work to the infrastructure to mak
阅读全文
摘要:原文来自:http://pandafruits.com/stm32_primer/stm32_primer_minimal.php In this section I'll show how to get the STM32F103RB running with a minimal "hello w
阅读全文
摘要:https://www.cnblogs.com/smartjourneys/p/6848279.html
阅读全文