3 Star 3 Fork 3

monkeyWzr/zmr

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
close.c 430 Bytes
一键复制 编辑 原始数据 按行查看 历史
#include "SendUART.h"
int nFd = 0;
struct termios stNew;
struct termios stOld;
void main()
{
nFd = open(DEVICE, O_RDWR|O_NOCTTY|O_NDELAY);
if(-1 == nFd)
{
perror("Open Serial Port Error!\n");
}
if( (fcntl(nFd, F_SETFL, 0)) < 0 )
{
perror("Fcntl F_SETFL Error!\n");
}
if(tcgetattr(nFd, &stOld) != 0)
{
perror("tcgetattr error!\n");
}
close(nFd);
printf("updated\n");
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
PHP
1
https://gitee.com/monkeywzr/zmr.git
git@gitee.com:monkeywzr/zmr.git
monkeywzr
zmr
zmr
master

搜索帮助