Skip to content

Commit

Permalink
Fix GUI bug in RTKPOST
Browse files Browse the repository at this point in the history
Fix bug in RTKPOST GUI from last checkin.  The bug could cause incorrect
save and retrieval to the config file for the new varholdamb and
gainholdamb input parameters
  • Loading branch information
rtklibexplorer committed Mar 8, 2017
1 parent 979b858 commit 5e4d97b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/rtkpost/postopt.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -672,8 +672,8 @@ int ppp=PosMode->ItemIndex>=PMODE_PPP_KINEMA;
MaxAgeDiff ->Text =s.sprintf("%.1f",prcopt.maxtdiff );
RejectGdop ->Text =s.sprintf("%.1f",prcopt.maxgdop );
RejectThres ->Text =s.sprintf("%.1f",prcopt.maxinno );
VarHoldAmb ->Text =s.sprintf("%.1f",prcopt.varholdamb);
GainHoldAmb ->Text =s.sprintf("%.1f",prcopt.gainholdamb);
VarHoldAmb ->Text =s.sprintf("%.5f",prcopt.varholdamb);
GainHoldAmb ->Text =s.sprintf("%.5f",prcopt.gainholdamb);
SlipThres ->Text =s.sprintf("%.3f",prcopt.thresslip);
ARIter ->Text =s.sprintf("%d", prcopt.armaxiter);
MinFixSats ->Text =s.sprintf("%d", prcopt.minfixsats);
Expand Down

0 comments on commit 5e4d97b

Please sign in to comment.