mongoose-os-libs / pppos

PPPoS / cellullar modem support
Other
27 stars 23 forks source link

SMS / Call #6

Closed thbl closed 5 years ago

thbl commented 5 years ago

Is it possible to send / receive sms / calls somehow while using pppos ?

rojer commented 5 years ago

there is no API to send an SMS as such but there is an API to send custom commands which should work while ppp is active mgos_pppos_send_cmd().

thbl commented 5 years ago

So with mgos_pppos_send_cmd we can execute normal AT commands ? -I see in source it only reply true/false, is there a way to listen for the AT response ? (to check signal / check for new sms)

rojer commented 5 years ago

the return value is actually just acnowledged that command was ququed, actual result is delivered via the MGOS_PPPOS_CMD_RESP event.