guowenxue
2024-06-02 eaa90c75a6b4981dbbb15e3ebf851c056bf015c9
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
/*********************************************************************************
 *      Copyright:  (C) 2024 LingYun IoT System Studio
 *                  All rights reserved.
 *
 *       Filename:  ttyS_test.c
 *    Description:  This file is comport loop back test program
 *
 *        Version:  1.0.0(05/24/2024)
 *         Author:  Guo Wenxue <guowenxue@gmail.com>
 *      ChangeLog:  1, Release initial version on "05/24/2024 07:38:43 PM"
 *
 ********************************************************************************/
 
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include <fcntl.h>
#include <errno.h>
#include <termios.h>
#include <pthread.h>
 
#define DEV_NAME    "/dev/ttymxc1"
#define MSG         "Hello, LingYun IoT System Studio!"
 
int main(int argc, char **argv)
{
    struct termios      tty;
    int                 serial_fd;
    int                 bytes;
    char                read_buf[64];
 
    /*+-------------------------+
      |    Open Serial Port     |
      +-------------------------+*/
    serial_fd = open(DEV_NAME, O_RDWR );
    if (serial_fd == -1)
    {
        printf("Open '%s' failed: %s\n", DEV_NAME, strerror(errno));
        return 0;
    }
 
    /*+-------------------------+
      |  Configure Serial Port  |
      +-------------------------+*/
 
    tcgetattr(serial_fd, &tty);// read current serial port settings
 
    tty.c_cflag &= ~PARENB;    // Clear parity bit, disabling parity (most common)
    tty.c_cflag &= ~CSTOPB;    // Clear stop field, only one stop bit used in communication (most common)
    tty.c_cflag &= ~CSIZE;     // Clear all bits that set the data size
    tty.c_cflag |= CS8;        // 8 bits per byte (most common)
    tty.c_cflag &= ~CRTSCTS;   // Disable RTS/CTS hardware flow control (most common)
    tty.c_cflag |= CREAD | CLOCAL; // Turn on READ & ignore ctrl lines (CLOCAL = 1)
 
    tty.c_lflag &= ~ICANON;
    tty.c_lflag &= ~ECHO;      // Disable echo
    tty.c_lflag &= ~ECHOE;     // Disable erasure
    tty.c_lflag &= ~ECHONL;    // Disable new-line echo
    tty.c_lflag &= ~ISIG;      // Disable interpretation of INTR, QUIT and SUSP
    tty.c_iflag &= ~(IXON | IXOFF | IXANY); // Turn off s/w flow ctrl
    tty.c_iflag &= ~(IGNBRK|BRKINT|PARMRK|ISTRIP|INLCR|IGNCR|ICRNL); // Disable any special handling of received bytes
 
    tty.c_oflag &= ~OPOST;     // Prevent special interpretation of output bytes (e.g. newline chars)
    tty.c_oflag &= ~ONLCR;     // Prevent conversion of newline to carriage return/line feed
 
    tty.c_cc[VTIME] = 10;      // Wait for up to 1s (10 deciseconds), returning as soon as any data is received.
    tty.c_cc[VMIN] = 0;
 
    /* Set in/out baud rate to be 115200 */
    cfsetispeed(&tty, B115200);
    cfsetospeed(&tty, B115200);
 
    tcsetattr(serial_fd, TCSANOW, &tty);
 
    /*+-------------------------+
      |   Write to Serial Port  |
      +-------------------------+*/
    write(serial_fd, MSG, strlen(MSG));
    printf("Send MSG    : %s\n", MSG);
 
    /*+-------------------------+
      |  Read from Serial Port  |
      +-------------------------+*/
    /* 
     * The behaviour of read() (e.g. does it block?, how long does it block for?)
     * depends on the configuration settings above, specifically VMIN and VTIME
     */
    memset(&read_buf, '\0', sizeof(read_buf));
    bytes =  read(serial_fd, &read_buf, sizeof(read_buf));
    if (bytes< 0)
    {
        printf("Error reading: %s", strerror(errno));
        goto cleanup;
    }
 
    printf("Received MSG: %s\n", read_buf);
 
    /*+-------------------------+
      |   close Serial Port     |
      +-------------------------+*/
 
cleanup:
    close(serial_fd);
    return 0; // success
}