rtklibexplorer / RTKLIB

A version of RTKLIB optimized for low cost GNSS receivers, especially u-blox receivers. It is based on RTKLIB 2.4.3 and is kept reasonably closely synced to that branch. This software is provided “AS IS” without any warranties of any kind so please be careful, especially if using it in any kind of real-time application.
http://rtkexplorer.com/
Other
675 stars 263 forks source link

add support for obscode debug rnx2rtkp #491

Closed charleschouette closed 1 month ago

ourairquality commented 1 month ago

Yes, thank you, I missed that obs2code() needs an empty string to terminate it's loop. But might an alternative be to have obs2code() respect MAXCODE?

static char *obscodes[MAXCODE + 1] = ...

for (int i = 1; i <= MAXCODE; i++) ...
charleschouette commented 1 month ago

Actually I needed a quick fix so I just did this commit quickly. I think your solution is prettier.

charleschouette commented 1 month ago

I changed with your solution that I prefer. Thanks.