| Author |
Message |
BasePointer
Joined: 03 Jul 2002 Posts: 124 Helped: 3 Location: TURKEY
|
17 Jul 2005 16:14 pic gprs |
|
|
|
|
Hello Friends,
I'm looking for low cost GPRS Module to connect my server (listening tcp port 2256) written in Delphi over internet with PIC18LF4620.
- What kind of module do I need for this (or be enough)?
- What should I know at PIC side as software? I'm using hitech C and I can easily send and receive any data over its UART.
- Which gprs module do you advice me to start my project, it should be stabile and cheap.
- Where can I buy a module immediately?
10x
Last edited by BasePointer on 20 Jul 2005 15:32; edited 1 time in total |
|
| Back to top |
|
 |
shashavali_m
Joined: 18 Apr 2005 Posts: 69 Helped: 1
|
19 Jul 2005 13:51 gprs pic |
|
|
|
|
| Try TELIT GM862 PCS
|
|
| Back to top |
|
 |
BasePointer
Joined: 03 Jul 2002 Posts: 124 Helped: 3 Location: TURKEY
|
19 Jul 2005 15:10 at+cipstart |
|
|
|
|
| shashavali_m wrote: |
| Try TELIT GM862 PCS |
10x shashavali_m for orientating.
Have you used this module before?
Will I need any software stacks implementation with this?
Is it working stable ?
What is the difference between GM862-PCS and GM862-GPRS?
What is E-GSM 900/1800 MHz and E-GSM 900/1800/1900 MHz?
|
|
| Back to top |
|
 |
BasePointer
Joined: 03 Jul 2002 Posts: 124 Helped: 3 Location: TURKEY
|
21 Jul 2005 6:48 gm862 pic |
|
|
|
|
What about SIM100S32-E?
It's only 35$ and has embedded TCP/IP stack.
Anyone used it before?
Is It wotking stable ?
|
|
| Back to top |
|
 |
xjackal
Joined: 21 Jan 2004 Posts: 152 Helped: 13
|
26 Jul 2005 15:47 pic com gprs |
|
|
|
|
| is there a link to choose from?how can we check the useability?any info..?
|
|
| Back to top |
|
 |
gorkin
Joined: 27 Feb 2002 Posts: 679 Helped: 11
|
27 Jul 2005 1:04 gprs module pic |
|
|
|
|
Hi guys!
For get more information about SINCOM modules, try these link:
http://www.simcommunication.com/english/productssolutions/wirelessmodule/sim100s.htm
Gorkin.
|
|
| Back to top |
|
 |
BasePointer
Joined: 03 Jul 2002 Posts: 124 Helped: 3 Location: TURKEY
|
27 Jul 2005 6:33 pic+gprs |
|
|
|
|
| gorkin wrote: |
Hi guys!
For get more information about SINCOM modules, try these link:
h**p://www.simcommunication.com/english/productssolutions/wirelessmodule/sim100s.htm
Gorkin. |
They have written SIM100S had "An embedded powerful TCP/IP protocol stack"
But someone said It isn't so. Anyone test it? Do we need software implementation for PPP and TCP/IP stack?
|
|
| Back to top |
|
 |
vdharan
Joined: 18 Apr 2005 Posts: 28 Helped: 3
|
27 Jul 2005 16:42 gprs com pic |
|
|
|
|
| Yes, SIM100S32E has got a TCP/IP stack. Also one dosent need to write a PPP stack. Iam using it it is working fine.
|
|
| Back to top |
|
 |
BasePointer
Joined: 03 Jul 2002 Posts: 124 Helped: 3 Location: TURKEY
|
27 Jul 2005 18:39 gprs pic |
|
|
|
|
| vdharan wrote: |
| Yes, SIM100S32E has got a TCP/IP stack. Also one dosent need to write a PPP stack. Iam using it it is working fine. |
For example, How can I send my nick name "BasePointer" as string to a server that listens TCP port numbered 2256 with SIM100S32E after all communications procedure? Can you show us that with one line AT command?
|
|
| Back to top |
|
 |
FSio
Joined: 27 Nov 2003 Posts: 29 Helped: 2
|
29 Jul 2005 13:37 pic ppp stack |
|
|
|
|
You can to probe with MC56, Siemens module
It had two way to access to internet:
1- Using functions or commands GPRS with a external stack TCP/IP
or
2- Using functions or commands to access to Internet with internal stack TCP/IP
Best Regards
|
|
| Back to top |
|
 |
Google AdSense

|
29 Jul 2005 13:37 Ads |
|
|
|
|
|
|
| Back to top |
|
 |
vdharan
Joined: 18 Apr 2005 Posts: 28 Helped: 3
|
30 Jul 2005 7:52 gprs module internet ip address |
|
|
|
|
| BasePointer wrote: |
| For example, How can I send my nick name "BasePointer" as string to a server that listens TCP port numbered 2256 with SIM100S32E after all communications procedure? Can you show us that with one line AT command? |
This cannot be done in a single AT command.
A series of steps have to be followed.
Step 1:AT+CGDCONT=1,"IP","<apn>"
<apn> - This is the apn given by your service provider
Step 2:AT+CSTT = "<apn>","<username>","<passwd>"
Step 3:AT+CIICR
Step 4:AT+CISFR
Step 5:AT+CIPSTART="TCP","<IP address of your server>","port No"
In your case port no will be 2256
Step 6: AT+CIPSEND=<data to send> CNTRLZ
In your case data to send will be BasePointer.
In the server there should be a server socket program listening in 2256 port .
--
|
|
| Back to top |
|
 |
BasePointer
Joined: 03 Jul 2002 Posts: 124 Helped: 3 Location: TURKEY
|
30 Jul 2005 12:19 module gprs pic |
|
|
|
|
| vdharan wrote: |
| BasePointer wrote: |
| For example, How can I send my nick name "BasePointer" as string to a server that listens TCP port numbered 2256 with SIM100S32E after all communications procedure? Can you show us that with one line AT command? |
This cannot be done in a single AT command.
A series of steps have to be followed.
Step 1:AT+CGDCONT=1,"IP","<apn>"
<apn> - This is the apn given by your service provider
Step 2:AT+CSTT = "<apn>","<username>","<passwd>"
Step 3:AT+CIICR
Step 4:AT+CISFR
Step 5:AT+CIPSTART="TCP","<IP address of your server>","port No"
In your case port no will be 2256
Step 6: AT+CIPSEND=<data to send> CNTRLZ
In your case data to send will be BasePointer.
In the server there should be a server socket program listening in 2256 port .
-- |
It seems easy vdharan.
I decided to start with it.
10x for this.
|
|
| Back to top |
|
 |
Unomano
Joined: 31 Aug 2005 Posts: 43 Location: Minsk, Belarus
|
03 Sep 2005 18:56 simcomm |
|
|
|
|
| if somebody know which AT comands should be sent to Siemens TC65 to get the same result?
|
|
| Back to top |
|
 |
techie
Joined: 05 Feb 2002 Posts: 850 Helped: 43 Location: Pakistan
|
04 Sep 2005 18:41 gprs with pic |
|
|
|
|
| Does the TC65 has a built in TCP/IP stack?
|
|
| Back to top |
|
 |
Unomano
Joined: 31 Aug 2005 Posts: 43 Location: Minsk, Belarus
|
04 Sep 2005 21:47 at cipstart |
|
|
|
|
| techie wrote: |
| Does the TC65 has a built in TCP/IP stack? |
Yes, it has.
|
|
| Back to top |
|
 |
traxonja
Joined: 06 Apr 2004 Posts: 109 Helped: 1
|
04 Oct 2005 17:22 sincom modules |
|
|
|
|
I can't seem to find a list of AT Commands for Nokia (6310i) for GPRS. Does anyone have them?
Best regards,
Trax
|
|
| Back to top |
|
 |
uludere72
Joined: 06 Dec 2005 Posts: 17 Helped: 1
|
15 Dec 2005 13:06 pic gprs control |
|
|
|
|
| Are teher any code like it Siemens MC35i? how can i sende Data throu GPRS ?
|
|
| Back to top |
|
 |
techie
Joined: 05 Feb 2002 Posts: 850 Helped: 43 Location: Pakistan
|
15 Dec 2005 15:09 gprs+pic |
|
|
|
|
| I dont think you will get a readymade solution for MC35. What is your application
|
|
| Back to top |
|
 |
mohand
Joined: 17 Dec 2005 Posts: 1
|
17 Dec 2005 4:31 pic gprs modül |
|
|
|
|
Hello,
I am intersted to buy a SIM100S32-E where can I find it. I want to built a board with a GPS and a GPRS for vehicle tracking, has anyone did that before. At a --- price
|
|
| Back to top |
|
 |
techie
Joined: 05 Feb 2002 Posts: 850 Helped: 43 Location: Pakistan
|
18 Dec 2005 8:34 gm862 telit türkiye |
|
|
|
|
| There are many posts on this forum. Search
|
|
| Back to top |
|
 |
uludere72
Joined: 06 Dec 2005 Posts: 17 Helped: 1
|
23 Dec 2005 12:28 gm862 vb source code |
|
|
|
|
I want to Data from PIC I/O card to remote server via GPRS (siemens mc35 i) And Recevie data form Server
TCP or UDP connection?
|
|
| Back to top |
|
 |
mobile-it
Joined: 24 Apr 2004 Posts: 477 Helped: 16
|
23 Dec 2005 14:27 gprs settings siemens tc65 |
|
|
|
|
TCP = you are sure all your data is received
UDP= you are not sure all data is received
|
|
| Back to top |
|
 |
pisoiu
Joined: 31 Dec 2002 Posts: 729 Helped: 24 Location: Romania
|
23 Dec 2005 14:51 pic on gprs |
|
|
|
|
TCP protocol is designed for reliability. It has several states (closed, open, listen). Several packets are sent in both ways in order to change the state. After a connection is established, for every data packet sent in one way, there is an acknowledge packet sent back. This is used to control the reliability of the transmission. If one side does not receive an acknowledge for a packet (packet was lost), it will retransmit it after a time. However, this has its costs, the traffic will be increased with the control data.
On the other side the UDP protocol is designed for speed. There are no connection states, and a packet is sent without expecting any kind of confirmation. The packet may or may not arrive at the destination, and the sender has no way to be aware of this. This is appropriate for data where you can afford some losses (ex. video streaming).
/pisoiu
|
|
| Back to top |
|
 |
uludere72
Joined: 06 Dec 2005 Posts: 17 Helped: 1
|
10 Mar 2006 9:49 gprs/umts module pic |
|
|
|
|
| Thx I used TCP connection with IConnector..
|
|
| Back to top |
|
 |
dani
Joined: 08 Mar 2004 Posts: 179 Helped: 1 Location: UK
|
13 Sep 2006 7:16 telit communications tcp |
|
|
|
|
Hello all,
I want to work on GPRS based telemetery system where i can monitior the remote data on internet. From these above posts i have brief overview that how to send data using tcpip stack of gprs module to a specified port. But i dont know how to receive this data on internet using pc. If any one can add this to something then thanks for advance.
regards
|
|
| Back to top |
|
 |
techie
Joined: 05 Feb 2002 Posts: 850 Helped: 43 Location: Pakistan
|
13 Sep 2006 11:14 gsm 862 with pic |
|
|
|
|
| For PC side, you have to write an application using socket communications. Fortunately, a lot of languages provide a socket interface to send receive data via TCP /IP. And there are a lot of examples out there that do that.
|
|
| Back to top |
|
 |
dani
Joined: 08 Mar 2004 Posts: 179 Helped: 1 Location: UK
|
13 Sep 2006 18:32 mc56,socket,tcp,example |
|
|
|
|
Thank you techie..
If you know the source code or articles on how to do this all on pc side then i can help me lot to start it. Thanks in advance..
regards
|
|
| Back to top |
|
 |
techie
Joined: 05 Feb 2002 Posts: 850 Helped: 43 Location: Pakistan
|
13 Sep 2006 18:38 pic24 gprs |
|
|
|
|
| Which PC language / platform do you intend to use.
|
|
| Back to top |
|
 |
dani
Joined: 08 Mar 2004 Posts: 179 Helped: 1 Location: UK
|
14 Sep 2006 8:14 gsm862 apn |
|
|
|
|
| techie wrote: |
| Which PC language / platform do you intend to use. |
I want to use Visual Basic 6.0
regards
|
|
| Back to top |
|
 |
techie
Joined: 05 Feb 2002 Posts: 850 Helped: 43 Location: Pakistan
|
14 Sep 2006 8:43 cipstart implementation |
|
|
|
|
It is quite easy in VB6. Many working examples out there. For an intro, have a look at the following. For additional, seatch for "VB6 sockets"
http://www.osix.net/modules/article/index.php?id=25
|
|
| Back to top |
|
 |