0

我有兴趣从头开始学习嵌入式 GSM。有人在这里提供有关我可以在哪里获得培训/书籍的提示和指示吗?

4

3 回答 3

2

I've done a GPS tracker for vehicles and trucks, I used SIMCOM GSM module which get internet connection via GPRS attach AT commands and later made a connection to a server where it reports its location.

You should google for "GSM MODEM AT COMMANDS" and look for examples of uses. I think the most common modules are SIMCOM and TELUS. From that examples you will learn about how to use a GSM module.

Talking about hardware, all modules works with a simple serial connection, tx/rx so you can wire them to a microcontroller uart or pc rs232.

于 2011-01-26T13:48:17.500 回答
1

我也在学习 AT 命令,这样我就可以制作自己的发送 SMS 的程序。

无论如何:我发现http://www.developershome.com/sms/在了解 AT 命令的工作原理时是一个很好的帮助。

它可能不是您想要使用的,但它会帮助您学习如何与 GSM 调制解调器通话

于 2012-03-06T03:01:38.990 回答
0

我想推荐一个好的启动模块。Telit的GM862-GPS模块。您可以通过 UART 向它发送 AT 命令,也可以编写 Python 脚本并上传到它。这样,您不需要第二个 MCU 向其发送 AT 命令。

从https://www.sparkfun.com/products/280购买一个。此链接中有一些关于它的文档。Telit 的网站上还有更多文档:http ://www.telit.com/en/products.php?p_ac=show&p=7 。

此模块的最佳论坛是 Roundsolutions。您可以从http://www.roundsolutions.com/techdocs/下载该模块的许多工具。其中,RSterm 是通过 PC 发送 AT 命令的最重要工具。这个 rsterm 是专门为 Telit GSM 模块编写的。它有很多 AT 命令的快捷方式。您还可以使用它将 Python 脚本上传到 GSM 模块。

于 2013-03-01T05:25:17.930 回答