zoukankan      html  css  js  c++  java
  • [4G]常用AT指令

    The GPRS communication module is controlled by terminal (e.g. H50) firmware. 

    The actions are mapped to  3 ~4 AT command, and one PPP process.
     
    1. Request GSM
        AT+CREG.
    2. Attached to GPRS network
        AT+CGATT
        AT+CGDCONT
    3. PPP process after *99***1#
     
    Our module control is very simple: AT commands. The following commands flow are applicable to the MC55, MC56 and SIMCOM's SIM300.

    Some recorded AT commands flows are...
    from China Mobile's SIM card (in H50+ MC55(?)) generated AT-log in Shanghai, captured on 
    Sat morning 1am+ at 19 Jun 2010:
    --------
    AT :     [Start-up confirmation that module will response AT command]
    ATE0V1 : [disable echo, detailed responses on]
    ATQ3                     [RTS/CTS hardware handshake on]
    at+csq                    [Signal quality]
    at+creg?                  [Network registration]
    AT+CIMI                   [Request International Mobile Subscriber Identity (IMSI)]
    AT+GSN                    [request International Mobile Equipment Identity (IMEI)]
    at+cgatt=1                [attach the terminal to GPRS service]
    at+cgatt?                 [Return the current GPRS service state]
    at+cgdcont=1,"IP","cmnet" [Define PDP Context]
    at+csq                    [Signal quality]
    atd*99***1#               [Request GPRS service]

    -----------------------------------------------------------------------------------------------------------------------

    如何不打开minicom获取AT指令的结果

    $ cat /dev/ttyUSB2 > result.log &

    $ echo "ATI" > /dev/ttyUSB2

  • 相关阅读:
    Mybatis缓存理解
    Spring Batch中job的启动,停止,放弃操作
    spring中xml配置方式和注解annoation方式(包括@autowired和@resource)的区别
    fastjson使用TypeReference示例
    RabbitMQ基础组件和SpringBoot整合RabbitMQ简单示例
    RabbitMQ中各种消息类型如何处理?
    消息队列RabbitMQ基础知识详解
    RabbitMQ的消息确认机制
    rsync+inotify-tools
    Linux Rsync
  • 原文地址:https://www.cnblogs.com/aaronLinux/p/7411067.html
Copyright © 2011-2022 走看看