嵌入式Linux
I will,
淡然地接受努力过后依旧普通的自己
展开
-
Linux(socket通信)--服务端与客户端编程
server.c#include <stdio.h> //printf perror#include <sys/socket.h> //socket blind listen accept connect#include <unistd.h> //read and write#include <sys/types.h> //size_t...原创 2019-11-17 22:53:16 · 231 阅读 · 0 评论 -
linux--4G模块pppd拨号(SIM700)
环境:友善之臂smart210标准Linux系统1、需要的配置文件及存放路径:文件1:gprs-connect-chat,放置路径:路径:/etc/ppp/文件2:gprsdial,放置路径:路径:/etc/ppp/peers/2、自动拨号设置:在/etc/init.d/ 下,编辑rcS文件,在文件末尾加入拨号指令pppd call gprsdial &即可3、断线...原创 2019-10-26 09:58:25 · 2815 阅读 · 0 评论 -
Linux--获取当前时间
一、说明: Linux内部对时间是用从Epoch时间开始计时的秒数来表示的。Epoch也就是通用协调时间(UTC,也就是格林尼治平均时间或格林威治标准时间,CMT)。Linux将这个数据存储在time_t结构体变量里。二、用到的函数:time()&localtime()函数1. time() 函数/* time - 获取计算机系统当前的日历时间(Calender Time) ...原创 2019-10-14 08:26:22 · 1607 阅读 · 0 评论 -
Linux C --串口编程
/*配置串口*/int set_com_config(int fd,int baud_rate,int data_bits, char parity, int stop_bits){ struct termios new_cfg,old_cfg; int speed;/*DESCRIPTION The termios functions describe a general...原创 2019-10-13 19:56:52 · 261 阅读 · 0 评论