- 博客(9)
- 收藏
- 关注
原创 GUI Qt5
查看官方第一个示例(alarm)源代码https://doc.qt.io/archives/qt-5.14/qtdoc-tutorials-alarms-example.html源文件alarms.pro //项目文件main.cpp //应用程序的主C++代码文件qml.qrc //资源文件,其中包含源文件的名称(main.cpp和项目文件除外)//在 main.cpp 文件中生成代码。 此代码块启用高 DPI 缩放并声明应用程序和引擎。 然后引擎加载我们的主 QML 文件。
2022-05-03 14:44:34 159
原创 i2c驱动app
查看 i2c 源代码,并自注释24cXX.h/*************************************************************************** copyright : (C) by 2003-2004 Stefano Barbato email : stefano@codesink.org $Id: 24cXX.h,v 1.6 2004/02/29 11:05:28 tat
2022-04-26 11:50:31 92
原创 网络编程pthread/fork
查看while源代码服务器代码#include <stdlib.h> #include <stdio.h> #include <errno.h> #include <string.h> #include <netdb.h> #include <sys/types.h> #include <netinet/in.h> #include <sys/socket.h> #include <un
2022-04-19 12:48:44 106
原创 线程和进程
查看源代码;编辑各个程序并在ubuntu运行,解释运行状态和结果线程的创建和终止pthread_create()可以创建线程,其代码如下:#include <pthread.h>int pthread_create( pthread_t *restrict tidp, //新创建的线程ID指向的内存单元。 const pthread_attr_t *restrict attr, //线程属性,默认为NULL
2022-04-12 12:26:20 121
原创 SCP,NFS,SFTP服务器的配置和客户端操作使用
安装SCP、NFS、TFTPsudo apt install -y openssh-server nfs-kernel-server nfs-common tftpd-hpa tftp-hpaSCPssh配置首先要查看从服务器的IP地址ifconfig然后在主服务器中配置sshssh-keygen -b 2048 -t rsassh-copy-id -i .ssh/id_rsa.pubssh ubuntu@172.16.171.129Windows下scp客户端配置用scp转
2022-03-28 22:48:52 884
原创 Linux下的C编程调试
1.vim 编辑 hello.cvim编辑内容2.分别查看用下面指令编译的结果gcc -E hello.c -o hello.igcc -S hello.i -o hello.sgcc -c hello.s -o hello.ogcc hello.o -o hello3.查看运行结果#./hello4.使用gdb调试函数调用编译生成可执行文件gcc -g hello.c -o hello1启动GDBgdb hello1在程序第十行设置断点break 10
2022-03-27 22:37:58 1445
原创 手机安装linux
首先要先安装Termux和VNC Viewer两个app(需要挂vpn在谷歌商店中下载)打开Termux输入代码bash -c "$(curl -Lv gitee.com/mo2/linux/raw/master/debian.sh)"然后根据提示回车继续在等待之后会 询问访问点击允许之后会让你选择语言和操作方式都选择第一个就好之后继续回车在这个界面会卡住 按回车就能继续进行完成加载之后会提示检测到国内的网络配置,下载国外的源时会很慢...
2022-03-19 22:35:02 295
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人