Hello.
I'm looking for a product like this (or similar) :
https://www.exvist.com/products/4g-lte-usb-dongle-ec25-lcc-sim-gps-usb-ph2/4736458000002065355
I would like to know if you bought that or something like that. I'm looking for a dongle like that,that supports voice (circuit-switched voice) or VoLTE / PCM audio / audio over USB (I'm not sure if the dongle of the link does it). The module/firmware model I need should be usable in EU or even better,globally.
I plan to use it with FreeBSD because I'm building a phablet based on that OS. But also Linux is ok. What I want to do is to find a relatively easy "path" to add the opportunity for the phablet to place and receive phone calls by using,for example,some kind of basic script. For example like the one below :
I've asked to ChatGPT :
Quectel EC25-E is a 4G LTE USB Dongle with EC25-E LCC module and only supports AT commands Voice. But for PCM audio, it doesn’t support it. So,can it be used to place and receive phone calls ?
and it replied like this :
So,I want to ask : Can someone suggest a model of 4G/LTE/USB Dongle that supports the "PCM/I²S digital audio interfaces" ?
Thanks.
I'm looking for a product like this (or similar) :
https://www.exvist.com/products/4g-lte-usb-dongle-ec25-lcc-sim-gps-usb-ph2/4736458000002065355
I would like to know if you bought that or something like that. I'm looking for a dongle like that,that supports voice (circuit-switched voice) or VoLTE / PCM audio / audio over USB (I'm not sure if the dongle of the link does it). The module/firmware model I need should be usable in EU or even better,globally.
I plan to use it with FreeBSD because I'm building a phablet based on that OS. But also Linux is ok. What I want to do is to find a relatively easy "path" to add the opportunity for the phablet to place and receive phone calls by using,for example,some kind of basic script. For example like the one below :
Code:
#!/usr/bin/env python3
import serial
import time
# Adjust to your modem’s AT command port
MODEM_TTY = "/dev/ttyUSB2"
BAUD = 115200
def send_at(command, wait=1):
ser.write((command + "\r").encode())
time.sleep(wait)
resp = ser.readlines()
return [line.decode(errors="ignore").strip() for line in resp]
def dial(number):
print(f"📞 Dialing {number}...")
print("\n".join(send_at(f"ATD{number};")))
def answer():
print("✅ Answering call...")
print("\n".join(send_at("ATA")))
def hangup():
print("📴 Hanging up...")
print("\n".join(send_at("ATH")))
def check():
print("🔍 Checking modem...")
print("\n".join(send_at("AT")))
def monitor():
print("📡 Monitoring incoming calls (Ctrl+C to stop)...")
try:
while True:
line = ser.readline().decode(errors="ignore").strip()
if line:
print(f"<< {line}")
except KeyboardInterrupt:
print("\n🛑 Monitor stopped.")
if __name__ == "__main__":
try:
ser = serial.Serial(MODEM_TTY, BAUD, timeout=1)
except Exception as e:
print(f"❌ Could not open {MODEM_TTY}: {e}")
exit(1)
while True:
print("\n=== Edge-V Phone Menu ===")
print("1. Check modem")
print("2. Dial number")
print("3. Answer call")
print("4. Hang up")
print("5. Monitor incoming calls")
print("6. Exit")
choice = input("Select option: ")
if choice == "1":
check()
elif choice == "2":
number = input("Enter phone number: ")
dial(number)
elif choice == "3":
answer()
elif choice == "4":
hangup()
elif choice == "5":
monitor()
elif choice == "6":
break
else:
print("❓ Invalid choice")
I've asked to ChatGPT :
Quectel EC25-E is a 4G LTE USB Dongle with EC25-E LCC module and only supports AT commands Voice. But for PCM audio, it doesn’t support it. So,can it be used to place and receive phone calls ?
and it replied like this :
However, PCM/I²S digital audio interfaces are not available on the EC25-E. That means you cannot directly attach a microphone/speaker at the hardware level.
So,I want to ask : Can someone suggest a model of 4G/LTE/USB Dongle that supports the "PCM/I²S digital audio interfaces" ?
Thanks.