摘要:
sudo apt-get install libxxx-dev 安装软件包 sudo apt-get install libncurses-dev 阅读全文
摘要:
1. 新建C文件mfloat.c #include <stdio.h> int main(void) { double a,b,c; a = 23.5436; b = 323.2348; c = b/a; printf("the result = %f\n", c); printf("hello w 阅读全文
摘要:
fatal error: openssl/bio.h: No such file or directory#include <openssl/bio.h> 出现如上问题,安装libssl-dev 包sudo apt-get install libssl-dev 阅读全文
摘要:
void *thread_basedata(void* arg) { int i, ret; // Allocate memory for read buffer, set size according to your needs unsigned char read_buf [DATA_LEN]; 阅读全文
摘要:
请注意,此错误记录已关闭。发生错误的原因是fput和put都在RTS中的同一个文件中定义。 如果你替换了我们对fputs的定义,你也必须替换put的定义。这是我们提供的一个,您可以简单地将其添加到定义fput的文件中。 int puts(const char *_ptr) { int count = 阅读全文
摘要:
QByteArray::fromHex(tohex.toLatin1()); 阅读全文
摘要:
获取日期时间 GET_DATE := $(shell date +%F)GET_TIME := $(shell date +%H:%M:%S) 添加宏定义 DEFINE_PAR += -D SDK_VERSION=\"V1.0.0\"DEFINE_PAR += -D MAKE_TIME=\"$(GE 阅读全文
摘要:
#查看时区列表timedatectl list-timezones #设置上海时区sudo timedatectl set-timezone Asia/Shanghai 阅读全文
摘要:
samba简介 samba的功能都是通过一个CIFS(Common Internet File System)协议套件来管理的,这个名字是由微软引入的。 Samba是一个开源的CIFS实现,官网地址为 https://www.samba.org/samba/。 SMB (Server Message 阅读全文
摘要:
阅读全文