Reputation: 692
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.
Upvotes: 5
Views: 894
Reputation: 112
I have some experience using 3g modules. I have always managed to recieve good speeds through the UART interface.
As for audio, you can definitely start calls through AT commands, but I don't think you can stream audio over UART.
Maybe consider something like this?
Upvotes: 2
Reputation: 8476
If you look datasheet of the SIM5320 module it says the following about the UART interface:
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.
Upvotes: 2