Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

REQUEST FOR COMMENT make arduino optional #36

Open
wants to merge 41 commits into
base: master
Choose a base branch
from

Commits on Jul 27, 2017

  1. Configuration menu
    Copy the full SHA
    39f3911 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    813f8be View commit details
    Browse the repository at this point in the history
  3. feat: continue Arduino compat declarations

    replace 0x00 with nullptr
    close2 committed Jul 27, 2017
    Configuration menu
    Copy the full SHA
    31fc161 View commit details
    Browse the repository at this point in the history

Commits on Aug 7, 2017

  1. feat: add str_P to Platform.h

    also deactivate copying of string in parse.
    close2 committed Aug 7, 2017
    Configuration menu
    Copy the full SHA
    852821b View commit details
    Browse the repository at this point in the history
  2. feat[Platforms]: adapt DMS.h DMS.cpp Location.h

    to use Platform.h
    
    fix PI (std:atan(1)*4 is not a constexpr)
    close2 committed Aug 7, 2017
    Configuration menu
    Copy the full SHA
    e9706e3 View commit details
    Browse the repository at this point in the history

Commits on Aug 19, 2017

  1. Configuration menu
    Copy the full SHA
    491cf1d View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    44153e6 View commit details
    Browse the repository at this point in the history

Commits on Aug 20, 2017

  1. Configuration menu
    Copy the full SHA
    c714716 View commit details
    Browse the repository at this point in the history
  2. feat: add (hopefully) working linux serial example.

    untested.  My gps module did not get a fix :(
    close2 committed Aug 20, 2017
    Configuration menu
    Copy the full SHA
    cfe0977 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    9058e01 View commit details
    Browse the repository at this point in the history

Commits on Aug 21, 2017

  1. feat: NeoGPS finally outputs something

    using dummy input.
    close2 committed Aug 21, 2017
    Configuration menu
    Copy the full SHA
    a8b7fbe View commit details
    Browse the repository at this point in the history

Commits on Aug 25, 2017

  1. feat: add some files to gitignore

    add non working CMakeLists.txt
    close2 committed Aug 25, 2017
    Configuration menu
    Copy the full SHA
    e9f328f View commit details
    Browse the repository at this point in the history

Commits on Aug 30, 2017

  1. feat: introduced NEO_GPS_{STREAM,PORT,SYSTEM}

    which encapsulate platform dependent functionality.
    close2 committed Aug 30, 2017
    Configuration menu
    Copy the full SHA
    b584def View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    482cfde View commit details
    Browse the repository at this point in the history

Commits on Aug 31, 2017

  1. feat: remove linux serial.*

    move code into GpsPort directly.
    close2 committed Aug 31, 2017
    Configuration menu
    Copy the full SHA
    7728a72 View commit details
    Browse the repository at this point in the history

Commits on Sep 1, 2017

  1. feat: linux code

    close2 committed Sep 1, 2017
    Configuration menu
    Copy the full SHA
    b096364 View commit details
    Browse the repository at this point in the history

Commits on Sep 13, 2017

  1. Configuration menu
    Copy the full SHA
    5586207 View commit details
    Browse the repository at this point in the history

Commits on Sep 19, 2017

  1. Configuration menu
    Copy the full SHA
    71fa713 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    5c2dd11 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    aff5dd9 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    b8082fc View commit details
    Browse the repository at this point in the history
  5. fix: cast uint_t to int before printing (<<)

    std::cout treats uint_t like chars
    close2 committed Sep 19, 2017
    Configuration menu
    Copy the full SHA
    5facb6c View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    d6ae9ad View commit details
    Browse the repository at this point in the history
  7. fix: remove a.out

    close2 committed Sep 19, 2017
    Configuration menu
    Copy the full SHA
    18c8488 View commit details
    Browse the repository at this point in the history

Commits on Sep 20, 2017

  1. feat: add + in front of all number prints

    if number is uint8_t std::cout will print the character (usually uint8_t
    is typedef'd to unsigned char.
    
    adding a + in front of the number tells << to print the number:
    outs << number → outs << +number
    close2 committed Sep 20, 2017
    Configuration menu
    Copy the full SHA
    92d1ed7 View commit details
    Browse the repository at this point in the history
  2. Revert "doc: fix minor documentation mistakes"

    This reverts commit 8a1ec52.
    close2 committed Sep 20, 2017
    Configuration menu
    Copy the full SHA
    d3f96eb View commit details
    Browse the repository at this point in the history
  3. Revert "Revert "doc: fix minor documentation mistakes""

    This reverts commit d3f96eb.
    close2 committed Sep 20, 2017
    Configuration menu
    Copy the full SHA
    43fb3e3 View commit details
    Browse the repository at this point in the history
  4. Revert "feat: add some files to gitignore"

    This reverts commit e9f328f.
    close2 committed Sep 20, 2017
    Configuration menu
    Copy the full SHA
    a41ab20 View commit details
    Browse the repository at this point in the history
  5. Revert "feat: NeoGPS finally outputs something"

    This reverts commit a8b7fbe.
    close2 committed Sep 20, 2017
    Configuration menu
    Copy the full SHA
    20971ba View commit details
    Browse the repository at this point in the history
  6. Revert "feat: minor tweaks to get linux version to compile"

    This reverts commit 9058e01.
    close2 committed Sep 20, 2017
    Configuration menu
    Copy the full SHA
    745ad6e View commit details
    Browse the repository at this point in the history
  7. Revert "feat: add (hopefully) working linux serial example."

    This reverts commit cfe0977.
    close2 committed Sep 20, 2017
    Configuration menu
    Copy the full SHA
    518e218 View commit details
    Browse the repository at this point in the history
  8. Revert "feat: continue work for a linux example"

    This reverts commit c714716.
    close2 committed Sep 20, 2017
    Configuration menu
    Copy the full SHA
    7ff96cb View commit details
    Browse the repository at this point in the history
  9. Revert "feat: continue converting to template functions"

    This reverts commit 44153e6.
    close2 committed Sep 20, 2017
    Configuration menu
    Copy the full SHA
    0722cf9 View commit details
    Browse the repository at this point in the history
  10. Revert "feat: introduce templates for arduino classes"

    This reverts commit 491cf1d.
    close2 committed Sep 20, 2017
    Configuration menu
    Copy the full SHA
    0b2e59f View commit details
    Browse the repository at this point in the history
  11. Revert "feat[Platforms]: adapt DMS.h DMS.cpp Location.h"

    This reverts commit e9706e3.
    close2 committed Sep 20, 2017
    Configuration menu
    Copy the full SHA
    f2fbf1f View commit details
    Browse the repository at this point in the history
  12. Revert "feat: add str_P to Platform.h"

    This reverts commit 852821b.
    close2 committed Sep 20, 2017
    Configuration menu
    Copy the full SHA
    0b62572 View commit details
    Browse the repository at this point in the history
  13. Revert "feat: continue Arduino compat declarations"

    This reverts commit 31fc161.
    close2 committed Sep 20, 2017
    Configuration menu
    Copy the full SHA
    7908a38 View commit details
    Browse the repository at this point in the history
  14. Revert "feat: extract functionality into Arduino compat. libs"

    This reverts commit 813f8be.
    close2 committed Sep 20, 2017
    Configuration menu
    Copy the full SHA
    2b7d62a View commit details
    Browse the repository at this point in the history
  15. Revert "feat: allow compilation without ARDUINO"

    This reverts commit 39f3911.
    close2 committed Sep 20, 2017
    Configuration menu
    Copy the full SHA
    7e6a90f View commit details
    Browse the repository at this point in the history
  16. Configuration menu
    Copy the full SHA
    ca93743 View commit details
    Browse the repository at this point in the history
  17. Configuration menu
    Copy the full SHA
    a4c84c1 View commit details
    Browse the repository at this point in the history