Linux下讀取RFID卡號(C串口編程)
由於項目需要用到RFID、GPRS、攝像頭等模塊所以便看了一下,整理了一下學習思路,本篇先是整理一下串口讀取RFID卡號的程序思路,後面還會更其他的
RFID模塊:
本次采用的是125K的RFID讀卡器和標簽,很容易理解的,其實就是一張卡片裏面存了一串數字(這個問題有點像你問一個藝術家洛必達法則是啥咦洛必達是啥),然後有個讀卡器,當你把卡片放到讀卡器上時,讀卡器會將卡裏面存的卡號讀取出來,然後放到串口發送緩沖區,等待我們去讀取,那麽問題就是怎麽讀取。
串口讀寫:
大家都知道。linux下面一切皆文件,設備也不例外,上面提到的串口就是個設備文件,linux設備文件一般存放在“/dev/”下,當你ls的時候會發現一大堆什麽ttyS0、sda、video....現在筆記本串口設備文件一般都是ttyUSBx(x=0,1,2...)。既然是文件,那就能打開嘍,不過它不是被“右鍵->打開”,而是被“系統調用open()”。當然不只是把它打開就完了,操作串口有一系列的系統調用。說到系統調用,其實就是系統底層給在上層編寫程序的你提供的一些系統級函數。
一些需要的頭文件:
[cpp] view plain copy
- #include <unistd.h> /*linux系統調用*/
- #include <stdlib.h>
- #include <stdio.h>
- #include <string.h>
- #include <fcntl.h> /*文件控制*/
- #include <sys/stat.h> /*文件狀態*/
- #include <sys/types.h> /*定義系統類型,像size_t等*/
- #include <errno.h> /*出錯碼*/
- #include <termios.h> /*終端參數*/
1.打開串口
這裏把open()這個系統調用封裝成一個com_open()函數,可以方便判斷是否打開成功並打印錯誤信息。
參數*DEV是文件路徑(上面提到的/dev/ttyUSBx),第二個參數告訴它是以什麽方式打開,常見的有:
O_RDONLY 只讀
O_WRONLY 只寫
O_RDWR 讀寫
註:上面的三個不能同時出現,即不能這樣寫O_RDONLY | O_RDWR,像下面這些是可選的:
O_NOCTTY 如果路徑名指向終端設備,不要把這個設備用作控制終端。
O_NONBLOCK 阻塞模式(詳見配置串口處)
open()返回值是int型fd文件描述符,對於內核而言,所有打開的文件都通過文件描述符引用。文件描述符是一個非負整數。當打開一個現有文件或創建一個新文件時,內核向進程返回一個文件描述符(0~255,不過有些是系統已經占用的),這個文件描述符用來告訴我們要對哪個文件進行操作。
[cpp] view plain copy
- int com_open(const char *DEV)
- {
- int fd = -1;
- open(DEV, O_RDWR);
- if(fd == -1)
- {
- perror("open error");
- exit(0);
- }
- return fd;
- }
2.配置串口
設置串口屬性(類似於約定好雙方通信協議),即上面提到的配置串口,其實主要就是設置termios.h中的termios結構體參數:
[cpp] view plain copy
- typedef struct com_attr /*我自己定義的串口屬性結構*/
- {
- unsigned int baudrate; /*波特率*/
- unsigned char databits; /*數據位*/
- unsigned char stopbits; /*停止位*/
- unsigned char parity; /*校驗位*/
- }com_attr;
[cpp] view plain copy
- struct termios /*termios結構,其實終極目的就是把我們自己定義的結構屬性設置到這裏面去*/
- {
- tcflag_t c_iflag; //輸入模式標誌
- tcflag_t c_oflag; //輸出模式標誌
- tcflag_t c_cflag; //控制模式標誌
- tcflag_t c_lflag; //本地模式標誌
- cc_t c_line; //line discipline
- cc_t c_cc[NCC]; //control characters
- }
可以看到兩個參數,第一個文件描述符,告訴它你想在個文件操作,第二個是我定義的串口屬性結構體:
註:由於項目需要,可能有些不必要的參數我就沒有去設置和解釋,詳細可以google一下配置串口屬性結構體詳細介紹!
[cpp] view plain copy- int set_com_attr(int fd, com_attr *attr)
- {
- struct termios opt;
- memset(&opt, 0, sizeof(struct termios));
- tcgetattr(fd, &opt);
- cfmakeraw(&opt);
- /*******************波特率********************/
- printf("set baudrate %d\n", attr->baudrate);
- switch (attr->baudrate)
- {
- case 50:
- cfsetispeed(&opt, B50);
- cfsetospeed(&opt, B50);
- break;
- case 75:
- cfsetispeed(&opt, B75);
- cfsetospeed(&opt, B75);
- break;
- case 110:
- cfsetispeed(&opt, B110);
- cfsetospeed(&opt, B110);
- break;
- case 134:
- cfsetispeed(&opt, B134);
- cfsetospeed(&opt, B134);
- break;
- case 150:
- cfsetispeed(&opt, B150);
- cfsetospeed(&opt, B150);
- break;
- case 200:
- cfsetispeed(&opt, B200);
- cfsetospeed(&opt, B200);
- break;
- case 300:
- cfsetispeed(&opt, B300);
- cfsetospeed(&opt, B300);
- break;
- case 600:
- cfsetispeed(&opt, B600);
- cfsetospeed(&opt, B600);
- break;
- case 1200:
- cfsetispeed(&opt, B1200);
- cfsetospeed(&opt, B1200);
- break;
- case 1800:
- cfsetispeed(&opt, B1800);
- cfsetospeed(&opt, B1800);
- break;
- case 2400:
- cfsetispeed(&opt, B2400);
- cfsetospeed(&opt, B2400);
- break;
- case 4800:
- cfsetispeed(&opt, B4800);
- cfsetospeed(&opt, B4800);
- break;
- case 9600:
- cfsetispeed(&opt, B9600);
- cfsetospeed(&opt, B9600);
- break;
- case 19200:
- cfsetispeed(&opt, B19200);
- cfsetospeed(&opt, B19200);
- break;
- case 38400:
- cfsetispeed(&opt, B38400);
- cfsetospeed(&opt, B38400);
- break;
- case 57600:
- cfsetispeed(&opt, B57600);
- cfsetospeed(&opt, B57600);
- break;
- case 115200:
- cfsetispeed(&opt, B115200);
- cfsetospeed(&opt, B115200);
- break;
- case 230400:
- cfsetispeed(&opt, B230400);
- cfsetospeed(&opt, B230400);
- break;
- case 460800:
- cfsetispeed(&opt, B460800);
- cfsetospeed(&opt, B460800);
- break;
- case 500000:
- cfsetispeed(&opt, B500000);
- cfsetospeed(&opt, B500000);
- break;
- case 576000:
- cfsetispeed(&opt, B576000);
- cfsetospeed(&opt, B576000);
- break;
- case 921600:
- cfsetispeed(&opt, B921600);
- cfsetospeed(&opt, B921600);
- break;
- case 1000000:
- cfsetispeed(&opt, B1000000);
- cfsetospeed(&opt, B1000000);
- break;
- case 1152000:
- cfsetispeed(&opt, B1152000);
- cfsetospeed(&opt, B1152000);
- break;
- case 1500000:
- cfsetispeed(&opt, B1500000);
- cfsetospeed(&opt, B1500000);
- break;
- case 2000000:
- cfsetispeed(&opt, B2000000);
- cfsetospeed(&opt, B2000000);
- break;
- case 2500000:
- cfsetispeed(&opt, B2500000);
- cfsetospeed(&opt, B2500000);
- break;
- case 3000000:
- cfsetispeed(&opt, B3000000);
- cfsetospeed(&opt, B3000000);
- break;
- case 3500000:
- cfsetispeed(&opt, B3500000);
- cfsetospeed(&opt, B3500000);
- break;
- case 4000000:
- cfsetispeed(&opt, B4000000);
- cfsetospeed(&opt, B4000000);
- break;
- default:
- printf("unsupported baudrate %d\n", attr->baudrate);
- return FALSE;
- break;
- }
- /************************校驗位************************/
- switch (attr->parity)
- {
- case COMM_NOPARITY:
- opt.c_cflag &= ~PARENB;
- opt.c_iflag &= ~INPCK;
- break;
- case COMM_ODDPARITY:
- opt.c_cflag |= PARENB;
- opt.c_cflag |= PARODD;
- opt.c_iflag |= INPCK;
- break;
- case COMM_EVENPARITY:
- opt.c_cflag |= PARENB;
- opt.c_cflag &= ~PARODD;
- opt.c_iflag |= INPCK;
- default:
- printf("unsupported parity %d\n", attr->parity);
- return FALSE;
- break;
- }
- opt.c_cflag &= ~CSIZE; /*無論設置多少校驗位都需要的*/
- /*******************數據位*****************/
- switch (attr->databits)
- {
- case 5:
- opt.c_cflag |= CS5;
- break;
- case 6:
- opt.c_cflag |= CS6;
- break;
- case 7:
- opt.c_cflag |= CS7;
- break;
- case 8:
- opt.c_cflag |= CS8;
- break;
- default:
- printf("unsupported data bits %d\n", attr->databits);
- return FALSE;
- break;
- }
- opt.c_cflag &= ~CSTOPB;
- /*******************停止位***************/
- switch (attr->stopbits)
- {
- case COMM_ONESTOPBIT:
- opt.c_cflag &= ~CSTOPB;
- break;
- case COMM_TWOSTOPBITS:
- opt.c_cflag |= CSTOPB;
- break;
- default:
- printf("unsupported stop bits %d\n", attr->stopbits);
- return FALSE;
- break;
- }
- /*等待時間,阻塞模式下設置的*/
- //opt.c_cc[VTIME] = 0; /*設置超時時間*/
- //opt.c_cc[VMIN] = 1;
- opt.c_iflag &= ~(ICRNL | INLCR);
- opt.c_iflag &= ~(IXON | IXOFF | IXANY);/*關閉軟件流控(一般都是關閉軟硬流控,我也不知道為啥)*/
- tcflush(fd, TCIOFLUSH); //刷清緩沖區
- if (tcsetattr(fd, TCSANOW, &opt) < 0)
- {
- printf("tcsetattr faild\n");
- return FALSE;
- }
- return TRUE;
- }
當以阻塞模式打開時也可以通過修改結構體termios來改變位非阻塞模式或者通過函數fcntl()函數:
阻塞:fcntl(fd, F_SETFL, 0)
對於read,阻塞指當串口輸入緩沖區沒有數據的時候,read函數將會阻塞在這裏,直到串口輸入緩沖區中有數據可讀取時read讀到了需要的字節數之後,返回值為讀到的字節數;對於write,指當串口輸出緩沖區滿或剩下的空間小於將要寫入的字節數,write函數將阻塞在這裏,一直到串口輸出緩沖區中剩下的空間大於等於將要寫入的字節數,執行寫入操作,返回寫入的字節數。
註:控制符VTIME定義要等待的時間t(百毫秒),VMIN定義了要等待的最小字節數n,以下幾種情況:
VTIME=0,VMIN=n,read必須在讀取了VMIN個字節的數據或者收到一個信號才會返回。
VTIME=t,VMIN=0,不管能否讀取到數據,read也要等待VTIME的時間量。
VTIME=t,VMIN=n,那麽將從read讀取第一個字節的數據時開始計時,並會在讀取到VMIN個字節或者VTIME時間後返回。
VTIME=0,VMIN=0,不管能否讀取到數據,read都會立即返回。
非阻塞的定義:fcntl(fd, F_SETFL,FNDELAY)
當串口輸入緩沖區沒有數據的時候,read函數立即返回,返回值為0。
[cpp] view plain copy- void get_com_attr(int fd)
- {
- struct termios opt;
- if(fd < 0)
- {
- printf("get_com_attr error");
- exit(0);
- }
- memset(&opt, 0, sizeof(struct termios));
- tcgetattr(fd, &opt);
- cfmakeraw(&opt);
- }
有必要說一下int tcsetattr(int fd, int optional_actions, const struct termios *termios_p)
int tcgetattr(int fd, struct termios *termios_p)
tcgetattr函數用於獲取與終端相關的參數。參數fd為終端的文件描述符,結果保存在termios結構體中。
tcsetattr函數用於設置終端的相關參數。參數optional_actions用於控制修改起作用的時間,而結構體termios_p中保存了要修改的參數;
optional_actions可以取如下的值:
TCSANOW:不等數據傳輸完畢就立即改變屬性。
TCSADRAIN:等待所有數據傳輸結束才改變屬性。
TCSAFLUSH:清空輸入輸出緩沖區才改變屬性。
3.讀取串口
這裏也是將read()系統調用封裝成com_read(),當我們設置好通訊協議了(串口屬性),就可以對串口進行讀寫了。
參數一fd就不用說了,第二個參數read_buff從名字看出就是要把數據讀到這個緩沖區中,第三個參數是你想要讀多少字節,註意是”你想要“,而返回值則是讀到的真正字節數,當你讀到末尾(假如緩沖區有10個字節,而你想要讀20個)或者出現異常中斷了讀操作,就會出現返回值ret(return) != nbytes。
[cpp] view plain copy- int com_read(int fd, unsigned char *read_buff, unsigned int nbytes)
- {
- int ret;
- if(fd < 0)
- {
- printf("com_read error");
- exit(0);
- }
- ret = read(fd, read_buff, nbytes);
- return ret;
- }
4.寫入串口
道理和寫差不多
[cpp] view plain copy
- int com_write(int fd, BYTE *write_buff, DWORD nbytes)
- {
- int ret;
- if(fd < 0)
- {
- printf("com_write error");
- exit(0);
- }
- ret = write(fd, write_buff, nbytes);
- return ret;
- }
5.關閉串口
記得每次操作完串口要關閉串口(當然了,當你操作多個文件時可別操作錯了文件描述符,那就gg了)
[cpp] view plain copy
- void com_close(int fd)
- {
- if(fd < 0)
- {
- printf("com_close error");
- exit(0);
- }
- close(fd);
- }
好了,萬事具備,下面就可以插上設備刷卡讀卡號啦(註意看清你的設備ttyUSBx中的x是多少啊),具體讀卡號函數就看大家的具體需求啦。
由於博主的項目需求是要將卡號變成一個字符串然後再填充到另一個字符串,然後再巴拉巴拉,可是這個卡號讀出來是一串16進制數據,所以想了半天決定用類型轉換(不過聽說可以用fprintf)。
Linux下讀取RFID卡號(C串口編程)