Linux 串口應用簡單開發

Linux 串口配置,簡單寫操作: 

#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <termios.h>
#include <stdlib.h>
#include <stdio.h>
#include <unistd.h>

#define UART_PATH       "/dev/ttyS0"

int openPort()
{
    int temp_fd;
    int speed = B115200;              //115200

    /open serial port
    temp_fd = open(UART_PATH, O_RDWR | O_NOCTTY);
    if (temp_fd < 0) {
        ALOGE("Open %s error !", UART_PATH);
        return temp_fd;
    }

    struct termios tio;
    if (tcgetattr(temp_fd, &tio)){
        memset(&tio, 0, sizeof(tio));
    }
    tio.c_cflag =  speed | CS8 | CLOCAL | CREAD;
    tio.c_oflag &= ~OPOST;
    tio.c_iflag = IGNPAR;
    tio.c_lflag = 0;
    tio.c_cc[VTIME] = 0;
    tio.c_cc[VMIN] = 1;
    tcsetattr(temp_fd, TCSANOW, &tio);
    tcflush(temp_fd, TCIFLUSH);

    return temp_fd;
}

void writeUartFunc(int fd)
{
    int i, temp;
    char closeData[10] = {0x21, 0x23, 0x41, 0x4F, 0x09, 0x00, 0x43, 0x30, 0x00, 0x0D};

    temp = closeData[0];
    for (i=1; i<8; i++)
    {
        temp ^= closeData[i];
    }
    closeData[8] = temp;       // checksum

    //send heart beat packet data
    write(fd, closeData, 10);
}

int main(int argc, char* const argv[])
{
    int fd;
    fd = openPort();
    if (fd < 0)
    {
        ALOGE("Open uart error, exit now !");
        return -1;
    }

    writeUartFunc(fd);
    close(fd);
}

 

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章