Network & Protocols
  • Introduction
  • Chapter1: protocol for industrial
    • 1.1.modbus
  • Chapter2: Protocol for IOT
    • 2.1.MQTT
      • 2.1.1.Introduction: What is MQTT?
      • 2.1.2.Install mosquitto on Windows 7
      • 2.1.3.Install M2Mqtt by Nuget, Example code
  • Chapter3: Protocol for network
    • 3.1.網路模型與協定
    • 3.2.HTTP
      • 3.2.1.Basic concept
      • 3.2.2.Session & Cookie
    • 3.3.TCP/IP
    • 3.4.UDP
    • 3.5.子網路(subnet)
    • 3.6.子網路間的通訊
    • 3.7.路由
  • Chapter4: Protocol for Wireless network
    • 4.1.BLE, IBeacon
  • Chapter5: Cellular and Wifi
    • 5.1.Cellular module
      • 5.1.1.AT Command
      • 5.1.2.各家常用模組
        • 5.1.2.1.Cinterion
          • 5.1.2.1.1.PLS8-E
          • 5.1.2.1.2.PLS8-X
          • 5.1.2.1.3.PLS8-US
        • 5.1.2.2.Sierra
          • 5.1.2.2.1.MC-7354
        • 5.1.2.3.Telit
          • 5.1.2.3.1.LE910-EUG
          • 5.1.2.3.2.LE910-NAG
      • 5.1.3.用儀器測試Throughput
    • 5.2.MBIM for Windows
    • 5.3.Wireshark
      • 5.3.1.Capture filter
      • 5.3.2.Cli command
      • 5.3.3.Monitor mode
      • 5.3.4.Work with ssh
    • 5.4.LTE
      • 5.4.1.Introduction
      • 5.4.2.Types of networks
      • 5.4.3.Elements of access and core networks
      • 5.4.4.What's LTE different?
      • 5.4.5.LTE訊息傳輸
      • 5.4.6.3GPP (Generation Partnership Project)
      • 5.4.7.FDD, TDD, Half Duplex FDD
      • 5.4.8.Beared Types
Powered by GitBook
On this page

Was this helpful?

  1. Chapter5: Cellular and Wifi
  2. 5.1.Cellular module

5.1.1.AT Command

  • 1.AT+CPIN?

    • Description: 確認是否已輸入密碼

    • Success Response:

        +CPIN:READY
        OK
    • Error Response:

        +CPIN:  +CME ERROR: 
    • Example:

  • 2.AT+CSQ

    • Description: 取得模組的signal quality:+CSQ:</rssi/>,</ber/>

    • Mode:

      • 1.AT+CSQ?

        • returns the signal strength of the device

                    Value    RSSI dBm    Condition
                    2    -109    Marginal
                    3    -107    Marginal
                    4    -105    Marginal
                    5    -103    Marginal
                    6    -101    Marginal
                    7    -99    Marginal
                    8    -97    Marginal
                    9    -95    Marginal
                    10    -93    OK
                    11    -91    OK
                    12    -89    OK
                    13    -87    OK
                    14    -85    OK
                    15    -83    Good
                    16    -81    Good
                    17    -79    Good
                    18    -77    Good
                    19    -75    Good
                    20    -73    Excellent
                    21    -71    Excellent
                    22    -69    Excellent
                    23    -67    Excellent
                    24    -65    Excellent
                    25    -63    Excellent
                    26    -61    Excellent
                    27    -59    Excellent
                    28    -57    Excellent
                    29    -55    Excellent
                    30    -53    Excellent
      • 2.AT+CSQ=?

        • list of supporteds

    • Example:

        AT+CSQ?
        +CSQ:18,99
  • 3.AT+COPS?

    • Description: 指定或是取得模組的訊號種類(2G/3G/4G)

    • Mode:

      • 1.AT+COPS?

        • 取得目前模組的訊號種類

          • 0 GSM (2G)

          • 1 GSM Compact (2G)

          • 2 UTRAN (3G)

          • 3 GSM w/EGPRS (2.75G)

          • 4 UTRAN w/HSDPA (3.5G)

          • 5 UTRAN w/HSUPA (4G)

          • 6 UTRAN w/HSDPA and HSUPA (3.5G and 4G)

          • 7 E-UTRAN (3G)

  • 2.AT+COPS=?

    • list目前模組可用的訊號種類

  • 3.AT+COPS=[[, [,[,]]]]

    • 指定模組的訊號種類

      • 4.AT^SIND?

      • Description:

      • Mode:

      • 5.AT^SCFG?

      • Description:

      • Mode:

      • 6.AT+CGDCONT

      • 7.AT+CGCONTRDP

Previous5.1.Cellular moduleNext5.1.2.各家常用模組

Last updated 5 years ago

Was this helpful?