• 树莓派的的串口通信协议


    首先,回顾一下串口的核心知识点,也是面试重点

    • 串口通信通常使用在多机通讯中
    • 串口通信是全双工的
    • 决定串口通信的成功与否的是 数据格式 和 波特率
    • 数据格式:1. 数据位 2.停止位 3. 奇偶校验位

    树莓派恢复串口

    回忆前几节树莓派刷机的开端,为了能通过串口连接到树莓派,事先将串口设置为了系统交互的方式,这会导致无法进行正常的串口的开发,况且现在已经成功可以使用SSH登录,所以可以将串口设置回来了:

    • 修改 /boot/cmdline.txt:
    1. 1. sudo vi /boot/cmdline.txt
    2. 2. 将“console=serial,115200”删除

    • sudo reboot重启 

    设置完成!

    树莓派的串口开发

    再打开串口后,由于都是基于wiringPi库,所以串口开发和香橙派的也是一样一样的,这里我直接把在香橙派写好的串口开发文件上传过来然后直接开始写:

    (注意,树莓派的串口驱动文件是/dev/下的ttyAMA0

    mjm_uart_tool.c:

    1. #include
    2. #include
    3. #include
    4. #include
    5. #include
    6. #include
    7. #include
    8. #include
    9. #include
    10. #include
    11. #include
    12. #include "wiringSerial.h"
    13. int myserialOpen (const char *device, const int baud)
    14. {
    15. struct termios options ;
    16. speed_t myBaud ;
    17. int status, fd ;
    18. switch (baud){
    19. case 9600: myBaud = B9600 ; break ;
    20. case 115200: myBaud = B115200 ; break ;
    21. }
    22. if ((fd = open (device, O_RDWR | O_NOCTTY | O_NDELAY | O_NONBLOCK)) == -1)
    23. return -1 ;
    24. fcntl (fd, F_SETFL, O_RDWR) ;
    25. // Get and modify current options:
    26. tcgetattr (fd, &options) ;
    27. cfmakeraw (&options) ;
    28. cfsetispeed (&options, myBaud) ;
    29. cfsetospeed (&options, myBaud) ;
    30. options.c_cflag |= (CLOCAL | CREAD) ;
    31. options.c_cflag &= ~PARENB ;
    32. options.c_cflag &= ~CSTOPB ;
    33. options.c_cflag &= ~CSIZE ;
    34. options.c_cflag |= CS8 ;
    35. options.c_lflag &= ~(ICANON | ECHO | ECHOE | ISIG) ;
    36. options.c_oflag &= ~OPOST ;
    37. options.c_cc [VMIN] = 0 ;
    38. options.c_cc [VTIME] = 100 ; // Ten seconds (100 deciseconds)
    39. tcsetattr (fd, TCSANOW, &options) ;
    40. ioctl (fd, TIOCMGET, &status);
    41. status |= TIOCM_DTR ;
    42. status |= TIOCM_RTS ;
    43. ioctl (fd, TIOCMSET, &status);
    44. usleep (10000) ; // 10mS
    45. return fd ;
    46. }
    47. void serialSendstring (const int fd, const char *s)
    48. {
    49. int ret;
    50. ret = write (fd, s, strlen (s));
    51. if (ret < 0)
    52. printf("Serial Puts Error\n");
    53. }
    54. int serialGetstring (const int fd, char *buffer)
    55. {
    56. int n_read;
    57. n_read = read(fd, buffer,32);
    58. return n_read;
    59. }
    60. int serialDataAvail (const int fd)
    61. {
    62. int result ;
    63. if (ioctl (fd, FIONREAD, &result) == -1)
    64. return -1 ;
    65. return result ;
    66. }

    mjm_uart_tool.h:

    1. int myserialOpen (const char *device, const int baud);
    2. void serialSendstring (const int fd, const char *s);
    3. int serialGetstring (const int fd, char *buffer);
    4. int serialDataAvail (const int fd);

    serial_mjm_test.c:

    1. #include
    2. #include
    3. #include
    4. #include
    5. #include
    6. #include
    7. #include
    8. #include
    9. #include
    10. #include
    11. #include
    12. #include
    13. #include
    14. #include
    15. #include "mjm_uart_tool.h"
    16. void *write_serial(void *arg)
    17. {
    18. char *sendbuf;
    19. sendbuf = (char *)malloc(32*sizeof(char));
    20. while(1){
    21. memset(sendbuf,'\0',32*sizeof(char));
    22. fgets(sendbuf,sizeof(sendbuf),stdin);
    23. serialSendstring (*((int *)arg), sendbuf) ;
    24. }
    25. pthread_exit(NULL);
    26. }
    27. void *read_serial(void *arg)
    28. {
    29. char readbuf[32] = {'\0'};
    30. while(1){
    31. while(serialDataAvail (*((int *)arg))){
    32. serialGetstring (*((int *)arg),readbuf) ;
    33. printf("-> %s\n",readbuf);
    34. memset(readbuf,'\0',32);
    35. }
    36. }
    37. pthread_exit(NULL);
    38. }
    39. int main ()
    40. {
    41. int fd ;
    42. int ret;
    43. pthread_t read_thread;
    44. pthread_t write_thread;
    45. if ((fd = myserialOpen ("/dev/ttyAMA0", 115200)) < 0) //打开驱动文件,配置波特率
    46. {
    47. fprintf (stderr, "Unable to open serial device: %s\n", strerror (errno)) ;
    48. return 1 ;
    49. }
    50. /* if (wiringPiSetup () == -1)
    51. {
    52. fprintf (stdout, "Unable to start wiringPi: %s\n", strerror (errno)) ;
    53. return 1 ;
    54. }*/
    55. ret = pthread_create(&read_thread,NULL,read_serial,(void *)&fd);
    56. if(ret != 0){
    57. printf("read_serial create error\n");
    58. return 1;
    59. }
    60. ret = pthread_create(&write_thread,NULL,write_serial,(void *)&fd);
    61. if(ret != 0){
    62. printf("write_serial create error\n");
    63. return 1;
    64. }
    65. pthread_join(read_thread,NULL);
    66. pthread_join(write_thread,NULL);
    67. return 0 ;
    68. }

    编译

    由于此处实现的串口函数是我参考wiringPi库自己实现的,所以无需链wiringPi库,只需链线程库就ok

    gcc serial_mjm_test.c mjm_uart_tool.c -lpthread

    运行效果

    可见,轻松的实现了通讯效果!

    封装动态库 

    由于这里使用的是我自己封装的串口函数,所以可以根据上上节的知识将它封装成动态库:

    详见我之前的博文:

    使用树莓派学习Linux系统编程的 --- 库编程(面试重点)-CSDN博客

    • 生成动态库,命名为“mjmserial
    gcc -shared -fpic mjm_uart_tool.c -o libmjmserial.so
    
    •  编译main函数所在C文件,链库,将可执行文件命名为“serialtest”:
    gcc serial_mjm_test.c -L ./ -lmjmserial -lpthread -o serialtest
    • 此时可以使用环境变量的方法指定动态库搜索路径或者直接复制动态库到/usr/lib下,由于后者上节实现过了,这次尝试前者:

    写一个脚本:

    1. 1. vi serialtest.sh
    2. 2. 内容为:“
    3. export LD_LIBRARY_PATH="/home/pi/mjm_code/"
    4. ./serialtest”
    5. 3. chmod +x serialtest.sh

    • 最后直接执行“ ./serialtest.sh ”:

    可见,运行成功! 此时我只需要提供动态库的.so文件和.h文件给别人,别人就可以调用我封装好的串口函数了,并且别人无法看到我封装函数的具体实现

  • 相关阅读:
    python爬取boss直聘数据(selenium+xpath)
    Java反射的详细解析之三
    Android 动画
    2023全新付费进群系统源码 带定位完整版 附教程
    【python基础】类-初识类
    父组件给子组件传值动态传入的值一直显示的都是第一次传入的值,vue子组件监听父组件的传值
    a++和++a
    【CPP】数组名与指针
    Redis应用(8)——Redis的项目应用:结合SpringBoot如何在Redis里面存对象 & RedisUtil工具类的封装 & 遇到的问题
    【自动化测试】selenium工具
  • 原文地址:https://blog.csdn.net/mjmmm/article/details/134523244