I have a MultiConnect OCG-E board with a MTSMC-H5-U board. I’m able to load Python scripts onto the Telit chip, and they’re able to communicate with the AT interface (i.e. via MDM.send()
and MDM.read()
) just fine: I’ve tested this by bringing up an SSL connection and sending data over it, then verifying that it is received by the server.
However, I’m unable to interface with the script directly. I’ve tried:
import MDM
import SER
SER.set_speed('115200', '8N1')
SER.send('Hello, world!')
But I don’t see anything on /dev/ttyACM0
when connecting with minicom and running AT#EXECSCR
. My AT#PORTCFG
is set to 3
. Should I change that or be looking on a different serial interface?