Skip to content

Commit

Permalink
Update ublox_raw_parser.cpp
Browse files Browse the repository at this point in the history
  • Loading branch information
TakahashiJinxu authored Sep 4, 2020
1 parent f1782a5 commit 3dd2bb7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ublox2rinex/src/ublox_raw_parser.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ void epochCallback(const ublox2rinex::RxmRAWX::ConstPtr& msg)

for(int i = 0; i < msg->numMeas; i++)
{
FILE* fp = fopen("rinex_CA_20190828184706.txt", "a");
FILE* fp = fopen("rinex_CA_20190828184706.obs", "a");
if(i == 0)
{
fprintf(fp, "> %s%s\n", timestr, flagnumstr);
Expand All @@ -54,7 +54,7 @@ void epochCallback(const ublox2rinex::RxmRAWX::ConstPtr& msg)
int main(int argc, char **argv)
{

FILE* fp = fopen("rinex_CA_20190828184706.txt", "w");
FILE* fp = fopen("rinex_CA_20190828184706.obs", "w");
char strversion[64];
printspace(strversion, 60);
memcpy(strversion + 5, "3.03", 4);
Expand Down

0 comments on commit 3dd2bb7

Please sign in to comment.