摘要: sudo apt-get install libxxx-dev 安装软件包 sudo apt-get install libncurses-dev 阅读全文
posted @ 2024-10-09 17:52 妖岭 阅读(19) 评论(0) 推荐(0) 编辑
摘要: 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 阅读全文
posted @ 2024-10-08 16:14 妖岭 阅读(6) 评论(0) 推荐(0) 编辑
摘要: fatal error: openssl/bio.h: No such file or directory#include <openssl/bio.h> 出现如上问题,安装libssl-dev 包sudo apt-get install libssl-dev 阅读全文
posted @ 2024-10-08 15:41 妖岭 阅读(88) 评论(0) 推荐(0) 编辑
摘要: 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]; 阅读全文
posted @ 2024-09-30 10:57 妖岭 阅读(16) 评论(0) 推荐(0) 编辑
摘要: 请注意,此错误记录已关闭。发生错误的原因是fput和put都在RTS中的同一个文件中定义。 如果你替换了我们对fputs的定义,你也必须替换put的定义。这是我们提供的一个,您可以简单地将其添加到定义fput的文件中。 int puts(const char *_ptr) { int count = 阅读全文
posted @ 2024-08-28 15:17 妖岭 阅读(128) 评论(0) 推荐(0) 编辑
摘要: QByteArray::fromHex(tohex.toLatin1()); 阅读全文
posted @ 2024-08-27 10:24 妖岭 阅读(10) 评论(0) 推荐(0) 编辑
摘要: 获取日期时间 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 阅读全文
posted @ 2024-08-21 13:00 妖岭 阅读(16) 评论(0) 推荐(0) 编辑
摘要: #查看时区列表timedatectl list-timezones #设置上海时区sudo timedatectl set-timezone Asia/Shanghai 阅读全文
posted @ 2024-08-21 12:58 妖岭 阅读(5) 评论(0) 推荐(0) 编辑
摘要: samba简介 samba的功能都是通过一个CIFS(Common Internet File System)协议套件来管理的,这个名字是由微软引入的。 Samba是一个开源的CIFS实现,官网地址为 https://www.samba.org/samba/。 SMB (Server Message 阅读全文
posted @ 2024-08-21 10:12 妖岭 阅读(23) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2024-08-21 09:53 妖岭 阅读(2) 评论(0) 推荐(0) 编辑