GPS logger?


Results 1 to 12 of 12

Thread: GPS logger?

Threaded View

  1. #2
    Join Date
    Feb 2004
    Location
    Germany
    Posts
    762


    Did you find this post helpful? Yes | No

    Default

    Hmmm, where do I start . . .

    ok, let's try to start with the NMEA protocol.

    I would focus on one single sentence (like GPRMC) and discard all the others.

    Right after reception of that sentence I would extract LAT, LON, etc, and discard all unneeded Bytes.

    With some smart code you can squeeze TIM, LAT, LON, and ALT into a 12 Byte (or even smaller) Data Packet.
    (with full accuracy!)

    Now think about your logging interval:
    Does it necessarily have to be one log entry per second?
    (wouldn't one every 10 (or 30 or . . .) seconds do?)
    And do you really have to log data 24hrs a day?
    (even if there is no movement?)

    with that kind of data compression and a reasonable logging interval you can minimize Storage requirements.

    So some EEPROM or FRAM could probably do.

    To save even more memory you could check and
    cleanup the log regularly (when the system is idle)

    Imagine there is an (almost) linear track from A and B at about constant speed between A to B.
    So all you really need is the data for A and B, everything in between can be cleared.

    Agreed,
    this "cleanup" procedure will require some math that is not that easy to implement having only the Integer brain of a PIC.

    However,
    the active components for the Logger shoudn't be much more than about $25 (dependant on how much Memory you need)

    a PIC and some EEPROM or FRAM

    I can tell it is possible,
    I have built many systems like that.
    (NavMicroSystems)
    Last edited by NavMicroSystems; - 29th July 2005 at 19:20.
    regards

    Ralph

    _______________________________________________
    There are only 10 types of people:
    Those who understand binary, and those who don't ...
    _______________________________________________



Similar Threads

  1. GPS $GPRMC to PIC16F684. Need help with SERIN2
    By xnihilo in forum mel PIC BASIC Pro
    Replies: 5
    Last Post: - 27th November 2009, 09:47
  2. Replies: 1
    Last Post: - 27th July 2008, 06:14
  3. GPS clock timing !
    By bethr in forum mel PIC BASIC Pro
    Replies: 11
    Last Post: - 3rd July 2008, 20:11
  4. Replies: 2
    Last Post: - 28th April 2006, 12:10
  5. GPS Receiver
    By lester in forum Adverts
    Replies: 2
    Last Post: - 22nd February 2006, 12:47

Members who have read this thread : 0

You do not have permission to view the list of names.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts