@OregonLTE is correct. The Telit command for band selection is AT#BND=<GSM band>[,<UMTS band>[,<LTE band>]]
And the chipset is Qualcomm, so standard Qualcomm LTE bandmask values apply.
The Telit manual doesn't give an example of its use, so I'm not sure if you can just use eg:
AT#BND ...
Search found 12 matches
- Fri Oct 02, 2020 5:22 pm
- Forum: Misc Modem Cards and Dongles
- Topic: Lm960 new build
- Replies: 5
- Views: 3568
- Fri Oct 02, 2020 2:43 am
- Forum: Misc Modem Cards and Dongles
- Topic: Quectel EP06-A AT commands for carrier aggregation bandlock?
- Replies: 33
- Views: 167926
Re: Quectel EP06-A AT commands for carrier aggregation bandlock?
AT+QENG="neighbourcell"
It needs to be run several times, and over a period of time. the contents can change dramatically, even in a fixed location (depending on whether the modem is thinking of switching bands).
You'll need practice interpreting the result.
Bands don't show directly in the ...
It needs to be run several times, and over a period of time. the contents can change dramatically, even in a fixed location (depending on whether the modem is thinking of switching bands).
You'll need practice interpreting the result.
Bands don't show directly in the ...
- Fri Oct 02, 2020 1:34 am
- Forum: Misc Modem Cards and Dongles
- Topic: Lm960 new build
- Replies: 5
- Views: 3568
Re: Lm960 new build
Sierra modems use a Qualcomm chipset. The L860 uses an Intel chipset, and many things "under the hood" are very different.
Oops, my mistake. I've been working on my Fibocom L860 too long. The LM960 is a Telit modem, so the commands I gave before this edit won't work.
Oops, my mistake. I've been working on my Fibocom L860 too long. The LM960 is a Telit modem, so the commands I gave before this edit won't work.
- Wed Sep 30, 2020 8:39 pm
- Forum: OPEN | UNCLASSIFIED
- Topic: Looking for Paid Support
- Replies: 5
- Views: 8298
Re: Looking for Paid Support
Ancient memories are coming back.
If the EC25-AF is in MBIM mode then OpenWRT may have a problem with roaming. Please see: https://forums.whirlpool.net.au/thread/ ... p=72#r1425
If the EC25-AF is in MBIM mode then OpenWRT may have a problem with roaming. Please see: https://forums.whirlpool.net.au/thread/ ... p=72#r1425
- Wed Sep 30, 2020 7:54 pm
- Forum: OPEN | UNCLASSIFIED
- Topic: Looking for Paid Support
- Replies: 5
- Views: 8298
Re: Looking for Paid Support
I have a Hologram SIM. It's specifically for IoT. That's 3GPP access technology types 8 (LTE Cat M1) and 9 (LTE Cat NB1).
The EC25-AF supports neither of these. That's not to say the Hologram SIM won't work with access technology 7 (normal LTE). It may or may not, depending on the provider the ...
The EC25-AF supports neither of these. That's not to say the Hologram SIM won't work with access technology 7 (normal LTE). It may or may not, depending on the provider the ...
- Wed Sep 30, 2020 5:25 pm
- Forum: Misc Modem Cards and Dongles
- Topic: EM20g GPS
- Replies: 4
- Views: 2979
Re: EM20g GPS
More on this:
What does the command AT+QCFG="gpsdrx" return on the EM20-G?
If supported, this command determines whether GPS shares the diversity antenna.
What does the command AT+QCFG="gpsdrx" return on the EM20-G?
If supported, this command determines whether GPS shares the diversity antenna.
- Tue Sep 29, 2020 3:43 am
- Forum: Misc Modem Cards and Dongles
- Topic: EM20g GPS
- Replies: 4
- Views: 2979
Re: EM20g GPS
You can set the GPS receiver to activate automatically on modem start with the AT command:
AT+QGPSCFG="autogps",1
Restart it to activate obviously.
Then you can read your position at any time with:
AT+QGPSLOC=2
This gives your location in decimal degrees. Use zero or one instead of two in that ...
AT+QGPSCFG="autogps",1
Restart it to activate obviously.
Then you can read your position at any time with:
AT+QGPSLOC=2
This gives your location in decimal degrees. Use zero or one instead of two in that ...
- Thu Jun 25, 2020 5:00 pm
- Forum: Quectel Modems
- Topic: AT+CNUM for Quectel EC25
- Replies: 7
- Views: 8900
Re: AT+CNUM for Quectel EC25
I am trying to find the number associated with my sim card in a Mikrotik SXT with a EC25-AF Modem. When I run AT+CNUM it returns "OK" but no number. Any ideas?
Most likely the SIM doesn't have the number written on it. In interactions with the provider, the modem uses the IMSI from the SIM, and ...
- Thu Jun 11, 2020 1:41 am
- Forum: General and Unclassified
- Topic: New ZBT WG1608 5G-ready router + GoldenOrb firmware
- Replies: 219
- Views: 270016
Re: New ZBT 5G-ready router WG1608
There's a newer version with improved Fibocom FM150 support available for testing:BillA wrote: Wed May 27, 2020 1:11 am Great news!! GoldenOrb firmware is now available for the WG1608
https://www.ofmodemsandmen.com/upload/
http://ofmodemsandmen.com/upload/WG1608-GO2020-06-10.zip
- Wed Mar 18, 2020 2:46 am
- Forum: Misc Modem Cards and Dongles
- Topic: Quectel EP06-A AT commands for carrier aggregation bandlock?
- Replies: 33
- Views: 167926
Re: Quectel EP06-A AT commands for carrier aggregation bandlock?
For Linux users, I wrote a little shell script to display LTE band values.
#!/bin/sh
#
printf "%s%20s\n" "Band L-bandmask-1" "L-bandmask-2"
LBAND=1
BBAND=1
while [ $LBAND -le 48 ]
do
printf "%-6s%016X\n" "B$LBAND" "$BBAND"
LBAND=$(( $LBAND + 1 ))
BBAND=$(( $BBAND * 2 ))
done
LBAND=65
BBAND=1 ...
#!/bin/sh
#
printf "%s%20s\n" "Band L-bandmask-1" "L-bandmask-2"
LBAND=1
BBAND=1
while [ $LBAND -le 48 ]
do
printf "%-6s%016X\n" "B$LBAND" "$BBAND"
LBAND=$(( $LBAND + 1 ))
BBAND=$(( $BBAND * 2 ))
done
LBAND=65
BBAND=1 ...
- Wed Mar 18, 2020 2:33 am
- Forum: Misc Modem Cards and Dongles
- Topic: Quectel EP06-A AT commands for carrier aggregation bandlock?
- Replies: 33
- Views: 167926
Re: Quectel EP06-A AT commands for carrier aggregation bandlock?
What would be the hex code for bands 14, 30, & 66 or for 4, 14, 30 & 66?
I am have a hard time finding the value for band 30
right now I am returning:
+QCFG: "band",0x260,0x2000000003300185a,0x0
Currently it default connects to band 2 and 15
If it ever connect to 30 or 66 my speeds go from ...
- Sun Mar 15, 2020 3:25 pm
- Forum: Misc Modem Cards and Dongles
- Topic: Quectel EP06-A AT commands for carrier aggregation bandlock?
- Replies: 33
- Views: 167926
Re: Quectel EP06-A AT commands for carrier aggregation bandlock?
That should read:BillA wrote: Wed Feb 19, 2020 12:05 pm
All bands for the EP06-E specifically:
AT+QCFG="band",8d0,7e00000000000000000000000000000000000000000000ff000001a0880800d5,0
AT+QCFG="band",8d0,1a1880800d5,0