vote up 1 vote down star

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.

flag
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

1 Answer

vote up 1 vote down

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|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.