• Categories
  • Recent
  • Tags
  • Popular
  • Users
  • Groups
  • Register
  • Login
ModalAI Forum
  • Categories
  • Recent
  • Tags
  • Popular
  • Users
  • Groups
    • Register
    • Login

    Forcing 4G Only

    Ask your questions right here!
    2
    3
    209
    Loading More Posts
    • Oldest to Newest
    • Newest to Oldest
    • Most Votes
    Reply
    • Reply as topic
    Log in to reply
    This topic has been deleted. Only users with topic management privileges can see it.
    • C
      Chuck Bokath
      last edited by 26 Apr 2021, 18:56

      Hello,

      Is there a way to force the LTE modem into only looking at 4G and below networks? Also, Is there any info/site/manual/info to script AT Cmds directed at the modem itself to get stats?

      Thank You!
      Chuck

      1 Reply Last reply Reply Quote 0
      • T
        tom admin
        last edited by 26 Apr 2021, 19:29

        @Chuck-Bokath Here is a link to a download page for the AT commands available for the Sierra WP7610: https://source.sierrawireless.com/resources/airprime/software/airprime_wpx5xx_wp76xx_wp77xx_at_command_reference/#

        And here is an example of how to call an AT command and read back output in a simple bash script. We use things like this as a quick way to monitor cellular coverage.

        # AT Command for monitoring network coverage
        #!/bin/bash
        while true; do
        	date
        	echo -ne "AT+QENG=\"servingcell\"\r" | busybox microcom -t 1000 /dev/ttyUSB2
                echo -e "-----------------------------------------------------------------\n"
                sleep 5
        done
        
        1 Reply Last reply Reply Quote 0
        • C
          Chuck Bokath
          last edited by 26 Apr 2021, 21:54

          Thanks you. I'll give it a try

          1 Reply Last reply Reply Quote 0
          1 out of 3
          • First post
            1/3
            Last post
          Powered by NodeBB | Contributors