⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 dep_cfmakeraw.c

📁 pc 透過simens mobile phone 連線,可直接傳訊.
💻 C
字号:
/* * this should replace the functionality of cfmakeraw * it implements exactly what "man termios" says about it */#include "depincludes.h"int cfmakeraw(struct termios *termios_p) {  termios_p->c_iflag &= ~(IGNBRK|BRKINT|PARMRK|ISTRIP|INLCR|IGNCR|ICRNL|IXON);  termios_p->c_oflag &= ~OPOST;  termios_p->c_lflag &= ~(ECHO|ECHONL|ICANON|ISIG|IEXTEN);  termios_p->c_cflag &= ~(CSIZE|PARENB);  termios_p->c_cflag |= CS8;  return 1;}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -