up vote 1 down vote favorite
share [g+] share [fb]

I have tried to develop a gsm modem library for handling sms built around system.io.ports.serialport. it does not handle unsolicited responses very well, in particular incomming calls. i resort to sending AT hangup commands for each incoming call, however the unsolicited responses can popup even while you are doing other processing. this makes it quite hard to handle correctly.

Please i welcome your suggestions.

Thanks.

link|improve this question
Do you want a sollution for your problem or a library to replace your code? Maybe you should change the title or the question to reflect it better. – Lars Truijens Sep 16 '08 at 20:05
Lars Truijens, thanks for the reformatting tip. – Charles O Sep 16 '08 at 20:16
feedback

1 Answer

You probably want a separate thread that acts as a session handler, with a message queue interface towards the rest of your app. It should wait on inputs from either your application (to initiate a session) or your modem (incoming calls). When it's rebuffing an incoming call, session initiation requests from your application can wait.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown