Continue to Site

Welcome to EDAboard.com

Welcome to our site! EDAboard.com is an international Electronics Discussion Forum focused on EDA software, circuits, schematics, books, theory, papers, asic, pld, 8051, DSP, Network, RF, Analog Design, PCB, Service Manuals... and a whole lot more! To participate you need to register. Registration is free. Click here to register now.

Suggest me a GPRS module to use with PIC

Status
Not open for further replies.

BasePointer

Full Member level 2
Full Member level 2
Joined
Jul 3, 2002
Messages
130
Helped
6
Reputation
12
Reaction score
3
Trophy points
1,298
Location
TURKEY
Activity points
955
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
 

shashavali_m

Member level 4
Member level 4
Joined
Apr 18, 2005
Messages
70
Helped
1
Reputation
2
Reaction score
0
Trophy points
6
Activity points
0
gprs pic

Try TELIT GM862 PCS
 

    BasePointer

    Points: 2
    Helpful Answer Positive Rating

BasePointer

Full Member level 2
Full Member level 2
Joined
Jul 3, 2002
Messages
130
Helped
6
Reputation
12
Reaction score
3
Trophy points
1,298
Location
TURKEY
Activity points
955
at+cipstart

shashavali_m said:
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?
 

BasePointer

Full Member level 2
Full Member level 2
Joined
Jul 3, 2002
Messages
130
Helped
6
Reputation
12
Reaction score
3
Trophy points
1,298
Location
TURKEY
Activity points
955
gm862 pic

What about SIM100S32-E?
It's only 35$ and has embedded TCP/IP stack.
Anyone used it before?
Is It wotking stable ?
 

xjackal

Full Member level 3
Full Member level 3
Joined
Jan 21, 2004
Messages
163
Helped
20
Reputation
40
Reaction score
8
Trophy points
1,298
Activity points
1,301
pic com gprs

is there a link to choose from?how can we check the useability?any info..?
 

    BasePointer

    Points: 2
    Helpful Answer Positive Rating

BasePointer

Full Member level 2
Full Member level 2
Joined
Jul 3, 2002
Messages
130
Helped
6
Reputation
12
Reaction score
3
Trophy points
1,298
Location
TURKEY
Activity points
955
pic+gprs

gorkin said:
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?
 

vdharan

Junior Member level 3
Junior Member level 3
Joined
Apr 18, 2005
Messages
28
Helped
3
Reputation
6
Reaction score
0
Trophy points
1,281
Activity points
1,613
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.
 

    BasePointer

    Points: 2
    Helpful Answer Positive Rating

BasePointer

Full Member level 2
Full Member level 2
Joined
Jul 3, 2002
Messages
130
Helped
6
Reputation
12
Reaction score
3
Trophy points
1,298
Location
TURKEY
Activity points
955
gprs pic

vdharan said:
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?
 

FSio

Junior Member level 3
Junior Member level 3
Joined
Nov 27, 2003
Messages
29
Helped
2
Reputation
4
Reaction score
0
Trophy points
1,281
Activity points
255
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
 

    BasePointer

    Points: 2
    Helpful Answer Positive Rating

vdharan

Junior Member level 3
Junior Member level 3
Joined
Apr 18, 2005
Messages
28
Helped
3
Reputation
6
Reaction score
0
Trophy points
1,281
Activity points
1,613
gprs module internet ip address

BasePointer said:
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 .
--
 

    BasePointer

    Points: 2
    Helpful Answer Positive Rating

BasePointer

Full Member level 2
Full Member level 2
Joined
Jul 3, 2002
Messages
130
Helped
6
Reputation
12
Reaction score
3
Trophy points
1,298
Location
TURKEY
Activity points
955
module gprs pic

vdharan said:
BasePointer said:
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.
 

Unomano

Member level 1
Member level 1
Joined
Aug 31, 2005
Messages
40
Helped
5
Reputation
10
Reaction score
5
Trophy points
1,288
Location
Minsk, Belarus
Activity points
1,613
simcomm

if somebody know which AT comands should be sent to Siemens TC65 to get the same result?
 

techie

Advanced Member level 3
Advanced Member level 3
Joined
Feb 5, 2002
Messages
839
Helped
58
Reputation
116
Reaction score
9
Trophy points
1,298
Location
Pakistan
Activity points
7,802
gprs with pic

Does the TC65 has a built in TCP/IP stack?
 

traxonja

Advanced Member level 4
Full Member level 1
Joined
Apr 6, 2004
Messages
109
Helped
2
Reputation
4
Reaction score
1
Trophy points
1,298
Activity points
1,184
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
 

uludere72

Junior Member level 1
Junior Member level 1
Joined
Dec 6, 2005
Messages
16
Helped
1
Reputation
2
Reaction score
0
Trophy points
1,281
Activity points
1,390
pic gprs control

Are teher any code like it Siemens MC35i? how can i sende Data throu GPRS ?
 

techie

Advanced Member level 3
Advanced Member level 3
Joined
Feb 5, 2002
Messages
839
Helped
58
Reputation
116
Reaction score
9
Trophy points
1,298
Location
Pakistan
Activity points
7,802
gprs+pic

I dont think you will get a readymade solution for MC35. What is your application
 

mohand

Newbie level 1
Newbie level 1
Joined
Dec 17, 2005
Messages
1
Helped
0
Reputation
0
Reaction score
0
Trophy points
1,281
Activity points
1,290
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 god price
 

techie

Advanced Member level 3
Advanced Member level 3
Joined
Feb 5, 2002
Messages
839
Helped
58
Reputation
116
Reaction score
9
Trophy points
1,298
Location
Pakistan
Activity points
7,802
gm862 telit türkiye

There are many posts on this forum. Search
 

Status
Not open for further replies.

Similar threads

Part and Inventory Search

Welcome to EDABoard.com

Sponsor

Top