I have a Raspberry pi with SIM900 GSM module. currently i am using ttyUSB0 as pppd but i also want to send AT commands (send/receive SMS) to SIM900 while pppd is active. I was created multiple virtual serial ports (like gsmtty1,gsmtty2 etc) but those are not working with screen/minicom.
How to Send AT commands to SIM900 while pppd is running
1.1k views Asked by ratna gk At
1
There are 1 answers
Related Questions in RASPBERRY-PI
- Raspberry Pi Sense Hat with Pyinstaller
- Waiting for several hours before resuming execution
- Using compositor in Gstreamer to merge imagesequence with video/audio stream
- How to make this sensor keep taking readings once its when_in_range function has been activated?
- Emulating an HID device with a raspberry pi 5
- How to stream PCM audio to a speakers both on mac and linux in Node.js?
- I want to use NRF24L01 transceiver with raspberry pi but some GPIO pins are already occupied by 3.5 inch display how do i connect transceiver
- voron 2.4 mainsail kiauh error install crowsnest (solved problem)
- Pi4J minimal example's LED doesn't blink
- How can I connect and send data from react-native to raspberry pi
- Xpt 2046 Display with Pn532 RFID reader
- Google SDK for Raspberry pi
- How to use a RaspberryPi camera with the cv2.videoCapture() function?
- How do I capture audio from the system bus in a node app (or from sox) on a raspberry pi?
- Can't open /dev/mem: Operation not permitted Raspberry Pi
Related Questions in AT-COMMAND
- I'm Trying to Connect Internet with ESP32 using Cavlii C16Qs. but ESP32 is not Getting Internet Connectivity
- Does anyone know about ATcommands for satellitephone(isatphone 2.1). AT + ISAT_OBEX = 1 What is purpose of it. can you suggest other AT commands also
- Problem with AT command in new GSM module A7672S
- Reading multiple blocks from a CoAP block-wise transfer on SIM7080G modem
- Increase CoAP receive package size beyond 579 bytes on SIM7080G modem
- Pico-SIM7080G hat detects network but can't connect
- ESP32 UDP server through AT commandos
- HTTP request pythonanywhere flask server using esp8266 AT commands
- AT Commands HTTP request to JSON source with status 200 but response that I get is incomplete (just some part of Response I received)
- API ID 0X17. Send an AT Command message from Xbee connected to arduino to a slave Xbee
- GSM and LTE-M connection with SIM7070G for MQTT data transmission
- SIM7000X establish AWS MQTT via AT command issue
- how to make a clear voice call using sim900
- Cannot deserialize JSON object via PHP script on AT commands from Arduino Uno/ESP8266 to connect to mySQL
- Sending Multi part message with AT Commands & PDU Mode Node.js
Related Questions in SIM900
- Problem with AT command in new GSM module A7672S
- how to make a clear voice call using sim900
- How to send data to API using SIM900
- SMS getting received after a long delay (using SIMCOM SIM900A and Raspberry Pi 4)
- Sim900a post request with AT commands does not work for data that is more than 185 characters long
- SIM900 + Arduino: AT+CMGL="REC UNREAD" returns 302
- Can't send data to 000webh0st server using arduino uno, gsm sim900, and gps modul. error is at AT+CIPSEND
- Parsing serial data from sim900 module esp32
- GSM sim900 shield stopped responding||how to reset the GSM module to factory settings?
- Resolving AT+CIPSTART command response "STATE: IP PROCESSING"
- interface PIC16F877A with SIM900A GSM module
- Is there a way to scan for surrounding cell towers using sim800L or Sim900
- AT command get caller number when already in another call
- Fall detection using MPU6050 and sim900a
- Getting SMSC (SMS Center) number using AT Commands SIM900A
Related Questions in PPPD
- getting PPP socket
- LCP terminated by peer. Connect time 0.0 minutes
- pppd problem: Hangup (SIGHUP) after Protocol-Reject
- Quectel EG25 modem not connecting with pppd
- Raspberry PI GSM HAT connecting to network problem
- PPPD Connect script failed
- pppd on macos fail with "publish_entry SCDSet() failed"
- PPPD connection stops working in some seconds after startup
- sstp vpn on Mac OS Big Sur - could not complete write of frame, could not forward packet to pppd
- How to initialize pppd connection witsh RS232 modem?
- pppd: GSM USB-modem consistently disconnects after several hours
- Calling pppd within C program blocks the thread
- ppp between two machines over serail without a modem
- PPPD connection without interrupt
- NetExtender Installation Shows Missing PPPD
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
While these virtual serial ports might work (assuming you are talking about the kernel's 07.10 multiplexing support), your first attempt should be to use the other serial device, e.g.
/dev/ttyUSB1.This is assuming the modem provides two serial endpoints, which it is not absolutely required to do, but virtual all modems that support USB does, so I would be very surprised if it really only had one.
Notice that the 07.10 multiplexing protocol requires explicit command and implementation support from the modem and is specified in a 3GPP specification which was created in the 90-ties to cater for the lack of multiplexing in the serial interfaces that were in use at that time (RS-232, IrDA, bluetooth).
But it required dedicated driver support on the operating side, and for windows there was no default drivers supplied so you had to install something additional (and I think the quality of those were not so great either) so 07.10 never got any serious momentum. Today USB's native multiple endpoint support have in many ways obsoleted the 07.10 protocol.