Skip to content

Commit 423ecd2

Browse files
committed
input format options: correct, and add CLK
rtkrcv was missing 'rinex' and 'clk'. qt app was missing 'unicore' and had 'sbas' and 'nmea' for which there is no support. win app was missing 'unicore', 'rinex' and 'clk' gui apps: add 'CLK' as an input format as there is support for this in rtksvr.c
1 parent d180a49 commit 423ecd2

5 files changed

Lines changed: 5 additions & 3 deletions

File tree

app/consapp/rtkrcv/rtkrcv.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -185,7 +185,7 @@ static const char *pathopts[]={ /* path options help */
185185
#define FLGOPT "0:off,1:std+2:age/ratio/ns"
186186
#define ISTOPT "0:off,1:serial,2:file,3:tcpsvr,4:tcpcli,6:ntripcli,7:ftp,8:http"
187187
#define OSTOPT "0:off,1:serial,2:file,3:tcpsvr,4:tcpcli,5:ntripsvr,9:ntripcas,11:udpcli"
188-
#define FMTOPT "0:rtcm2,1:rtcm3,2:oem4,4:ubx,5:swift,6:hemis,7:skytraq,8:javad,9:nvs,10:binex,11:rt17,12:sbf,14:unicore,15:sp3"
188+
#define FMTOPT "0:rtcm2,1:rtcm3,2:oem4,4:ubx,5:swift,6:hemis,7:skytraq,8:javad,9:nvs,10:binex,11:rt17,12:sbf,14:unicore,15:rinex,16:sp3,17:clk"
189189
#define NMEOPT "0:off,1:latlon,2:single"
190190
#define SOLOPT "0:llh,1:xyz,2:enu,3:nmea,4:stat"
191191
#define MSGOPT "0:all,1:rover,2:base,3:corr"

app/qtapp/rtknavi_qt/instrdlg.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@ InputStrDialog::InputStrDialog(QWidget *parent)
3636
noFormats++;
3737
}
3838
ui->cBFormat3->addItem(tr("SP3"));
39+
ui->cBFormat3->addItem(tr("CLK"));
3940

4041
cmdOptDialog = new CmdOptDialog(this);
4142
rcvOptDialog = new RcvOptDialog(this);

app/qtapp/rtknavi_qt/navimain.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ static int strfmt[] = { /* stream formats */
9494
#define FLGOPT "0:off,1:std+2:age/ratio/ns"
9595
#define ISTOPT "0:off,1:serial,2:file,3:tcpsvr,4:tcpcli,6:ntripcli,7:ftp,8:http"
9696
#define OSTOPT "0:off,1:serial,2:file,3:tcpsvr,4:tcpcli,5:ntripsvr,9:ntripcas"
97-
#define FMTOPT "0:rtcm2,1:rtcm3,2:oem4,3:oem3,4:ubx,5:ss2,6:hemis,7:skytraq,8:javad,9:nvs,10:binex,11:rt17,12:sbf,13:tersus,14:rinex,15:sp3,16:clk,17:sbas,18:nmea"
97+
#define FMTOPT "0:rtcm2,1:rtcm3,2:oem4,4:ubx,5:swift,6:hemis,7:skytraq,8:javad,9:nvs,10:binex,11:rt17,12:sbf,14:unicore,15:rinex,16:sp3,17:clk"
9898
#define NMEOPT "0:off,1:latlon,2:single"
9999
#define SOLOPT "0:llh,1:xyz,2:enu,3:nmea,4:stat"
100100

app/winapp/rtknavi/instrdlg.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,7 @@ __fastcall TInputStrDialog::TInputStrDialog(TComponent* Owner)
3838
NRcv++;
3939
}
4040
Format3->Items->Add("SP3");
41+
Format3->Items->Add("CLK");
4142
}
4243
//---------------------------------------------------------------------------
4344
void __fastcall TInputStrDialog::FormShow(TObject *Sender)

app/winapp/rtknavi/naviopt.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ static char proxyaddr[MAXSTR]=""; /* proxy address */
4747
#define FLGOPT "0:off,1:std+2:age/ratio/ns"
4848
#define ISTOPT "0:off,1:serial,2:file,3:tcpsvr,4:tcpcli,6:ntripcli,7:ftp,8:http"
4949
#define OSTOPT "0:off,1:serial,2:file,3:tcpsvr,4:tcpcli,5:ntripsvr,9:ntripcas"
50-
#define FMTOPT "0:rtcm2,1:rtcm3,2:oem4,4:ubx,5:swift,6:hemis,7:skytraq,8:javad,9:nvs,10:binex,11:rt17,12:sbf,15:sp3"
50+
#define FMTOPT "0:rtcm2,1:rtcm3,2:oem4,4:ubx,5:swift,6:hemis,7:skytraq,8:javad,9:nvs,10:binex,11:rt17,12:sbf,14:unicore,15:rinex,16:sp3,17:clk"
5151
#define NMEOPT "0:off,1:latlon,2:single"
5252
#define SOLOPT "0:llh,1:xyz,2:enu,3:nmea,4:stat"
5353
#define MSGOPT "0:all,1:rover,2:base,3:corr"

0 commit comments

Comments
 (0)