06 2021 档案
摘要:以下的代码很有意思,在相同时刻,相同的内存地址,数据居然会不一样。 #include <iostream> int main(void) { const int const_val = 3; int *nomal_pot = (int*)&const_val; *nomal_pot = 9; pri
阅读全文
摘要:LVGL 介绍 官方网站:LVGL - Light and Versatile Embedded Graphics Library 源码位置:GitHub - lvgl/lvgl: Powerful and easy-to-use embedded GUI library with many wid
阅读全文