07 2023 档案

摘要:extern void Assert(char *file,uint32_t line); #define ASSERT(condition)\ do{\ if(!(condition))\ Assert(__FILE__,__LINE__);\ }while(0) void Assert(char 阅读全文
posted @ 2023-07-28 17:28 ccc_zdh 阅读(29) 评论(0) 推荐(0)
摘要:imxrt1052的ram默认配置是256k ocram,128k DTCRAM ,128K ITCRAM 现在修改为128K OCRAM 256K DTCRAM 128K ITCRAM 1.首先修改启动文件 Reset_Handler: cpsid i /* Mask interrupts */ 阅读全文
posted @ 2023-07-10 14:56 ccc_zdh 阅读(203) 评论(0) 推荐(0)
摘要:Windows Registry Editor Version 5.00 [HKEY_CLASSES_ROOT\*\shell\VSCode] @="Open with Code" "Icon"="d:\\Microsoft VS Code\\Code.exe" [HKEY_CLASSES_ROOT 阅读全文
posted @ 2023-07-03 09:59 ccc_zdh 阅读(116) 评论(0) 推荐(0)
摘要:Windows Registry Editor Version 5.00 [HKEY_CURRENT_USER\Software\Microsoft\InputMethod\Settings\CHS] "Enable Double Pinyin"=dword:00000001 "DoublePiny 阅读全文
posted @ 2023-07-03 09:55 ccc_zdh 阅读(388) 评论(0) 推荐(0)
摘要:由于本人偏向于utf8编码的文件,所以编辑器都设置的utf8编码,这就导致了gb2312的编码文件打开后会乱码。于是在网上找到了转换编码的工具。 以下也是从网上找来的,代码也比较简单。需要安装python或者path路径里面包含python路径,同时还需要pip install chardet im 阅读全文
posted @ 2023-07-03 09:48 ccc_zdh 阅读(290) 评论(0) 推荐(0)