Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Audio and 3G data via UART in GSM module using AT commands

Tags:

I have got a question. I want to buy a GSM/GPS/3G module for minicomputer like Orange Pi Zero Plus 2, so it can't be something like Raspberry Pi GSM Hat. I have found really good module, but I am not sure about some things. Maybe you can help me.

First. Internet connection. SIM5320 is 3G module, so maximum speed of Internet connection will be 3.6Mb. As you can see in the picture below this module has got only UART interface. Will I be able to use the maximum 3G speed via the UART interface?

Second. Audio. This module doesn't have audio input or output. So can I send and receive audio using UART interface and AT commands?

Thank you in advance for your help.

enter image description here

like image 459
Kacper G. Avatar asked Oct 14 '18 10:10

Kacper G.


People also ask

Which command instructions are used to control a GSM modem?

Many of the commands that are used to control wired dial-up modems, such as ATD (Dial), ATA (Answer), ATH (Hook control) and ATO (Return to online data state), are also supported by GSM/GPRS modems and mobile phones.

What are AT commands in modem?

The AT commands are used to control the operation of your modem. They are called AT commands because the characters AT must precede each command to get the ATtention of the modem. AT commands can be issued only when the modem is in command mode or online command mode.

What are 3GPP AT commands used for?

AT commands are software interface for wireless modules. AT commands are defined as part of 3GPP standard under 3GPP TS 27.007. That implies that all the wireless modules that operate on cellular networks are required to support AT commands.


1 Answers

If you look datasheet of the SIM5320 module it says the following about the UART interface:

enter image description here

So it is probably not the bottle neck, if terminal can use the highest bit rates.

Such modems usually have separate audio-output and mic-input pins. That can be used for audio phone calls with ATD and ATA AT-command. SIM5320 seems to have such pins, but the board seems to not have such connector.

UART can be used for Internet access for uploading/downloading binary audio stream over IP. But that would require quite much software for terminal.

like image 163
SKi Avatar answered Nov 15 '22 05:11

SKi