I am testing out using spacebridge. I have a web app running on a google cloud instance that initiates a spacebridge connection with one of my endpoints that is equipped with a Hologram SIM and Nova USB dongle.
I am sending a simple http get request over the connection to my endpoint which is returning a 5 character string. I noticed that it takes over 1.5 minutes for the request to reach my endpoint. Is this the behavior I should expect or am I possibly doing something wrong and causing this slow response?
How long does it take to initiate the spacebridge connection? If that only takes a few seconds (normal) then look elsewhere (like google cloud) for your answer.
# Chat script for modems using Hologram SIM card
# See hologram.io for more information
ABORT 'BUSY'
ABORT 'NO CARRIER'
ABORT 'VOICE'
ABORT 'NO DIALTONE'
ABORT 'NO DIAL TONE'
ABORT 'NO ANSWER'
ABORT 'DELAYED'
TIMEOUT 12
REPORT CONNECT
"" AT
OK ATH
OK ATZ
OK ATQ0
OK AT+CGDCONT=1,"IP","hologram"
OK ATDT*99***1#
CONNECT ''
By the way, issuing this command in Screen against the modem did speed up my http request responses, so thank you. Assuming I need to make this command on every hologram network connect command, I just need to know where the proper place is to insert the command.