forked from tomojitakasu/RTKLIB
-
Notifications
You must be signed in to change notification settings - Fork 2
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
feature/ogrp #1
Open
okurz-iis
wants to merge
14
commits into
Fraunhofer-IIS:master
Choose a base branch
from
okurz-iis:feature/ogrp
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
feature/ogrp #1
Changes from all commits
Commits
Show all changes
14 commits
Select commit
Hold shift + click to select a range
749c25f
rtklib 2.4.2 p4
tomojitakasu 3855c3d
rtklib 2.4.2 p4
tomojitakasu 827b577
rtklib 2.4.2 p4
tomojitakasu 4464e12
rtklib 2.4.2 p4
tomojitakasu 7bb8b4b
Mark windows executables as executable
okurz-iis cfcf471
Add CMake configuration file
okurz-iis ff986cd
data: Skytraq 5 Hz config with restart
okurz-iis 6d3c069
Add support for GPS L5 as second frequency
df33193
rtkrcv: Reuse previously used port
45d34b5
test: Add a position calculation test from novatel data
cstrobel-iis c6f4484
src: rcv: Add ogrp decoder
cstrobel-iis 13cf621
test: fhg: Add test for OGRP with position calculation
cstrobel-iis d3ddd99
app: rtkrcv: Add OGRP support
cstrobel-iis 1cd891c
rcv: ogrp: Skip channel measurements with unsupported GNSS/signal com…
cstrobel-iis File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
project(rtklib) | ||
cmake_minimum_required(VERSION 2.8) | ||
|
||
set(app_list str2str pos2kml rtkrcv rnx2rtkp convbin) | ||
foreach(app ${app_list}) | ||
set(dir app/${app}/gcc) | ||
message(STATUS "building ${app} in ${dir}") | ||
set(absolute_dir ${CMAKE_CURRENT_SOURCE_DIR}/${dir}) | ||
add_custom_target(${app} ALL | ||
COMMAND ${CMAKE_MAKE_PROGRAM} -C ${absolute_dir} | ||
COMMENT "Building ${app} in ${dir}" | ||
) | ||
add_custom_command(TARGET ${app} POST_BUILD | ||
COMMAND ${CMAKE_COMMAND} -E copy ${absolute_dir}/${app} ${CMAKE_BINARY_DIR} | ||
COMMENT "Copy ${app} to build directory" | ||
) | ||
install(PROGRAMS ${CMAKE_BINARY_DIR}/${app} DESTINATION bin) | ||
endforeach() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
Empty file.
Empty file.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Empty file.
Empty file.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This TODO needs to be solved before we have any chance of merging it upstream.