上一页 1 ··· 4 5 6 7 8 9 10 11 下一页

2021年3月31日

摘要: UTF-8 编码是一种被广泛应用的编码, 采用变长度字节来表示字符,理论上最多可以到 6 个字节长度, 例如两位字节字符编码样式为为:110xxxxx 10xxxxxx;六位字节字符的编码样式为:1111110x 10xxxxxx 10xxxxxx 10xxxxxx 10xxxxxx 10xxxxx 阅读全文
posted @ 2021-03-31 17:20 Skyge 阅读(1123) 评论(0) 推荐(0) 编辑
 

2021年3月13日

摘要: 首先,STM32F10x系列的MCU复位后,PA13/14/15 & PB3/4默认配置为JTAG功能。有时我们为了充分利用MCU I/O口的资源,会把这些 端口设置为普通I/O口。具体方法如下: 在GPIO_Configuration(); // 配置使用的 GPIO 口: GPIO_PinRem 阅读全文
posted @ 2021-03-13 22:29 Skyge 阅读(7060) 评论(0) 推荐(0) 编辑
 

2021年3月6日

摘要: #include <stdlib.h>#include <stdio.h>#include <string.h>int main(){ //char *b= "asdasd,wewb,ewc+"; 这句函数执行时报错,以后用数组装字符串吧 char a[]= "asdasd,wewb,ewc+"; 阅读全文
posted @ 2021-03-06 20:45 Skyge 阅读(248) 评论(0) 推荐(0) 编辑
 

2021年2月23日

摘要: 众所周知,TCP/IP参考模型可以分为四层:应用层、传输层、网络层、链路层。TCP和UDP位于传输层, MQTT协议运行于TCP之上,属于应用层协议,因此只要是支持TCP/IP协议栈的地方,都可以使用MQTT。 阅读全文
posted @ 2021-02-23 09:37 Skyge 阅读(1760) 评论(0) 推荐(0) 编辑
 
摘要: // ip 层,提供寻址,寻路,根据ip地址为a的发给ip B。电脑不都有ip地址吗 ?很好理解,如何寻,想像发快递,有寄件人地址,收件人地址,路由器就是分拣中心。接口层,地址相当于快递包裹上我们的名字。一个人可以有很多地址(ip),但名字决定了发给某某。传输层,快递员送快递是丢下就在,还是亲收交。 阅读全文
posted @ 2021-02-23 09:17 Skyge 阅读(137) 评论(0) 推荐(0) 编辑
 
摘要: 做了一个服务端程序运行在接入internet的电脑上,另外有一个带有4G模块的硬件设备,系统是linux。我想让服务端程序与带有4G模块的硬件设备之间通信,传送文件那些的。 1,通信流程是怎么样的? PC端服务器程序监听某个端口,设备端通过SOCKET 连接这个服务器(服务器端需要公网地址) 2,是 阅读全文
posted @ 2021-02-23 08:17 Skyge 阅读(960) 评论(0) 推荐(0) 编辑
 

2021年2月22日

摘要: 资料网址: http://c.biancheng.net/view/1338.html https://www.cnblogs.com/Chary/p/11736497.html https://www.runoob.com/design-pattern/design-pattern-intro.h 阅读全文
posted @ 2021-02-22 10:09 Skyge 阅读(33) 评论(0) 推荐(0) 编辑
 

2021年2月6日

摘要: #include <stdlib.h>#include <stdarg.h>#include <string.h>#include <stdio.h>typedef struct teacher{ char * uu; int age; char *name;}T1;int fun(T1* d,ch 阅读全文
posted @ 2021-02-06 11:20 Skyge 阅读(164) 评论(0) 推荐(0) 编辑
 

2021年2月5日

摘要: #include <stdio.h>#include <stdarg.h> //求narg个整数的和int sum(int narg, ...){ va_list ap; //首先定义一个va_list类型的变量 va_start(ap, narg); //va_start 的第一个参数为va_li 阅读全文
posted @ 2021-02-05 11:35 Skyge 阅读(64) 评论(0) 推荐(0) 编辑
 

2021年1月31日

摘要: //all 可以清0整个结构体; 阅读全文
posted @ 2021-01-31 21:14 Skyge 阅读(87) 评论(0) 推荐(0) 编辑
 
上一页 1 ··· 4 5 6 7 8 9 10 11 下一页