I am using raspberry pi 3 B+ with latest raspbian stretch. I am trying to interface GPS module Neo 6m V2 with raspberry pi.Connected my raspberry pi with gps module using female to female jumper wires.
VCC to Pin 1, which is 3.3v
TX to Pin 10, which is RX (GPIO15)
RX to Pin 8, Which is TX (GPIO14)
Gnd to Pin 6, which is Gnd
I followed below steps to configure : ---
edit
sudo nano /boot/config.txt, at the bottom of above files added two linesenable_uart=1
dtoverlay=pi3-miniuart-bt
sudo rebbot
stop serial ttyS0 using command
sudo systemctl stop [email protected]
disable serial ttyS0 using command
sudo systemctl disable [email protected]
sudo reboot
enable ttyAMA0 using command
sudo systemctl enable [email protected]
verify it using
ls -l /dev,it giveslrwxrwxrwx 1 root root 7 Sep 6 15:18 serial0 -> ttyAMA0 lrwxrwxrwx 1 root root 5 Sep 6 15:18 serial1 -> ttyS0
install minicom package using
sudo apt-get install minicombut when I am checking it using
sudo minicom -D/dev/ttyAMA0 -b4800 it freezes , nothing showing me on terminal.as shown below enter image description here
Even sudo cat /etc/ttyAMA0 ,also not showing anything.
Please help to solve this .as I am trying this project first time,I dont know much about this.
So what's wrong with freeze terminal problem??
how can I find out ,that my gps module is working or not?when I power on raspberry pi , gps module's red light gets on.