busybox microcom

简介: /************************************************************************* * busybox microcom * 说明: * 有时候我们可能仅仅是在嵌入系统里使用一下串口,看是否有数据存在, * 而这种情况下,没有必要花大把的时间去自己搞一个命令行的串口工具,于是 * busybox 提供的microcom就是一个很好的工具。
/*************************************************************************
 *                       busybox microcom
 * 说明:
 *     有时候我们可能仅仅是在嵌入系统里使用一下串口,看是否有数据存在,
 * 而这种情况下,没有必要花大把的时间去自己搞一个命令行的串口工具,于是
 * busybox 提供的microcom就是一个很好的工具。
 *
 *                                        2016-2-2 深圳 南山平山村 曾剑锋
 ************************************************************************/

一、参考文章:
    1. Linux Busybox Minicom简单用法
        http://blog.sina.com.cn/s/blog_67c9a89901019z3c.html
    2. Busybox microcom
        https://lnguin.wordpress.com/2013/05/06/busybox-microcom/

二、busybox microcom help:
    root@android:/ # busybox microcom -h                                         
    microcom: invalid option -- 'h'
    BusyBox v1.15.3 (2011-11-25 17:55:55 CST) multi-call binary
    
    Usage: microcom [-d DELAY] [-t TIMEOUT] [-s SPEED] [-X] TTY
    
    Copy bytes for stdin to TTY and from TTY to stdout
    
    Options:
            -d      Wait up to DELAY ms for TTY output before sending every
                    next byte to it
            -t      Exit if both stdin and TTY are silent for TIMEOUT ms
            -s      Set serial line to SPEED
            -X      Disable special meaning of NUL and Ctrl-X from stdin
    
    root@android:/ # 

三、android下GPS模块测试:
    root@android:/ # busybox microcom -t 5000 -s 9600 /dev/ttymxc1
    $GPGGA,,,,,,0,00,,,M,0.0,M,,0000*48
    $GPGSA,A,1,,,,,,,,,,,,,,,*1E
    $GPGSV,3,1,12,01,00,000,,02,00,000,,03,00,000,,04,00,000,*7C
    $GPGSV,3,2,12,05,00,000,,06,00,000,,07,00,000,,08,00,000,*77
    $GPGSV,3,3,12,09,00,000,,10,00,000,,11,00,000,,12,00,000,*71
    $GPRMC,,V,,,,,,,,,,N*53
    $GPGGA,,,,,,0,00,,,M,0.0,M,,0000*48
    $GPGSA,A,1,,,,,,,,,,,,,,,*1E
    $GPRMC,,V,,,,,,,,,,N*53
    $GPGGA,,,,,,0,00,,,M,0.0,M,,0000*48
    $GPGSA,A,1,,,,,,,,,,,,,,,*1E
    $GPRMC,,V,,,,,,,,,,N*53
    $GPGGA,,,,,,0,00,,,M,0.0,M,,0000*48
    $GPGSA,A,1,,,,,,,,,,,,,,,*1E
    $GPRMC,,V,,,,,,,,,,N*53
    $GPGGA,,,,,,0,00,,,M,0.0,M,,0000*48
    $GPGSA,A,1,,,,,,,,,,,,,,,*1E
    $GPRMC,,V,,,,,,,,,,N*53
    $GPGGA,,,,,,0,00,,,M,0.0,M,,0000*48
    $GPGSA,A,1,,,,,,,,,,,,,,,*1E
    $GPGSV,3,1,12,01,00,000,,02,00,000,,03,00,000,,04,00,000,*7C
    $GPGSV,3,2,12,05,00,000,,06,00,000,,07,00,000,,08,00,000,*77
    $GPGSV,3,3,12,09,00,000,,10,00,000,,11,00,000,,12,00,000,*71
    $GPRMC,,V,,,,,,,,,,N*53
    $GPGGA,,,,,,0,00,,,M,0.0,M,,0000*48
    $GPGSA,A,1,,,,,,,,,,,,,,,*1E
    $GPRMC,,V,,,,,,,,,,N*53
    $GPGGA,,,,,,0,00,,,M,0.0,M,,0000*48
    $GPGSA,A,1,,,,,,,,,,,,,,,*1E
    $GPRMC,,V,,,,,,,,,,N*53
    $GPGGA,,,,,,0,00,,,M,0.0,M,,0000*48
    $GPGSA,A,1,,,,,,,,,,,,,,,*1E

四、exit(quit) microcom:
    Ctrl-x to exit. 

 

目录
相关文章
|
网络协议 应用服务中间件 Shell
21-Docker-常用命令详解-docker run
21-Docker-常用命令详解-docker run
|
Linux Docker 容器
19-Docker-常用命令详解-docker exec
19-Docker-常用命令详解-docker exec
|
NoSQL 应用服务中间件 Shell
【Docker】基本命令详解
【Docker】基本命令详解
129 1
|
Docker 容器
25-Docker-常用命令详解-docker images
25-Docker-常用命令详解-docker images
|
应用服务中间件 Docker 容器
22-Docker-常用命令详解-docker pull
22-Docker-常用命令详解-docker pull
|
Docker 容器
20-Docker-常用命令详解-docker attach
20-Docker-常用命令详解-docker attach
|
Docker 容器
docker中命令docker images
docker中命令docker images
|
存储 自然语言处理 Ubuntu
Docker unionfs(overlayfs) 实现 rootfs
Docker unionfs(overlayfs) 实现 rootfs
525 0
|
Linux Shell Docker
Alpine Docker 安装 bash
Alpine Linux是一个轻型Linux发行版,它不同于通常的Linux发行版,Alpine采用了musl libc 和 BusyBox以减少系统的体积和运行时的资源消耗。
5566 0
|
Java 应用服务中间件 Shell
Docker(三):Dockerfile 命令详解
上一篇文章Docker(二):Dockerfile 使用介绍介绍了 Dockerfile 的使用,这篇文章我们来继续了解 Dockerfile ,学习 Dockerfile 各种命令的使用。 Dockerfile 指令详解 1 FROM 指定基础镜像 FROM 指令用于指定其后构建新镜像所使用的基础镜像。
1684 0