发布时间:2022-06-06 17:50:37
pushd $(SRCDIR); make ltudbgen; popd;或者:pushd $(SRCDIR) && make ltudbgen && popd或者:make ltudbgen -C $(SRCDIR)......【阅读全文】
发布时间:2022-06-06 17:44:15
ifeq($(INPUT_CSO_FILE), $(wildcard $(INPUT_CSO_FILE))) cat $(DB_FILE_NAME) |$(TOOLDIR)/ltudbgen $(BIN_FILE_NAME)else cat $(DB_FILE_NAME) |$(TOOLDIR)/ltudbgen2 $(BIN_FILE_NAME)endif或者:&.........【阅读全文】
发布时间:2021-10-31 22:49:46
实验:点击(此处)折叠或打开#include <stdio.h>int main(){ unsigned int i = 0; unsigned char arr[] = {0x00, 0x11, 0x22, 0x33, 0x44, 0x55, 0x66, 0x77, 0x88, 0x99};.........【阅读全文】
发布时间:2020-09-27 18:44:12
实验:点击(此处)折叠或打开#include #include int main ( void ){ uint64_t udata = 0x123456789ULL; printf("0x%llx\n",.........【阅读全文】
发布时间:2020-09-17 19:18:01
选自: gcc-arm-none-eabi/info/gcc.info点击(此处)折叠或打开* gcc: (gcc). The GNU Compiler Collection. ---"(GNU Tools for ARM Embedded Processors)"2.1 C language============== GCC supports three versions of the C standard, althou.........【阅读全文】