摘要:
编程指南:https://docs.espressif.com/projects/esp-idf/zh_CN/release-v4.4/esp32/get-started/index.html#id35 芯片选项:https://products.espressif.com/#/product-se 阅读全文
摘要:
TianCard 将记录如何移植uboot linux rootfs https://github.com/Letian-stu/V3S-TianCard 阅读全文
摘要:
操作符 左右移操作符 #include <stdio.h> #include <stdlib.h> int main(int argc, char *argv[]) { int a = 2; //a = 0000 0000 0000 0000 0000 0000 0000 0010 int b = 阅读全文
摘要:
初识数据类型 位,字节和字 最小的储存单位是 位(bit) 0 or 1 常用的储存单位是 字节(byte) 1 byte = 8 bit 设计计算机时给定的自然存储单位 字(word) 个人计算机增长到32位 64位计算机的字长越大,其数据转移的就越快,允许的内存访问就越多 数据类型 char / 阅读全文