对嵌入式、qt、桌面开发感兴趣
(18)
(2)
(16)
发布时间:2023-09-06 15:43:52
1. 下载代码点击(此处)折叠或打开git clone --recurse-submodules https://github.com/wxwidgets/wxwidgets.git2. 编译点击(此处)折叠或打开$ mkdir build$ cd build$ cmake ../wxwidgets -g "mingm-make".........【阅读全文】
发布时间:2023-06-05 09:49:36
在安装好首个版本后, 1. 从git clone esp-idf 开始安装新版本到新目录,2. checkout时候选择第二个需要的版本3. 增加 alias 时,取一个不同的名字 比如 get_idf 和 get_idf5......
发布时间:2022-10-17 16:39:25
1. 数字类型表示 bool 时,0 表示 false,其他任意非 0 值表示 true2. qchar 可以存储 16 位的 unicode 字符3. 内置类型的实例不会默认初始化4. long 类型不同平台可能长度不同5. qdatastream 可用于存储与平台无关的二进制数据6. struct 除了没有指定段时默认 public,而 class 时 private 外,其他与 class 相同7. .........【阅读全文】
发布时间:2022-10-08 14:32:29
#include "esp_log.h"#include "esp_event.h"#include "freertos/freertos.h"#include "freertos/task.h"static const char *tag = "demo";esp_event_declare_base(event_base);esp_event_define_base(event_base);.........