Discussion in "Project Help" started by    WWSIERT    Apr 3, 2019.
Wed Apr 03 2019, 06:48 pm
#1
I am feeding the GPS signal into a 8051 microcontroller via GT-7U gps.
My code does not detect the header $GPRMC, the image below shows some
of the characters I m receiving. The received chars don't seem valid
and I don't know what I should change to correct this...

void receive_data() interrupt 4
{
info[check++]=SBUF; //Read SBUF
lcd_data(info[check-1]);
if(check<7) //Condition to check the required data
{
if(info[check-1]!=test[check-1])
check=0;
}

RI=0;
}

void serial()
{
EA=1;
ES=1;
SCON=0x50 ; // SERIAL MODE 1 ,8- BIT DATA ,1 STOP BIT ,1 START BIT
, RECEIVING ON
TMOD=0x20; //MODE=2
TH1=0xFD; // 9600 BAUD

TR1=1; //TIMER START

//IE=0x90; // enable interrupts...
}
void lcd_data(unsigned char item)
{
port2 = item;
rs= 1;
rw=0;
e=1;
delay(50);
e=0;
return;
}
Wed Apr 03 2019, 06:50 pm
#2
that is the image

Wed Apr 03 2019, 08:11 pm
#3
Can you post your full code.
Do you have a serial to USB adapter ?
If not, get one, they are very useful for this sort of project.

If you have one, use it to connect your GPS to your PC to test its output.
You can then connect the PC to your 8051 to test its response to known characters.


[ Edited Thu Apr 04 2019, 04:01 am ]

Get Social

Information

Powered by e107 Forum System

Downloads

Comments

Bobbyerilar
Thu Mar 28 2024, 08:08 am
pb58
Thu Mar 28 2024, 05:54 am
Clarazkafup
Thu Mar 28 2024, 02:24 am
Walterkic
Thu Mar 28 2024, 01:19 am
Davidusawn
Wed Mar 27 2024, 08:30 pm
Richardsop
Tue Mar 26 2024, 10:33 pm
Stevencog
Tue Mar 26 2024, 04:26 pm
Bernardwarge
Tue Mar 26 2024, 11:15 am