12-25-2008 11:00 PM
Hi,
I am new to labview but i have a project to rush for. What I am trying to do is to program a Holux GR-213 USB GPS receiver. The program are to collects the data from the GPS unit and displays it on the front panel of Labview (eg .longitude,latitude, speed and more). I have been trying to look for SCPI for this device by fail to do so. I am too lost and not sure if i am on the right track. any help and suggestion will be appreicate
attached is a screenshoot of the software application given provided by Holux.
12-26-2008 12:55 AM
You don't want to program your GPS, you want to retrieve data. Most likely your GPS sends out the data in NMEA format.
Search the forums for NMEA.
The data will be sent via a serial connection (RS232, bluetooth, TCP/IP whatever) so uses a VISA connection.
If you want to add an image to your post, just upload a PNG or JPEG not a word processing document containing an image (it's the long way around).
Good luck,
Ton
12-27-2008 04:08 AM
Hi TonP,
Thank for th reply. However I am still very lost on how I should start with my GSP things, as it is a usb GPS and there isnt any example on usb. Any help or and link can I go to get more understanding will be appreicated.
Thank
Lawn
12-27-2008 12:40 PM
I assume the USB interface is a serial USB interface so you should be able to address it with VISA.
Ton
12-27-2008 02:13 PM
First thing is to check with the GPS vendor. I have a USB receiver from DeLorme that typically only works with their mapping application. However, from their website you can download a serial emulator application that lets you access it from any program capable of talking to a serial port. Your vendor might be able to provide a similar capability. Once communicating with the device all you have to be able to do is decode NEMA packets - and as has been said - there is code on the forum for doing that.
Mike...
05-06-2024 03:44 PM
Вот пример программы для опроса GPS или GPS+ Глонасс.
05-07-2024 12:49 AM - edited 05-07-2024 12:50 AM
Hi N.Krutikov,
you forgot to attach the subVI(s) and you don't follow the very good recommendations on how to handle serial communication!
There also seems to be a lot of Rube-Goldberg in your VI:
Why don't you cleanup the block diagram before posting?
05-09-2024 04:03 PM
Generally a GPS will output a constant stream of NMEA "sentences". These sentences are nothing but ASCII text in comma separated values. So all you need to do is parse the text of the sentences you are interested in.
Here's a document that covers the most popular NMEA sentences