1 Star 1 Fork 2

今夜无眠/GNSS_Viewer_V2

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
resource.h 84.00 KB
一键复制 编辑 原始数据 按行查看 历史
Alex Lin 提交于 2018-07-18 16:21 . 2.0.326
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917
//{{NO_DEPENDENCIES}}
// Microsoft Visual C++ generated include file.
// Used by NewGNSS_Viewer.rc
//
#define IDC_SENT_CMD 2
#define IDC_SENT_BIN 5
#define IDM_ABOUTBOX 0x0010
#define IDD_ABOUTBOX 100
#define IDS_ABOUTBOX 101
#define IDD_GPS_DIALOG 102
#define IDS_WAITROM_MSG 102
#define IDS_ROMWRITINGOK_MSG 103
#define IDR_HTML_CON1PPS_NMEA_DELAY 104
#define IDS_FLASHWRITINGOK_MSG 104
#define IDB_EARTH 133
#define IDR_MAINMENU 138
#define IDB_MESSAGE 140
#define IDB_GL_DIS 145
#define IDB_GP_DIS 147
#define IDB_COORBAR 148
#define IDB_GP_ACT 149
#define IDB_EXIT 159
#define IDB_TWODRMS_T 164
#define IDB_CEP50_T 166
#define IDB_WGS84X 171
#define IDB_WGS84X1 171
#define IDB_WGS84Y 172
#define IDB_NORTH 173
#define IDB_WGS84Z 174
#define IDB_EAST 175
#define IDB_UP 176
#define IDB_SCALE_T 177
#define IDB_COOR_T 178
#define IDB_DATE 179
#define IDB_TIME 180
#define IDB_ALTITUDE 181
#define IDB_DIRECTION 182
#define IDB_LATITUDE 183
#define IDB_LONGITUDE 184
#define IDB_HDOP 185
#define IDB_SPEED 187
#define IDB_RESPONSE 188
#define IDI_MAINFRAME 193
#define IDD_LOADERDLG 194
#define IDR_BASE_PROM_891200 195
#define IDR_PROM_BIN 195
#define IDD_ROMWRITERDLG 196
#define IDD_SYSTEM_RESET 197
#define IDD_CON_SRE_POR 198
#define IDD_CON_NMEA_MSG 199
#define IDD_CON_DATUM 200
#define IDD_CON_DOP 202
#define IDD_DLGCOMPRESS 208
#define IDD_DLGSETFILTER 210
#define IDD_LOG_FILTER_DLG 211
#define IDD_SOFTWAREIMAGEDOWNLOAD 213
#define IDD_CFG_SUBSEC_REG 214
#define IDD_GETRGSDLG 215
#define IDB_COMMAND 216
#define IDB_SYSTEMRESTART 216
#define IDD_WAITACK 225
#define IDD_PLAYER_DIALOG 227
#define IDD_SCANGPS_DLG 229
#define IDD_CFGMSG 230
#define IDD_CONFIG_MSG_OUT 230
#define IDD_GETEPHEMERIS 233
#define IDD_WAITLOGREAD 235
#define IDD_SAVENMEA 236
#define IDD_FTPDLG 237
#define IDB_FTP_BANNER 240
#define IDB_AGPS 241
#define IDD_AGPS_CONFIG 243
#define IDD_CONFIG_POSITIONRATE 268
#define IDD_CON_POSITION_PINNING 292
#define IDD_CON_PINNING 294
#define IDD_CON_MULTI_MODE 295
#define IDD_CON_REGISTER 297
#define IDD_CON_1PPS 298
#define IDD_CFG_GPS_MEAS_MODE 298
#define IDB_NOISE 300
#define IDB_BITMAP15 305
#define IDB_CLOCK 305
#define IDD_CONFIG_POWER_MODE 306
#define IDD_CON_MULTIPATH 308
#define IDD_CON_WAAS 310
#define IDD_CON_BINARY_MSG 312
#define IDD_GETALMANAC 314
#define IDD_CFG_TIMING 316
#define IDD_CONFIG_BINARY_INTERVAL 318
#define IDD_CFG_TIMING_CABLE_DELAY 320
#define IDD_1PPS_DOP 322
#define IDD_1PPS_ELEVCNR 324
#define IDD_1PPS_MONITOR 327
#define IDD_PROPRIETARY_NMEA 328
#define IDD_DEVICE_ADDING 331
#define IDB_GL_ACT 334
#define IDR_GNSS_PRELOADER_4800 344
#define IDR_GNSS_PRELOADER_9600 345
#define IDR_GNSS_PRELOADER_19200 346
#define IDD_CON_NMEA_COMPORT 347
#define IDR_GNSS_PRELOADER_38400 347
#define IDR_GNSS_PRELOADER_57600 348
#define IDD_CON_NMEA_TALKER 349
#define IDR_GNSS_PRELOADER_115200 349
#define IDD_IQIBLA_TEST 350
#define IDR_GNSS_PRELOADER_230400 350
#define IDD_CON_PROPRIETARY 351
#define IDR_GPS_PRELOADER_4800 351
#define IDD_CONFIG_PWR_SVNG_PRM_ROM 352
#define IDR_GPS_PRELOADER_9600 352
#define IDD_CON_ANTENNA_DETECT 353
#define IDR_GPS_PRELOADER_19200 353
#define IDD_CON_1PPS_NMEA_DELAY 354
#define IDR_GPS_PRELOADER_38400 354
#define IDR_GPS_PRELOADER_57600 355
#define IDR_GPS_PRELOADER_115200 356
#define IDD_NI_BINARY_KML 357
#define IDR_GPS_PRELOADER_230400 357
#define IDD_CON_INTERFERENCE 358
#define IDR_GPS_SREC_4800 358
#define IDR_GPS_SREC_9600 359
#define IDR_GPS_SREC_19200 360
#define IDD_SET_GNSS_EPHEMERIS 361
#define IDR_GPS_SREC_38400 361
#define IDD_GETTIMECORR 362
#define IDR_GPS_SREC_57600 362
#define IDD_SETTIMECORR 363
#define IDR_GPS_SREC_115200 363
#define IDD_CONFIG_1PPS_OUTPUT_MODE 364
#define IDR_GPS_SREC_230400 364
#define IDD_TIMING_START 365
#define IDD_CONFIG_NOISE_PWR_CTRL 367
#define IDD_IQ_PLOT 368
#define IDR_GNSS_SREC_4800 380
#define IDR_GNSS_SREC_9600 381
#define IDR_GNSS_SREC_19200 382
#define IDR_GNSS_SREC_38400 383
#define IDR_GNSS_SREC_57600 384
#define IDR_GNSS_SREC_115200 385
#define IDR_GNSS_SREC_230400 386
#define IDR_GG12A_PRELOADER_4800 390
#define IDR_GG12A_PRELOADER_9600 391
#define IDR_GG12A_PRELOADER_19200 392
#define IDR_GG12A_PRELOADER_38400 393
#define IDR_GG12A_PRELOADER_57600 394
#define IDR_GG12A_PRELOADER_115200 395
#define IDR_GG12A_PRELOADER_230400 396
#define IDD_PASSWD 397
#define IDR_GPS_CREATETAG_SREC_115200 398
#define IDR_GPS_REMOVETAG_SREC_115200 399
#define IDD_CFG_SBAS 400
#define IDD_CONFIG_SAGPS 401
#define IDD_CFG_QZSS 402
#define IDR_GNSS_CREATETAG_SREC_115200 403
#define IDR_GNSS_REMOVETAG_SREC_115200 404
#define IDD_CONFIG_1PPS_PULSE_WIDTH 405
#define IDD_CFG_INF_DTE_CTRL 406
#define IDD_CFG_NMBI_OUT_DES 407
#define IDD_CFG_PARAM_SEARCH_ENG_NUM 408
#define IDR_OLDEPH 415
#define IDD_HOSTBASE_DL 416
#define IDD_FIRMWARE_DL 417
#define IDD_CFG_POS_FIX_NAV_MASK 418
#define IDD_CONFIG_NMEA_INTERVAL_V8 419
#define IDD_PARALLEL_DL 420
#define IDD_NMEA_CHECKSUM_CAL 421
#define IDD_CFG_REFTIME2GPSTIME 422
#define IDD_BIN_CHECKSUM_CAL 424
#define IDR_V8_DL_SREC_115200 425
#define IDR_V8_DL_SREC_230400 426
#define IDR_V8_DL_SREC_460800 427
#define IDB_GPS_SNR_T 429
#define IDD_CFG_GNSS_CTLN_TPE 429
#define IDB_BEIDOU_SNR_T 430
#define IDB_GA_SNR_T 431
#define IDB_TTFF 432
#define IDB_BOOT_STATUS 433
#define IDB_SW_VER 434
#define IDB_SW_REV 435
#define IDB_BD_ACT 436
#define IDB_BD_DIS 437
#define IDB_INFORMATION_T 451
#define IDB_EARTH_T 452
#define IDB_SCATTER_SNR_T 453
#define IDB_DOWNLOAD_T 454
#define IDB_ICON256 454
#define IDD_DIALOG2 455
#define IDD_SETUP 455
#define IDD_DIALOG3 457
#define IDD_EXTERNAL_SREC 457
#define IDD_DIALOG4 458
#define IDD_EARTH_SETTING 458
#define IDD_RAW_MEAS_OUT_CONV 459
#define IDR_V8_AT_SREC 460
#define IDD_VERIFY_FW 460
#define IDD_CONFIG_1PPS_FREQ_OUTPUT 461
#define IDD_CONFIG_NMEA_INTERVAL2_V8 462
#define IDD_CONFIG_ERICSSON_INTERVAL 463
#define IDD_CFG_BIN_MEA_DAT_OUT 464
#define IDD_CONFIG_SERIAL_NUMBER 465
#define IDD_CONFIG_DGPS 466
#define IDD_CONFIG_SMOOTH_MODE 467
#define IDD_CONFIG_TIME_STAMPING 468
#define IDD_CFG_LEAP_SECONDS 469
#define IDD_CFG_PRM_SRCH_ENG_SLP_CRT 470
#define IDB_GA_ACT 471
#define IDD_GPSDO_DOWNLOAD 471
#define IDB_GA_DIS 472
#define IDD_CFG_DATUM_INDEX 473
#define IDR_EXEC1 473
#define IDR_IQPLOT 473
#define IDB_EARTH1 474
#define IDB_EARTH2 475
#define IDD_GEOFENCE 475
#define IDB_EARTH3 476
#define IDB_EARTH4 477
#define IDD_CFG_PSCM_DEV_ADDR 477
#define IDB_EARTH5 478
#define IDB_RTK_TABLE 478
#define IDB_EARTH6 479
#define IDD_IO_TEST 479
#define IDD_IO_TESTER 479
#define IDR_UPGRADE_DOWNLOAD_PROM 480
#define IDB_RTK_AGE 481
#define IDB_RTK_RATIO 482
#define IDB_INFORMATION_B 483
#define IDB_RTK_INFO_T 484
#define IDB_RTK_INFO_B 485
#define IDB_EAST_PROJECTION 486
#define IDB_BASELINE_LENGTH 487
#define IDB_NORTH_PROJECTION 488
#define IDB_BASELINE_COURSE 489
#define IDB_UP_PROJECTION 490
#define IDB_TIME2 491
#define IDB_DATE2 492
#define IDR_UPGRADE_DOWNLOAD_PROM2 493
#define IDD_HOSTLOG 494
#define IDB_ALTITUDE2 495
#define IDD_CFG_RTK_REF_POSITION 496
#define IDD_CONFIG_RTCM_MEA_DAT_OUT 497
#define IDD_DR_TEST 498
#define IDD_SAVE_BINARY_NOPARSING 499
#define IDD_CFG_SBAS2 500
#define IDB_CYCLE_SLIP 501
#define IDD_CONFIG_WATCH_TRACKBACK 502
#define IDB_GI_SNR_T 503
#define IDD_SETUP2 504
#define IDC_CONNECT 1000
#define IDC_CLOSE 1001
#define IDC_SETORIGIN 1002
#define IDC_COMPORT 1003
#define IDC_BAUDRATE 1004
#define IDC_EDIT1 1004
#define IDC_RECORD 1004
#define IDC_EDIT2 1005
#define IDC_PLAY 1005
#define IDC_EDIT3 1006
#define IDC_COOR 1006
#define IDC_EDIT4 1007
#define IDC_ENUSCALE 1007
#define IDC_EDIT5 1008
#define IDC_MAPSCALE 1008
#define IDC_DATE 1009
#define IDC_EDIT6 1009
#define IDC_EDIT7 1010
#define IDC_TIME 1010
#define IDC_EDIT8 1011
#define IDC_LONGITUDE 1011
#define IDC_LATITUDE 1012
#define IDC_POWERSAVING_8 1012
#define IDC_EDIT_F034 1012
#define IDC_HDOP 1013
#define IDC_POWERSAVING_9 1013
#define IDC_EDIT_F090 1013
#define IDC_SPEED 1014
#define IDC_EDIT15 1014
#define IDC_PARAM10 1014
#define IDC_EDIT_F094 1014
#define IDC_ALTITUDE 1015
#define IDC_EDIT_F098 1015
#define IDC_RECORD2 1016
#define IDC_CENTER_ALT 1016
#define IDC_EDIT_F09C 1016
#define IDC_2DRMS 1017
#define IDC_EDIT_F35 1017
#define IDC_EDIT_100C 1017
#define IDC_CEP50 1018
#define IDC_EDIT_100C2 1018
#define IDC_EDIT_1008 1018
#define IDC_CLEAR 1019
#define IDC_GPGGA 1019
#define IDC_EDIT_F0A0 1019
#define IDC_NOISE_T 1020
#define IDC_GPGLL 1020
#define IDC_EDIT_F0A4 1020
#define IDC_GPGSA 1021
#define IDC_CENTER_ALT2 1021
#define IDC_SCATTER_ALT 1021
#define IDC_EDIT_F0A8 1021
#define IDC_GPVTG 1022
#define IDC_SETORIGIN_USER 1022
#define IDC_EDIT_F09C2 1022
#define IDC_EDIT_F0AC 1022
#define IDC_GPGSV 1023
#define IDC_KNUM_ENABLE 1023
#define IDC_EDIT_F028 1023
#define IDC_GPRMC 1024
#define IDC_KNUM_DISABLE 1024
#define IDR_MANIFEST 1024
#define IDC_EDIT_F29 1024
#define IDC_EDIT_F030 1024
#define IDC_DIRECTION 1025
#define IDC_GPZDA 1026
#define IDC_LIST1 1026
#define IDC_LIST 1026
#define IDC_POINTS 1026
#define IDC_DIRECTION2 1026
#define IDC_RTK_RATIO 1026
#define IDC_FILE_LIST 1026
#define IDC_PROGRESS1 1027
#define IDC_2DRMS2 1027
#define IDC_2DRMS_2 1027
#define IDC_LODER 1028
#define IDC_CEP50_2 1028
#define IDC_ROMWRITER 1029
#define IDC_FINISH 1030
#define IDC_ANIMATE1 1031
#define IDC_NO_OUTPUT 1033
#define IDC_BUTTON2 1034
#define IDC_LIST2 1034
#define IDC_RESPONSE 1034
#define IDC_NMEA_OUTPUT 1035
#define IDC_SRMODE 1035
#define IDC_ADD2 1035
#define IDC_BIN_OUTPUT 1036
#define IDC_SRYEAR 1036
#define IDC_SCANALL 1037
#define IDC_SRMONTH 1037
#define IDC_SCANPORT 1038
#define IDC_SRDAY 1038
#define IDC_SCANBAUDRATE 1039
#define IDC_SRHOUR 1039
#define IDC_SRMIN 1040
#define IDC_SRSEC 1041
#define IDC_SRLAT 1042
#define IDC_SRLON 1043
#define IDC_SRALT 1044
#define IDC_CON_COMPORT 1045
#define IDC_COMBO1 1046
#define IDC_CON_STOPBIT 1046
#define IDC_CON_PARITY 1047
#define IDC_SPINGDOP 1047
#define IDC_CON_BAUD 1048
#define IDC_EDITGDOP 1048
#define IDC_CON_BAUD2 1049
#define IDC_SPINPDOP 1049
#define IDC_EDITHDOP 1050
#define IDC_CHECK1 1052
#define IDC_CHECK2 1053
#define IDC_CHECK3 1054
#define IDC_CHECK4 1055
#define IDC_BTN1 1056
#define IDC_ENABLE_EGNOS 1056
#define IDC_CHECK_M13 1056
#define IDC_BTN2 1057
#define IDC_ENABLE_MSAS 1057
#define IDC_LIST4 1057
#define IDC_CHECK80 1057
#define IDC_BTN3 1058
#define IDC_LIST3 1058
#define IDC_MESSAGE 1058
#define IDC_ENABLE_GAGAN 1058
#define IDC_CHECK81 1058
#define IDC_BTN4 1059
#define IDC_FIFOMODE 1059
#define IDC_KNUM_LIST 1059
#define IDC_CHECK82 1059
#define IDC_EDITTMIN 1060
#define IDC_CHECK83 1060
#define IDC_EDITTMAX 1061
#define IDC_EMAXT 1061
#define IDC_CHECK84 1061
#define IDC_EDITDMIN 1062
#define IDC_EMINT 1062
#define IDC_CHECK85 1062
#define IDC_EDITDMAX 1063
#define IDC_EMAXD 1063
#define IDC_CHECK86 1063
#define IDC_EDITVMIN 1064
#define IDC_EMIND 1064
#define IDC_CHECK87 1064
#define IDC_EDITVMAX 1065
#define IDC_EMAXV 1065
#define IDC_CHECK88 1065
#define IDC_EMINV 1066
#define IDC_CHECK89 1066
#define IDC_LOGENABLE 1067
#define IDC_CHECK90 1067
#define IDC_EMIC 1068
#define IDC_CHECK91 1068
#define IDC_HOTSTART 1069
#define IDC_CHECK92 1069
#define IDC_WARMSTART 1070
#define IDC_CHECK93 1070
#define IDC_COLDSTART 1071
#define IDC_CHECK94 1071
#define IDC_DOWNLOAD 1072
#define IDC_CHECK95 1072
#define IDC_BPLAYER 1073
#define IDC_CHECK96 1073
#define IDC_CHECK5 1074
#define IDC_EDIT9 1074
#define IDC_TTFF 1074
#define IDC_CHECK97 1074
#define IDC_CHECK6 1075
#define IDC_COMBO2 1075
#define IDC_CHECK98 1075
#define IDC_CFGNMEA_ATT 1076
#define IDC_CHECK7 1076
#define IDC_CHECK99 1076
#define IDC_CHECK8 1077
#define IDC_SV 1077
#define IDC_CHECK100 1077
#define IDC_CHECK9 1078
#define IDC_TEXT 1078
#define IDC_CHECK101 1078
#define IDC_CHECK10 1079
#define IDC_HOST 1079
#define IDC_CHECK102 1079
#define IDC_CHECK11 1080
#define IDC_NAME 1080
#define IDC_CHECK103 1080
#define IDC_CHECK12 1081
#define IDC_PWD 1081
#define IDC_CHECK104 1081
#define IDC_CHECK13 1082
#define IDC_PORT 1082
#define IDC_CHECK105 1082
#define IDC_CHECK14 1083
#define IDC_COMBO_STATUS 1083
#define IDC_CHECK106 1083
#define IDC_ABOUT_VERSION 1084
#define IDC_CHECK15 1084
#define IDC_CHECK16 1085
#define IDC_CHECK17 1086
#define IDC_CHECK18 1087
#define IDC_CHECK19 1088
#define IDC_CHECK108 1088
#define IDC_CHECK20 1089
#define IDC_LBL_MIC 1089
#define IDC_CHECK109 1089
#define IDC_BUTTON5 1090
#define IDC_CHECK21 1090
#define IDC_CHECK110 1090
#define IDC_CHECK22 1091
#define IDC_CLEAN_MSG 1091
#define IDC_ECOM_CALIB 1091
#define IDC_CHECK111 1091
#define IDC_BROWSE 1092
#define IDC_CHECK23 1092
#define IDC_CHECK112 1092
#define IDC_CHECK24 1093
#define IDC_FIRMWARE_PATH 1093
#define IDC_CHECK113 1093
#define IDC_CHECK25 1094
#define IDC_CHECK114 1094
#define IDC_CHECK26 1095
#define IDC_CHECK115 1095
#define IDC_CHECK27 1096
#define IDC_LBL_DOWNLOAD 1096
#define IDC_CHECK116 1096
#define IDC_CHECK28 1097
#define IDC_ROM_MODE 1097
#define IDC_CHECK117 1097
#define IDC_CHECK29 1098
#define IDC_POS_PINNING 1098
#define IDC_IN_LOADER 1098
#define IDC_CHECK118 1098
#define IDC_CHECK30 1099
#define IDC_PINN_ATTRIBUTE 1099
#define IDC_CHECK119 1099
#define IDC_CHECK31 1100
#define IDC_STATIC_PINNING 1100
#define IDC_CHECK120 1100
#define IDC_CHECK32 1101
#define IDC_PIN_SP 1101
#define IDC_STATIC_PINNING2 1101
#define IDC_CHECK121 1101
#define IDC_CHECK33 1102
#define IDC_PIN_CNT 1102
#define IDC_CHECK122 1102
#define IDC_CHECK34 1103
#define IDC_UPIN_SP 1103
#define IDC_CHECK123 1103
#define IDC_CHECK35 1104
#define IDC_UPIN_TH 1104
#define IDC_CHECK124 1104
#define IDC_CHECK36 1105
#define IDC_UPIN_DIS 1105
#define IDC_CHECK125 1105
#define IDC_CHECK37 1106
#define IDC_CHECK126 1106
#define IDC_CHECK38 1107
#define IDC_CHECK127 1107
#define IDC_CHECK39 1108
#define IDC_MULTI_MODE 1108
#define IDC_CHECK128 1108
#define IDC_CHECK40 1109
#define IDC_MULTIMODE_ATTR 1109
#define IDC_CHECK129 1109
#define IDC_CHECK41 1110
#define IDC_REG_ADDR 1110
#define IDC_CHECK130 1110
#define IDC_CHECK42 1111
#define IDC_REG_DATA 1111
#define IDC_CHECK131 1111
#define IDC_CHECK43 1112
#define IDC_NMEA_ZDA 1112
#define IDC_CHECK132 1112
#define IDC_CHECK44 1113
#define IDC_NMEA2_ZDA 1113
#define IDC_CHECK133 1113
#define IDC_CHECK45 1114
#define IDC_NMEA3_ZDA 1114
#define IDC_CHECK134 1114
#define IDC_1PPS_MODE 1115
#define IDC_CHECK46 1115
#define IDC_NMEA_GNS 1115
#define IDC_CHECK135 1115
#define IDC_1PPS_ATTR 1116
#define IDC_1PPS_ATTRI 1116
#define IDC_CHECK47 1116
#define IDC_NMEA2_GNS 1116
#define IDC_CHECK136 1116
#define IDC_CHECK48 1117
#define IDC_NMEA3_GNS 1117
#define IDC_PR_ATTR 1117
#define IDC_CHECK49 1118
#define IDC_NOISE 1118
#define IDC_CHECK50 1119
#define IDC_CLOCK 1119
#define IDC_CHECK51 1120
#define IDC_DATUM_TEST 1120
#define IDC_CLOCK2 1120
#define IDC_DELETE 1120
#define IDC_COPY 1120
#define IDC_CHECK137 1120
#define IDC_CHECK52 1121
#define IDC_FTP_TITLE 1121
#define IDC_CHECK138 1121
#define IDC_CHECK53 1122
#define IDC_MULTI_PATH 1122
#define IDC_CHECK139 1122
#define IDC_CHECK54 1123
#define IDC_MULTIPATH_ATTR 1123
#define IDC_CHECK140 1123
#define IDC_AGPS_ATTR 1124
#define IDC_BINARY_INTERVAL 1124
#define IDC_CHECK55 1124
#define IDC_CHECK141 1124
#define IDC_CHECK56 1125
#define IDC_WAAS 1125
#define IDC_CHECK142 1125
#define IDC_CHECK57 1126
#define IDC_WAAS_ATTR 1126
#define IDC_CHECK143 1126
#define IDC_CHECK58 1127
#define IDC_CHECK144 1127
#define IDC_CHECK59 1128
#define IDC_CHECK145 1128
#define IDC_CHECK60 1129
#define IDC_CHECK146 1129
#define IDC_CHECK61 1130
#define IDC_CHECK147 1130
#define IDC_CHECK62 1131
#define IDC_CHECK148 1131
#define IDC_CFGBINARY_ATT 1132
#define IDC_CHECK63 1132
#define IDC_CHECK149 1132
#define IDC_CFGBINARY_MT 1133
#define IDC_CHECK64 1133
#define IDC_CHECK150 1133
#define IDC_CFGBINARY_RM 1134
#define IDC_CHECK65 1134
#define IDC_CHECK151 1134
#define IDC_CFGBINARY_SC 1135
#define IDC_CHECK66 1135
#define IDC_CHECK152 1135
#define IDC_CFGBINARY_RS 1136
#define IDC_CHECK67 1136
#define IDC_CHECK153 1136
#define IDC_CFGBINARY_SUB 1137
#define IDC_CHECK68 1137
#define IDC_CHECK154 1137
#define IDC_CFGBINARY_RATE 1138
#define IDC_CHECK69 1138
#define IDC_CHECK155 1138
#define IDC_CFGBINARY_GLONASS 1139
#define IDC_CFGBINARY_SUB2 1139
#define IDC_CHECK70 1139
#define IDC_CHECK156 1139
#define IDC_CHECK71 1140
#define IDC_CHECK157 1140
#define IDC_CHECK72 1141
#define IDC_CHECK158 1141
#define IDC_CHECK73 1142
#define IDC_CHECK159 1142
#define IDC_ALMANAC_FILE 1143
#define IDC_CHECK74 1143
#define IDC_CHECK160 1143
#define IDC_ALMANAC_SV 1144
#define IDC_CHECK75 1144
#define IDC_CHECK161 1144
#define IDC_ALMANAC_BROWSE 1145
#define IDC_CHECK162 1145
#define IDC_1PPS_SET1 1146
#define IDC_CHECK78 1146
#define IDC_CHECK163 1146
#define IDC_1PPS_SET2 1147
#define IDC_CHECK76 1147
#define IDC_CHECK164 1147
#define IDC_1PPS_SET3 1148
#define IDC_3DKML 1148
#define IDC_CHECK165 1148
#define IDC_3DKML2 1149
#define IDC_POINTLIST 1149
#define IDC_CHECK166 1149
#define IDC_STATIC_SET1 1150
#define IDC_POINTLIST2 1150
#define IDC_NO_TITLE 1150
#define IDC_CHECK167 1150
#define IDC_STATIC_SET2 1151
#define IDC_NO_TITLE2 1151
#define IDC_DETAIL_INFO 1151
#define IDC_CHECK168 1151
#define IDC_STATIC_SET3 1152
#define IDC_CHECK79 1152
#define IDC_CHECK169 1152
#define IDC_STATIC_SET4 1153
#define IDC_CHECK170 1153
#define IDC_BINARY_ATTRI 1154
#define IDC_STATIC_ 1154
#define IDC_CHECK171 1154
#define IDC_1PPS_CABLE 1155
#define IDC_OUTPUT_RATE 1155
#define IDC_BINARY_ATTRI2 1155
#define IDC_TIGGER_MODE 1155
#define IDC_CHECK172 1155
#define IDC_1PPS_CABLE_ATTRI 1156
#define IDC_CHECK173 1156
#define IDC_RADIO_DOP_AUTO 1157
#define IDC_CHECK174 1157
#define IDC_CHECK175 1158
#define IDC_RADIO_DOP_HDOP 1159
#define IDC_CHECK176 1159
#define IDC_RADIO_DOP_PDOP 1160
#define IDC_CHECK177 1160
#define IDC_RADIO_DOP_GDOP 1161
#define IDC_CHECK178 1161
#define IDC_RADIO_DOP_DIABLE 1162
#define IDC_CHECK179 1162
#define IDC_EDIT_DOP_PDOP 1163
#define IDC_CHECK180 1163
#define IDC_EDIT_DOP_HDOP 1164
#define IDC_CHECK181 1164
#define IDC_EDIT_DOP_GDOP 1165
#define IDC_CHECK182 1165
#define IDC_CHECK183 1166
#define IDC_1PPS_DOP_ATTRI 1167
#define IDC_CHECK184 1167
#define IDC_RADIO_ELEV_AND_CNR 1168
#define IDC_CHECK185 1168
#define IDC_RADIO_ELEV 1169
#define IDC_CHECK186 1169
#define IDC_RADIO_CNR 1170
#define IDC_CHECK187 1170
#define IDC_RADIO_ELEV_DIABLE 1171
#define IDC_CHECK188 1171
#define IDC_EDIT_ELEV 1172
#define IDC_CHECK189 1172
#define IDC_EDIT_CNR 1173
#define IDC_CHECK190 1173
#define IDC_1PPS_ELEV_ATTRI 1174
#define IDC_CHECK191 1174
#define IDC_CHECK192 1175
#define IDC_CHECK193 1176
#define IDC_1PPS_MONITOR_MODE 1177
#define IDC_CHECK194 1177
#define IDC_1PPS_MONITOR_LEN 1178
#define IDC_CHECK195 1178
#define IDC_1PPS_MONITOR_ERROR 1179
#define IDC_CHECK196 1179
#define IDC_PSTI_INTERVAL 1180
#define IDC_CHECK197 1180
#define IDC_1PPS_MONITOR_ERROR3 1181
#define IDC_1PPS_MONITOR_NOW_STD 1181
#define IDC_PROPRIETARY_ATTR 1181
#define IDC_CHECK198 1181
#define IDC_CHECK199 1182
#define IDC_PSTI_ID 1183
#define IDC_CHECK200 1183
#define IDC_CHECK201 1184
#define IDC_CHECK202 1185
#define IDC_CHECK203 1186
#define IDC_CHECK204 1187
#define IDC_EARTH 1188
#define IDC_IQIBLA_LAT 1188
#define IDC_CHECK205 1188
#define IDC_GPS_BAR 1189
#define IDC_IQIBLA_LON 1189
#define IDC_CHECK206 1189
#define IDC_IQIBLA_TIMEZONE 1190
#define IDC_SCATTER 1190
#define IDC_CHECK207 1190
#define IDC_CHK_USING_GPS 1191
#define IDC_BD_BAR 1191
#define IDC_CHECK208 1191
#define IDC_DIS_UNIT 1192
#define IDC_GA_BAR 1192
#define IDC_CHECK209 1192
#define IDC_POS_ATTRI 1193
#define IDC_CHECK210 1193
#define IDC_BACKWARD_INDICATOR 1194
#define IDC_BK_INDICATOR 1194
#define IDC_CHECK211 1194
#define IDC_ODO_METER 1195
#define IDC_CHECK212 1195
#define IDC_GYRO_DATA 1196
#define IDC_PINNING_PARAM_ATTR 1196
#define IDC_CHECK213 1196
#define IDC_FIXED_STATUS 1197
#define IDC_PROPRI_MSG 1197
#define IDC_CHECK214 1197
#define IDC_PROPRI_ATTR 1198
#define IDC_WGS84_X 1198
#define IDC_CHECK215 1198
#define IDC_CBO_DEVICE 1199
#define IDC_POWERSAVING_1 1199
#define IDC_WGS84_Y 1199
#define IDC_CHECK216 1199
#define IDC_POWERSAVING_2 1200
#define IDC_REFRESH 1200
#define IDC_WGS84_Z 1200
#define IDC_CHECK217 1200
#define IDC_ENU_E 1201
#define IDC_POWERSAVING_3 1201
#define IDC_USED_ROM 1201
#define IDC_CHECK218 1201
#define IDC_ENU_N 1202
#define IDC_POWERSAVING_4 1202
#define IDC_USED_FLASH 1202
#define IDC_CHECK219 1202
#define IDC_COMBO_GNSS_SELECTION 1203
#define IDC_ENU_U 1203
#define IDC_POWERSAVING_5 1203
#define IDC_CHECK220 1203
#define IDC_ECOM_COUNTER 1204
#define IDC_GNSS_SEL_ATTR 1204
#define IDC_POWERSAVING_6 1204
#define IDC_CHECK221 1204
#define IDC_CHK_NMEA_COM0 1205
#define IDC_POWERSAVING_7 1205
#define IDC_CHECK222 1205
#define IDC_CHK_NMEA_COM1 1206
#define IDC_POWERSAVING_ATTR 1206
#define IDC_CHECK223 1206
#define IDC_ANTENNA_DETECT_ATTR 1207
#define IDC_NMEA_COM_ATTR 1207
#define IDC_CHECK224 1207
#define IDC_DETECT_SHORT 1208
#define IDC_NMEA_COM_ATTR2 1208
#define IDC_RDO_ACQUISITION_BINARY 1208
#define IDC_CHECK225 1208
#define IDC_DETECT_ANTENNA 1209
#define IDC_RDO_ACQUISITION_ASCII 1209
#define IDC_CHECK226 1209
#define IDC_1PPS_NMEA_DELAY 1210
#define IDC_CHECK227 1210
#define IDC_1PPS_OUTPUT_MODE 1211
#define IDC_CHECK228 1211
#define IDC_ACQUISITION_MODE 1212
#define IDC_LBL_ODO_METER 1212
#define IDC_ODO_METER_T 1212
#define IDC_CHECK229 1212
#define IDC_ACQUISITION_ATTR 1213
#define IDC_LBL_GYRO_DATA 1213
#define IDC_GYRO_DATA_T 1213
#define IDC_CHECK230 1213
#define IDC_ACQUISITION_ASCII 1214
#define IDC_BTN_BROWSE_GPS 1214
#define IDC_LBL_BACKWARD_INDICATOR 1214
#define IDC_BK_INDICATOR_T 1214
#define IDC_CHECK231 1214
#define IDC_BTN_BROWSE_GLONASS 1215
#define IDC_CHECK232 1215
#define IDC_FILE_GPS 1216
#define IDC_CHECK233 1216
#define IDC_FILE_GLONASS 1217
#define IDC_CHECK234 1217
#define IDC_CHECK235 1218
#define IDC_FILE 1219
#define IDC_CHECK236 1219
#define IDC_INTERFERENCE_MODE 1220
#define IDC_TIMECORR_ATTR 1220
#define IDC_CHECK237 1220
#define IDC_ATTR 1221
#define IDC_EDIT10 1221
#define IDC_CHECK238 1221
#define IDC_1PPS_MONITOR_LBL_NOW_STD 1222
#define IDC_TXT_LAT 1222
#define IDC_CHECK239 1222
#define IDC_RADIO_PPS_NO_OUTPUT 1223
#define IDC_CHECK240 1223
#define IDC_TXT_LON 1224
#define IDC_EDIT11 1224
#define IDC_CHECK241 1224
#define IDC_ENABLE_SBAS 1225
#define IDC_RADIO_PPS_OUTPUT_ALWAYS 1225
#define IDC_EDIT14 1225
#define IDC_EDIT12 1225
#define IDC_CHECK242 1225
#define IDC_ENABLE_NAV 1226
#define IDC_START 1226
#define IDC_CHECK243 1226
#define IDC_ENABLE_CORRECTION 1227
#define IDC_HAVE_GPS_TIME 1227
#define IDC_CHECK244 1227
#define IDC_ENABLE_WAAS 1228
#define IDC_RADIO_PPS_OUTPUT_ALIGN 1228
#define IDC_OUTPUT_ALIGN 1228
#define IDC_CHECK245 1228
#define IDC_1PPS_MODE_ATTR 1229
#define IDC_NUMBER_CHANNEL 1229
#define IDC_CHECK246 1229
#define IDC_ENABLE_SAGPS 1230
#define IDC_RADIO4 1230
#define IDC_URAMASK 1230
#define IDC_CHECK247 1230
#define IDC_1PPS_MONITOR_SET_STD 1231
#define IDC_ENABLE_QZSS 1231
#define IDC_CHECK248 1231
#define IDC_1PPS_PULSE_CLOCK_SOURCE_SEL 1232
#define IDC_CHECK249 1232
#define IDC_RADIO1 1233
#define IDC_RADIO_PPS_ALIGN_TO_GPS 1233
#define IDC_BUILD_IN 1233
#define IDC_ALIGN_TO_GPS 1233
#define IDC_CHECK250 1233
#define IDC_1PPS_PULSE_CLK_SRC_ATTR 1234
#define IDC_RADIO2 1234
#define IDC_RADIO_PPS_ALIGN_TO_UTC 1234
#define IDC_CUSTOM 1234
#define IDC_ALIGN_TO_UTC 1234
#define IDC_CHECK251 1234
#define IDC_PROMPT_MSG 1235
#define IDC_ALIGN_TO_UTC2 1235
#define IDC_ALIGN_TO_NAVIC 1235
#define IDC_CHECK252 1235
#define IDC_1PPS_PULSE_CLK_SRC_ATTR_SEL 1236
#define IDC_PROGRESS 1236
#define IDC_CHECK253 1236
#define IDC_1PPS_MONITOR_LBL_SET_STD 1237
#define IDC_PROGRESS_MSG 1237
#define IDC_CHECK254 1237
#define IDCANCLE 1238
#define IDC_CHECK255 1238
#define IDC_PULSE_WIDTH 1239
#define IDC_CHECK256 1239
#define IDC_CONTROL_MODE 1240
#define IDC_CHECK257 1240
#define IDC_NOISE_POWER_CTRL 1241
#define IDC_CHECK258 1241
#define IDC_MODE 1242
#define IDC_CHECK259 1242
#define IDC_UART 1243
#define IDC_MODE2 1243
#define IDC_DEFAULT 1243
#define IDC_BASE_OPT_FUN 1243
#define IDC_CHECK260 1243
#define IDC_ROVER_OPT_FUN 1244
#define IDC_CHECK261 1244
#define IDC_PKB_OPT_FUN 1245
#define IDC_CHECK262 1245
#define IDC_CHECK263 1246
#define IDC_CHECK264 1247
#define IDC_CHECK265 1248
#define IDC_CHECK266 1249
#define IDC_DATE_T 1250
#define IDC_CHECK267 1250
#define IDC_TIME_T 1251
#define IDC_CHECK268 1251
#define IDC_HDOP_T 1252
#define IDC_CHECK269 1252
#define IDC_LONGITUDE_T 1253
#define IDC_CHECK270 1253
#define IDC_LATITUDE_T 1254
#define IDC_CHECK271 1254
#define IDC_SPEED_T 1255
#define IDC_CHECK272 1255
#define IDC_ALTITUDE_T 1256
#define IDC_CHECK273 1256
#define IDC_DIRECTION_T 1257
#define IDC_CHECK274 1257
#define IDC_CLOCK_T 1258
#define IDC_CHECK275 1258
#define IDC_DIRECTION_T2 1259
#define IDC_RTK_RATIO_T 1259
#define IDC_CHECK276 1259
#define IDC_2DRMS_T 1260
#define IDC_CHECK277 1260
#define IDC_CEP50_T 1261
#define IDC_CHECK278 1261
#define IDC_TTFF_T 1262
#define IDC_CHECK279 1262
#define IDC_ENUSCALE_T 1263
#define IDC_CHECK280 1263
#define IDC_COOR_T 1264
#define IDC_CHECK281 1264
#define IDC_DESCRIPTION 1265
#define IDC_CHECK282 1265
#define IDC_BUTTON1 1266
#define IDC_CHECK283 1266
#define IDC_BUTTON3 1267
#define IDC_ERASE 1267
#define IDC_CHECK284 1267
#define IDC_BUTTON4 1268
#define IDC_BAUDRATE_IDX 1268
#define IDC_CHECK285 1268
#define IDC_IMG_PATH 1269
#define IDC_CHECK286 1269
#define IDC_MASK1 1270
#define IDC_BAUDRATE_IDX2 1270
#define IDC_TYPE 1270
#define IDC_CHECK287 1270
#define IDC_MASK2 1271
#define IDC_BUFFER_IDX 1271
#define IDC_CHECK288 1271
#define IDC_COMPORT_T 1272
#define IDC_CHECK289 1272
#define IDC_BAUDRATE_T 1273
#define IDC_CHECK290 1273
#define IDC_OPEN_CLOSE_T 1274
#define IDC_CHECK291 1274
#define IDC_MESSAGE_T 1275
#define IDC_CHECK292 1275
#define IDC_RESPONSE_T 1276
#define IDC_CHECK293 1276
#define IDC_COORDINATE_T 1277
#define IDC_COORDINATE_F 1278
#define IDC_WGS84_X_T 1279
#define IDC_WGS84_Y_T 1280
#define IDC_WGS84_Z_T 1281
#define IDC_ENU_E_T 1282
#define IDC_ENU_N_T 1283
#define IDC_ENU_U_T 1284
#define IDC_COMMAND_T 1285
#define IDC_COMMAND_F 1286
#define IDC_CHANGE_BAUDRATE 1287
#define IDC_BEIDOU_SNR_T 1287
#define IDC_YEAR 1288
#define IDC_COORDINATE_T3 1288
#define IDC_GPS_SNR_T 1288
#define IDC_MONTH 1289
#define IDC_GPS_SNR_T2 1289
#define IDC_GA_SNR_T 1289
#define IDC_DAY 1290
#define IDC_PLAY_T 1290
#define IDC_SPIN1 1291
#define IDC_ENABLE 1291
#define IDC_RECORD_T 1291
#define IDC_YEAR2 1291
#define IDC_LEAP_SEC 1291
#define IDC_SPIN2 1292
#define IDC_MONTHCALENDAR1 1292
#define IDC_SPIN3 1293
#define IDC_INPUT 1293
#define IDC_SPIN4 1294
#define IDC_RESULT 1294
#define IDC_SPIN5 1295
#define IDC_SPIN6 1296
#define IDC_BIN_SIZE 1296
#define IDC_SPIN7 1297
#define IDC_CONTEXT 1297
#define IDC_CONTENT 1297
#define IDC_SPIN8 1298
#define IDC_CHECKSUM 1298
#define IDC_SPIN9 1299
#define IDC_LOGO 1299
#define IDC_SPIN10 1300
#define IDC_INFO_PANEL 1300
#define IDC_SPIN11 1301
#define IDC_GPS 1301
#define IDC_SPIN12 1302
#define IDC_GLONASS 1302
#define IDC_DL_BAUDRATE 1302
#define IDC_SLIDER1 1303
#define IDC_BEIDOU 1303
#define IDC_FLASH_TYPE 1303
#define IDC_SLIDER2 1304
#define IDC_GALILEO 1304
#define IDC_STOP 1304
#define IDC_SLIDER3 1305
#define IDC_CONTINUE 1305
#define IDC_MEAS_TIME 1305
#define IDC_SLIDER4 1306
#define IDC_FILESIZE 1306
#define IDC_RAW_MEAS 1306
#define IDC_SLIDER5 1307
#define IDC_SV_CH 1307
#define IDC_FILESIZE2 1307
#define IDC_SLIDER6 1308
#define IDC_NMEA_FILE 1308
#define IDC_RCV_STATUS 1308
#define IDC_RCV_STATE 1308
#define IDC_SLIDER7 1309
#define IDC_LINE_COUNT 1309
#define IDC_RCV_STATE2 1309
#define IDC_EXT_RAW_MEAS 1309
#define IDC_SLIDER8 1310
#define IDC_PLAY_INV_SL 1310
#define IDC_FIELD2 1310
#define IDC_SLIDER9 1311
#define IDC_PLAY_INV 1311
#define IDC_EXT_RAW_MEAS2 1311
#define IDC_FIELD10 1311
#define IDC_SLIDER10 1312
#define IDC_PLAY_CONTROL 1312
#define IDC_SLIDER11 1313
#define IDC_BINSIZE_DELAY 1313
#define IDC_SLIDER12 1314
#define IDC_BOOST_BAUDRATE 1314
#define IDC_BOOT_STATUS_T 1315
#define IDC_AUTO_QUERY_VERSION 1315
#define IDC_SW_VER_T 1316
#define IDC_WARNING 1316
#define IDC_AUTO_QUERY_VERSION2 1316
#define IDC_BOOST_EPHEMERIS 1316
#define IDC_SW_REV_T 1317
#define IDC_CON_COMPORT_T 1317
#define IDC_CHECK_NMEA 1317
#define IDC_BOOT_STATUS 1318
#define IDC_STATIC_8 1318
#define IDC_SW_VER 1319
#define IDC_STATIC_9 1319
#define IDC_SW_REV 1320
#define IDC_HOST_T 1320
#define IDC_EARTH_PANEL 1321
#define IDC_NAME_T 1321
#define IDC_SCATTER_PANEL 1322
#define IDC_PWD_T 1322
#define IDC_DOWNLOAD_PANEL 1323
#define IDC_PORT_T 1323
#define IDC_INFORMATION_T 1324
#define IDC_OUTPUT 1324
#define IDC_EARTH_T 1325
#define IDC_SCATTER_SNR_T 1326
#define IDC_CHECK_NMEA_ERR 1326
#define IDC_DOWNLOAD_T 1327
#define IDC_SEND 1327
#define IDC_CHECK_NMEA_ERR2 1327
#define IDC_CHECK_TIME_ERR 1327
#define IDR_PARALLEL_TYPE0_SREC_115200 1328
#define IDC_CUSTOM_NAV 1328
#define IDC_SW_REV_T2 1328
#define IDC_RTK_AGE_T 1328
#define IDR_PARALLEL_TYPE1_SREC_115200 1329
#define IDC_CUSTOM_T 1329
#define IDC_RTK_AGE 1329
#define IDD_PLAY_NMEA 1330
#define IDC_SN 1330
#define IDC_FILENAME 1331
#define IDC_OVERDUE_SEC 1331
#define IDD_SET_UART_PASS_THROUGH 1331
#define IDC_STOP_T 1332
#define IDC_LEAP_SECONDS 1332
#define IDD_SUP800_ERASE_DATA 1332
#define IDC_TIME_SYNC 1333
#define IDD_SUP800_WRITE_DATA 1333
#define IDC_POWER_MODE 1334
#define IDD_SUP800_READ_DATA 1334
#define IDC_GO 1335
#define IDD_CONFIG_SIG_DISTURB_DLG 1335
#define IDC_PATH 1336
#define IDC_DOWNLOAD_TEST 1336
#define IDC_LOG 1337
#define IDC_LOG_PATH 1337
#define IDC_ENABLE_ALL 1338
#define IDC_ENABLE_LOG 1338
#define IDC_TRACKED_NUM 1339
#define IDC_DATUM_LIST 1339
#define IDC_DOWNLOAD_TEST2 1339
#define IDC_ROM_INTERNAL 1339
#define IDC_EARTHSETTING 1340
#define IDC_SELECT 1340
#define IDC_ROM_INTERNAL2 1340
#define IDC_BIN_EXTERNAL 1340
#define IDC_SCATTERSETTING 1341
#define IDC_EARTHSETTING2 1341
#define ID_GO 1341
#define IDC_STATUS 1342
#define IDC_KERNELVER 1343
#define IDC_SWVER 1344
#define IDC_REV 1345
#define IDC_CRC 1346
#define IDC_FILEPATH 1347
#define IDC_FILEPATH2 1348
#define IDC_LON 1348
#define IDC_LAT 1349
#define IDC_SPY_CENTER 1350
#define IDC_PASS_THROUGH 1351
#define IDC_LAT2 1351
#define IDC_ALT 1351
#define IDC_SECTOR 1352
#define IDC_READ 1353
#define IDC_WRITE 1354
#define IDC_OFFSET 1355
#define IDC_DATA_SIZE 1356
#define IDC_DATA 1357
#define IDC_DATA_SIZE2 1358
#define IDC_SAVE 1358
#define IDC_LOAD 1359
#define IDC_OPERATION 1360
#define IDD_CONFIG_GPS_LEAP_IN_UTC_DLG 1361
#define IDC_INS_SEC 1361
#define IDC_OPERATION2 1361
#define IDC_ATTRIBUTE 1361
#define IDC_CMD 1362
#define IDD_RTK_MODE 1362
#define IDC_MASTER_PATH 1363
#define IDD_RTK_PARAM 1363
#define IDC_SLAVE_PATH 1364
#define IDD_RTK_RESET 1364
#define IDC_BROWSE_MASTER 1365
#define IDC_BROWSE_SLAVE 1366
#define IDC_VALUE 1367
#define IDC_RATE 1368
#define IDC_SVID2 1369
#define IDC_SVID 1369
#define IDC_SLAVE_C 1369
#define IDC_SLAVE_T 1370
#define IDC_ADD1 1371
#define IDC_POINT_LIST 1373
#define IDC_COOR_TEXT1 1374
#define IDC_COOR_TEXT2 1375
#define IDC_POINTS_TEXT 1376
#define IDC_TIMEOUT 1377
#define IDC_SPY_ALT 1378
#define IDC_TIMEOUT2 1379
#define IDC_SCATTER_COUNT 1379
#define IDC_PARAM01 1379
#define IDC_PARAM02 1380
#define IDC_PARAM03 1381
#define IDC_PARAM04 1382
#define IDC_PARAM05 1383
#define IDC_PARAM06 1384
#define IDC_PARAM07 1385
#define IDC_PARAM08 1386
#define IDC_PARAM09 1387
#define IDC_POINTS_PMT 1388
#define IDD_RTK_MODE2 1389
#define IDC_STT_EDT1 1389
#define IDC_STT_EDT2 1390
#define IDD_CFG_PSCM_DEV_ADDR1 1390
#define IDD_CFG_PSCM_LAT_LON_DIGITS 1390
#define IDC_STT_EDT3 1391
#define IDC_SRV_SET1 1392
#define IDC_SRV_SET2 1393
#define IDC_STT_SET3 1394
#define IDC_SRV_SET3 1394
#define IDC_STT_SET1 1395
#define IDC_SRV_EDT1 1396
#define IDC_STT_SET2 1397
#define IDC_SRV_EDT2 1398
#define IDC_DESC 1399
#define IDC_STT_SET4 1399
#define IDC_MS 1400
#define IDC_MVB_SET 1400
#define IDC_NS 1401
#define IDC_MVB_SET2 1401
#define IDC_PLLDIV 1402
#define IDC_STT_EDT4 1402
#define IDC_MVB_EDT1 1402
#define IDC_NUM 1404
#define IDC_INFORMATION_B 1405
#define IDC_LONLAT 1405
#define IDC_RTK_INFO_T 1406
#define IDC_PROMPT 1406
#define IDC_RTK_INFO_B 1407
#define IDC_UNIQUE_ID 1407
#define IDC_EAST_PROJECTION 1408
#define IDC_FILE_TITLE 1408
#define IDC_BASELINE_LENGTH 1409
#define IDC_CHECK_ALL 1409
#define IDC_NORTH_PROJECTION 1410
#define IDC_UNCHECK_ALL 1410
#define IDC_BASELINE_COURSE 1411
#define IDC_FIELD3 1411
#define IDC_UP_PROJECTION 1412
#define IDC_FIELD4 1412
#define IDC_TIME2 1413
#define IDC_FIELD5 1413
#define IDC_DATE2 1414
#define IDC_FIELD6 1414
#define IDC_EAST_PROJECTION_T 1415
#define IDC_FIELD8 1415
#define IDC_BASELINE_LENGTH_T 1416
#define IDC_FIELD9 1416
#define IDC_NORTH_PROJECTION_T 1417
#define IDC_STATIC_ADDR 1417
#define IDC_BASELINE_COURSE_T 1418
#define IDC_STATIC_DATA 1418
#define IDC_UP_PROJECTION_T 1419
#define IDC_HAS_SENSOR 1419
#define IDC_TIME2_T 1420
#define IDC_QUERY_COUNT 1420
#define IDC_DATE2_T 1421
#define IDC_QUERY_RESPONSE 1421
#define IDC_COOR_SWITCH1 1422
#define IDC_HAS_BARO 1422
#define IDC_COOR_SWITCH2 1423
#define IDC_HAS_ODO 1423
#define IDD_CFG_VERY_LOW 1424
#define IDC_AG_X 1424
#define IDD_CFG_DOFUN_UNIQUE_ID 1425
#define IDC_AG_Y 1425
#define IDD_CFG_PSTI_INTERVAL 1426
#define IDC_AG_Z 1426
#define IDD_RTK_ONOFF_SV 1427
#define IDC_GB_X 1427
#define IDC_ALT_SWITCH 1428
#define IDC_GB_Y 1428
#define IDC_ALTITUDE2_T 1429
#define IDC_GB_Z 1429
#define IDC_AA_X 1430
#define IDC_AA_Y 1431
#define IDC_AA_Z 1432
#define IDC_AB_X 1433
#define IDC_AB_Y 1434
#define IDC_AB_Z 1435
#define IDC_GYRO_CALIB_IND 1436
#define IDC_SENSOR_CALIB_IND 1437
#define IDC_ODO_PLS_COUNT 1438
#define IDC_ODO_FB_STS 1439
#define IDC_ODO_SCL_FCT 1440
#define IDC_ODO_DST 1441
#define IDC_PRESSURE 1442
#define IDC_REF_PRESSURE 1443
#define IDC_RAW_ALTITUDE 1444
#define IDC_ALT_EPS 1445
#define IDC_SENSOR1_TYPE 1446
#define IDC_SENSOR2_TYPE 1447
#define IDC_SENSOR1_TEMP 1448
#define IDC_SENSOR2_TEMP 1449
#define IDC_MODE_TXT 1450
#define IDC_RTK_MODE_TXT 1451
#define IDC_ATTR_TXT 1452
#define IDC_DESC2 1453
#define IDC_DURATION 1454
#define IDC_TOTAL_SIZE 1455
#define IDC_V6 1455
#define IDC_DURATION3 1456
#define IDC_TOTAL_FREE 1456
#define IDC_D11 1456
#define IDC_V7 1456
#define IDC_USE_BIN 1456
#define IDC_DURATION2 1457
#define IDC_EST_TIME 1457
#define IDC_D12 1457
#define IDC_D13 1458
#define IDC_D21 1459
#define IDC_D22 1460
#define IDC_D23 1461
#define IDC_D31 1462
#define IDC_D32 1463
#define IDC_D33 1464
#define IDC_D41 1465
#define IDC_D42 1466
#define IDC_D43 1467
#define IDC_U11 1468
#define IDC_U12 1469
#define IDC_U13 1470
#define IDC_U21 1471
#define IDC_U22 1472
#define IDC_U23 1473
#define IDC_U31 1474
#define IDC_U32 1475
#define IDC_U33 1476
#define IDC_U41 1477
#define IDC_U42 1478
#define IDC_U43 1479
#define IDC_WAAS_SPEC 1480
#define IDC_EGNOS_SPEC 1481
#define IDC_MSAS_SPEC 1482
#define IDC_GAGAN_SPEC 1483
#define IDC_APPLY_DEFAULT 1484
#define IDC_GROUP 1485
#define IDC_CYCLE_SLIP 1486
#define IDC__MIN_DISTANCE 1486
#define IDC_CYCLE_SLIP_T 1487
#define IDC_UPDATE_RATE 1487
#define IDD_CONFIG_UPDATE_RATE_DLG 1488
#define IDC_BAUD_RATE 1488
#define IDD_CONFIG_DR_UPDATE_RATE_DLG 1489
#define IDC_LOWER 1489
#define IDD_RTK_SLAVE_BAUD 1490
#define IDC_UPPER 1490
#define IDC_GI_BAR 1491
#define IDC_STATIC_F078 1491
#define IDC_GI_SNR_T 1492
#define IDC_STATIC_F014 1492
#define IDC_NAVIC 1493
#define IDC_STATIC_F004 1493
#define IDD_CONFIG_DR_RAW_RATE_DLG 1494
#define IDC_STATIC_F00C 1494
#define IDC_STATIC_F0BC 1495
#define IDC_STATIC_F02C 1496
#define IDC_STATIC_F034 1497
#define IDC_STATIC_F090 1498
#define IDC_STATIC_F094 1499
#define IDC_STATIC_F098 1500
#define IDC_STATIC_F09C 1501
#define IDC_EDIT_F078 1502
#define IDC_EDIT_F014 1503
#define IDC_EDIT_F004 1504
#define IDC_EDIT_F00C 1505
#define IDC_EDIT_F0BC 1506
#define IDC_EDIT_F02C 1507
#define IDC_STATIC_F35 1508
#define IDC_STATIC_100C 1508
#define IDC_STATIC_1008 1509
#define IDC_CHECK_M1_00 1510
#define IDC_CHECK_M1_01 1511
#define IDC_CHECK_M1_02 1512
#define IDC_CHECK_M1_03 1513
#define IDC_CHECK_M1_04 1514
#define IDC_CHECK_M1_05 1515
#define IDC_CHECK_M1_06 1516
#define IDC_CHECK_M1_07 1517
#define IDC_CHECK_M1_08 1518
#define IDC_CHECK_M1_09 1519
#define IDC_CHECK_M1_10 1520
#define IDC_CHECK_M1_11 1521
#define IDC_CHECK_M1_12 1522
#define IDC_CHECK_M1_13 1523
#define IDC_CHECK_M1_14 1524
#define IDC_CHECK_M1_15 1525
#define IDC_CHECK_M1_16 1526
#define IDC_CHECK_M1_17 1527
#define IDC_CHECK_M1_18 1528
#define IDC_CHECK_M1_19 1529
#define IDC_CHECK_M1_20 1530
#define IDC_CHECK_M1_21 1531
#define IDC_CHECK_M1_22 1532
#define IDC_CHECK_M1_23 1533
#define IDC_CHECK_M1_24 1534
#define IDC_CHECK_M1_25 1535
#define IDC_CHECK_M1_26 1536
#define IDC_CHECK_M1_27 1537
#define IDC_CHECK_M1_28 1538
#define IDC_CHECK_M1_29 1539
#define IDC_CHECK_M1_30 1540
#define IDC_CHECK_M1_31 1541
#define IDC_CONFIG_REG_BTN 1542
#define IDC_GET_AGAIN_BTN 1543
#define IDC_CONFIG_REG2_BTN 1544
#define IDC_AUTO_UPDATE 1545
#define IDC_STATIC_F0A0 1546
#define IDC_STATIC_F0A4 1547
#define IDC_STATIC_F0A8 1548
#define IDC_STATIC_F0AC 1549
#define IDC_STATIC_F028 1550
#define IDC_STATIC_F030 1551
#define IDC_CHECK_M2_00 1610
#define IDC_CHECK_M2_01 1611
#define IDC_CHECK_M2_02 1612
#define IDC_CHECK_M2_03 1613
#define IDC_CHECK_M2_04 1614
#define IDC_CHECK_M2_05 1615
#define IDC_CHECK_M2_06 1616
#define IDC_CHECK_M2_07 1617
#define IDC_CHECK_M2_08 1618
#define IDC_CHECK_M2_09 1619
#define IDC_CHECK_M2_10 1620
#define IDC_CHECK_M2_11 1621
#define IDC_CHECK_M2_12 1622
#define IDC_CHECK_M2_13 1623
#define IDC_CHECK_M2_14 1624
#define IDC_CHECK_M2_15 1625
#define IDC_CHECK_M2_16 1626
#define IDC_CHECK_M2_17 1627
#define IDC_CHECK_M2_18 1628
#define IDC_CHECK_M2_19 1629
#define IDC_CHECK_M2_20 1630
#define IDC_CHECK_M2_21 1631
#define IDC_CHECK_M2_22 1632
#define IDC_CHECK_M2_23 1633
#define IDC_CHECK_M2_24 1634
#define IDC_CHECK_M2_25 1635
#define IDC_CHECK_M2_26 1636
#define IDC_CHECK_M2_27 1637
#define IDC_CHECK_M2_28 1638
#define IDC_CHECK_M2_29 1639
#define IDC_CHECK_M2_30 1640
#define IDC_CHECK_M2_31 1641
#define IDC_CHECK_M3_00 1710
#define IDC_CHECK_M3_01 1711
#define IDC_CHECK_M3_02 1712
#define IDC_CHECK_M3_03 1713
#define IDC_CHECK_M3_04 1714
#define IDC_CHECK_M3_05 1715
#define IDC_CHECK_M3_06 1716
#define IDC_CHECK_M3_07 1717
#define IDC_CHECK_M3_08 1718
#define IDC_CHECK_M3_09 1719
#define IDC_CHECK_M3_10 1720
#define IDC_CHECK_M3_11 1721
#define IDC_CHECK_M3_12 1722
#define IDC_CHECK_M3_13 1723
#define IDC_CHECK_M3_14 1724
#define IDC_CHECK_M3_15 1725
#define IDC_CHECK_M3_16 1726
#define IDC_CHECK_M3_17 1727
#define IDC_CHECK_M3_18 1728
#define IDC_CHECK_M3_19 1729
#define IDC_CHECK_M3_20 1730
#define IDC_CHECK_M3_21 1731
#define IDC_CHECK_M3_22 1732
#define IDC_CHECK_M3_23 1733
#define IDC_CHECK_M3_24 1734
#define IDC_CHECK_M3_25 1735
#define IDC_CHECK_M3_26 1736
#define IDC_CHECK_M3_27 1737
#define IDC_CHECK_M3_28 1738
#define IDC_CHECK_M3_29 1739
#define IDC_CHECK_M3_30 1740
#define IDC_CHECK_M3_31 1741
#define IDC_CHECK_M4_00 1810
#define IDC_CHECK_M4_01 1811
#define IDC_CHECK_M4_02 1812
#define IDC_CHECK_M4_03 1813
#define IDC_CHECK_M4_04 1814
#define IDC_CHECK_M4_05 1815
#define IDC_CHECK_M4_06 1816
#define IDC_CHECK_M4_07 1817
#define IDC_CHECK_M4_08 1818
#define IDC_CHECK_M4_09 1819
#define IDC_CHECK_M4_10 1820
#define IDC_CHECK_M4_11 1821
#define IDC_CHECK_M4_12 1822
#define IDC_CHECK_M4_13 1823
#define IDC_CHECK_M4_14 1824
#define IDC_CHECK_M4_15 1825
#define IDC_CHECK_M4_16 1826
#define IDC_CHECK_M4_17 1827
#define IDC_CHECK_M4_18 1828
#define IDC_CHECK_M4_19 1829
#define IDC_CHECK_M4_20 1830
#define IDC_CHECK_M4_21 1831
#define IDC_CHECK_M4_22 1832
#define IDC_CHECK_M4_23 1833
#define IDC_CHECK_M4_24 1834
#define IDC_CHECK_M4_25 1835
#define IDC_CHECK_M4_26 1836
#define IDC_CHECK_M4_27 1837
#define IDC_CHECK_M4_28 1838
#define IDC_CHECK_M4_29 1839
#define IDC_CHECK_M4_30 1840
#define IDC_CHECK_M4_31 1841
#define IDC_CHECK_M5_00 1910
#define IDC_CHECK_M5_01 1911
#define IDC_CHECK_M5_02 1912
#define IDC_CHECK_M5_03 1913
#define IDC_CHECK_M5_04 1914
#define IDC_CHECK_M5_05 1915
#define IDC_CHECK_M5_06 1916
#define IDC_CHECK_M5_07 1917
#define IDC_CHECK_M5_08 1918
#define IDC_CHECK_M5_09 1919
#define IDC_CHECK_M5_10 1920
#define IDC_CHECK_M5_11 1921
#define IDC_CHECK_M5_12 1922
#define IDC_CHECK_M5_13 1923
#define IDC_CHECK_M5_14 1924
#define IDC_CHECK_M5_15 1925
#define IDC_CHECK_M5_16 1926
#define IDC_CHECK_M5_17 1927
#define IDC_CHECK_M5_18 1928
#define IDC_CHECK_M5_19 1929
#define IDC_CHECK_M5_20 1930
#define IDC_CHECK_M5_21 1931
#define IDC_CHECK_M5_22 1932
#define IDC_CHECK_M5_23 1933
#define IDC_CHECK_M5_24 1934
#define IDC_CHECK_M5_25 1935
#define IDC_CHECK_M5_26 1936
#define IDC_CHECK_M5_27 1937
#define IDC_CHECK_M5_28 1938
#define IDC_CHECK_M5_29 1939
#define IDC_CHECK_M5_30 1940
#define IDC_CHECK_M5_31 1941
#define IDC_CHECK_M6_00 2010
#define IDC_CHECK_M6_01 2011
#define IDC_CHECK_M6_02 2012
#define IDC_CHECK_M6_03 2013
#define IDC_CHECK_M6_04 2014
#define IDC_CHECK_M6_05 2015
#define IDC_CHECK_M6_06 2016
#define IDC_CHECK_M6_07 2017
#define IDC_CHECK_M6_08 2018
#define IDC_CHECK_M6_09 2019
#define IDC_CHECK_M6_10 2020
#define IDC_CHECK_M6_11 2021
#define IDC_CHECK_M6_12 2022
#define IDC_CHECK_M6_13 2023
#define IDC_CHECK_M6_14 2024
#define IDC_CHECK_M6_15 2025
#define IDC_CHECK_M6_16 2026
#define IDC_CHECK_M6_17 2027
#define IDC_CHECK_M6_18 2028
#define IDC_CHECK_M6_19 2029
#define IDC_CHECK_M6_20 2030
#define IDC_CHECK_M6_21 2031
#define IDC_CHECK_M6_22 2032
#define IDC_CHECK_M6_23 2033
#define IDC_CHECK_M6_24 2034
#define IDC_CHECK_M6_25 2035
#define IDC_CHECK_M6_26 2036
#define IDC_CHECK_M6_27 2037
#define IDC_CHECK_M6_28 2038
#define IDC_CHECK_M6_29 2039
#define IDC_CHECK_M6_30 2040
#define IDC_CHECK_M6_31 2041
#define IDC_CHECK_M7_00 2110
#define IDC_CHECK_M7_01 2111
#define IDC_CHECK_M7_02 2112
#define IDC_CHECK_M7_03 2113
#define IDC_CHECK_M7_04 2114
#define IDC_CHECK_M7_05 2115
#define IDC_CHECK_M7_06 2116
#define IDC_CHECK_M7_07 2117
#define IDC_CHECK_M7_08 2118
#define IDC_CHECK_M7_09 2119
#define IDC_CHECK_M7_10 2120
#define IDC_CHECK_M7_11 2121
#define IDC_CHECK_M7_12 2122
#define IDC_CHECK_M7_13 2123
#define IDC_CHECK_M7_14 2124
#define IDC_CHECK_M7_15 2125
#define IDC_CHECK_M7_16 2126
#define IDC_CHECK_M7_17 2127
#define IDC_CHECK_M7_18 2128
#define IDC_CHECK_M7_19 2129
#define IDC_CHECK_M7_20 2130
#define IDC_CHECK_M7_21 2131
#define IDC_CHECK_M7_22 2132
#define IDC_CHECK_M7_23 2133
#define IDC_CHECK_M7_24 2134
#define IDC_CHECK_M7_25 2135
#define IDC_CHECK_M7_26 2136
#define IDC_CHECK_M7_27 2137
#define IDC_CHECK_M7_28 2138
#define IDC_CHECK_M7_29 2139
#define IDC_CHECK_M7_30 2140
#define IDC_CHECK_M7_31 2141
#define IDC_CHECK_MC_00 2210
#define IDC_CHECK_MC_01 2211
#define IDC_CHECK_MC_02 2212
#define IDC_CHECK_MC_03 2213
#define IDC_CHECK_MC_04 2214
#define IDC_CHECK_MC_05 2215
#define IDC_CHECK_MC_06 2216
#define IDC_CHECK_MC_07 2217
#define IDC_CHECK_MC_08 2218
#define IDC_CHECK_MC_09 2219
#define IDC_CHECK_MC_10 2220
#define IDC_CHECK_MC_11 2221
#define IDC_CHECK_MC_12 2222
#define IDC_CHECK_MC_13 2223
#define IDC_CHECK_MC_14 2224
#define IDC_CHECK_MC_15 2225
#define IDC_CHECK_MC_16 2226
#define IDC_CHECK_MC_17 2227
#define IDC_CHECK_MC_18 2228
#define IDC_CHECK_MC_19 2229
#define IDC_CHECK_MC_20 2230
#define IDC_CHECK_MC_21 2231
#define IDC_CHECK_MC_22 2232
#define IDC_CHECK_MC_23 2233
#define IDC_CHECK_MC_24 2234
#define IDC_CHECK_MC_25 2235
#define IDC_CHECK_MC_26 2236
#define IDC_CHECK_MC_27 2237
#define IDC_CHECK_MC_28 2238
#define IDC_CHECK_MC_29 2239
#define IDC_CHECK_MC_30 2240
#define IDC_CHECK_MC_31 2241
#define IDC_CHECK_MV_00 2310
#define IDC_CHECK_MV_01 2311
#define IDC_CHECK_MV_02 2312
#define IDC_CHECK_MV_03 2313
#define IDC_CHECK_MV_04 2314
#define IDC_CHECK_MV_05 2315
#define IDC_CHECK_MV_06 2316
#define IDC_CHECK_MV_07 2317
#define IDC_CHECK_MV_08 2318
#define IDC_CHECK_MV_09 2319
#define IDC_CHECK_MV_10 2320
#define IDC_CHECK_MV_11 2321
#define IDC_CHECK_MV_12 2322
#define IDC_CHECK_MV_13 2323
#define IDC_CHECK_MV_14 2324
#define IDC_CHECK_MV_15 2325
#define IDC_CHECK_MV_16 2326
#define IDC_CHECK_MV_17 2327
#define IDC_CHECK_MV_18 2328
#define IDC_CHECK_MV_19 2329
#define IDC_CHECK_MV_20 2330
#define IDC_CHECK_MV_21 2331
#define IDC_CHECK_MV_22 2332
#define IDC_CHECK_MV_23 2333
#define IDC_CHECK_MV_24 2334
#define IDC_CHECK_MV_25 2335
#define IDC_CHECK_MV_26 2336
#define IDC_CHECK_MV_27 2337
#define IDC_CHECK_MV_28 2338
#define IDC_CHECK_MV_29 2339
#define IDC_CHECK_MV_30 2340
#define IDC_CHECK_MV_31 2341
#define ID_FILE_EXIT 32775
#define ID_HELP_ABOUT 32776
#define ID_SYSTEM_RESTART 32811
#define ID_CFG_SERIAL_PORT 32815
#define ID_CFG_DATUM 32818
#define ID_QUERY_SW_VERSION 32823
#define ID_QUERY_SW_CRC 32825
#define ID_FCTRY_DFLT_NO_RBT 32829
#define ID_FCTRY_DFLT_RBT 32830
#define ID_CONVERTER_COMPRESS 32835
#define ID_LOG_DECOMPRESS 32836
#define ID_LOG_STATUS 32837
#define ID_LOG_CONFIGURE 32838
#define ID_LOG_CLEAR 32839
#define ID_CFG_REGISTER 32843
#define ID_GET_RGISTER 32844
#define ID_FILE_SAVENMEA 32848
#define ID_CONVERTER_KML 32850
#define ID_QUERY_DATUM 32851
#define ID_CFG_MESSAGE_TYPE 32852
#define ID_SET_GP_EPHEMERIS 32854
#define ID_CFG_POWER_MODE 32855
#define ID_AGPS_FTP 32861
#define ID_GET_GP_EPHEMERIS 32862
#define ID_AGPS_CONFIG 32867
#define ID_AGPS_STATUS 32869
#define ID_AGPS_FTP_SREC 32887
#define ID_FILE_CLEANNEMA 32891
#define ID_QUERY_POSITION_UPDATE_RATE 32899
#define ID_CFG_POSITION_UPDATE_RATE 32900
#define ID_LOG_READ 32904
#define ID_CFG_PST_PING 32906
#define ID_QUERY_POSITION_PINNING 32907
#define ID_CFG_PING_PRMTR 32908
#define ID_CFG_NVGTN_MODE 32909
#define ID_CFG_SUBSEC_REG 32911
#define ID_CFG_GPS_MEAS_MODE 32912
#define ID_QUERY_GPS_MSRMNT_MODE 32913
#define ID_QUERY_NOISE_POWER 32914
#define ID_CFG_MULTI_PATH 32918
#define ID_GET_GP_ALMANAC 32920
#define ID_RESET_ODOMETER 32925
#define ID_CFG_TIMING 32929
#define ID_CFG_TIMING_CABLE_DELAY 32930
#define ID_CFG_DOP_MASK 32931
#define ID_CONFIG_ELEV_AND_CNR_MASK 32932
#define ID_QUERY_TIMING 32933
#define ID_QUERY_CABLEDELAY 32934
#define ID_QUERY_DOP_MASK 32935
#define ID_QUERY_ELE_CNR_MSK 32936
#define ID_MONITORING_1PPS 32937
#define ID_CFG_PRPTY_NMEA 32938
#define ID_SET_GP_ALMANAC 32939
#define ID_QUERY_DR_INFO 32940
#define ID_QUERY_DR_HW_PARAMETER 32941
#define ID_MINIHOMER_ACTIVATE 32942
#define ID_MINIHOMER_SETTAGECCO 32944
#define ID_MINIHOMER_QUERYTAG 32945
#define ID_CONFIG_GNSS_SEL_FOR_NAV 32949
#define ID_QUERY_GNSS_KNUM_SLT_CNR 32952
#define ID_CFG_NMEA_OUTPUT_COM 32953
#define ID_CFG_NMEA_TALKER_ID 32954
#define ID_CFG_GL_ACQUISITION_MODE 32955
#define ID_GET_GL_EPHEMERIS 32958
#define ID_SET_GL_EPHEMERIS 32959
#define ID_GET_GL_ALMANAC 32960
#define ID_SET_GL_ALMANAC 32961
#define ID_GET_GL_TIME_CORRECTIONS 32972
#define ID_SET_GL_TIME_CORRECTIONS 32973
#define ID_QUERY_1PPS_OUTPUT_MODE 32974
#define ID_CFG_1PPS_OUTPUT_MODE 32975
#define ID_ON_LINE_ASSIST 32977
#define ID_BINARY_DUMP_DATA 32980
#define ID_MINIHOMER_IQIBLATEST 32981
#define ID_QUERY_PROPRIETARY_MSG 32982
#define ID_CFG_PROPRIETARY_MESSAGE 32983
#define ID_CFG_PWR_SAV_PAR 32984
#define ID_CFG_ANTENNA_DETECTION 32986
#define ID_QUERY_ANTENNA_DETECTION 32987
#define ID_1PPSTIMING_CONFIGURE 32991
#define ID_CONVERTER_NIBINARY 32996
#define ID_QUERY_POWER_MODE 32999
#define ID_CFG_BIN_ITV 33001
#define ID_CFG_SBAS 33002
#define ID_QUERY_SBAS 33003
#define ID_CFG_SAEE 33004
#define ID_QUERY_SAEE 33005
#define ID_RESET_MOTION_SENSOR 33006
#define ID_QUERY_QZSS 33007
#define ID_CFG_QZSS 33008
#define ID_QUERY_NOISE_PW_CTL 33009
#define ID_CFG_NOISE_PWR_CTRL 33010
#define ID_QUERY_ITRFRC_DTCT_CTRL 33011
#define ID_CFG_ITRFRC_DTCT_CTRL 33012
#define ID_QUERY_1PPS_PULSE_WIDTH 33013
#define ID_CFG_1PPS_PULSE_WIDTH 33014
#define ID_QUERY_NMBI_OUT_DES 33015
#define ID_CFG_NMBI_OUT_DES 33016
#define ID_QUERY_PARAM_SEARCH_ENG_NUM 33017
#define ID_CFG_PARAM_SEARCH_ENG_NUM 33018
#define ID_ROMAGPS_FTP_SREC 33019
#define ID_ROMAGPS_FTP_NEW 33020
#define ID_CLOCK_OFFSET_PREDICT 33021
#define ID_HOSTBASED_DOWNLOAD 33022
#define ID_FIRMWARE_DOWNLOAD 33023
#define ID_QUERY_POS_FIX_NAV_MASK 33024
#define ID_CFG_POS_FIX_NAV_MASK 33025
#define ID_QUERY_NMEA_INTERVAL_V8 33026
#define ID_CFG_NMEA_INTERVAL_V8 33027
#define ID_PARALLEL_DOWNLOAD 33028
#define ID_CLOCK_OFFSET_PREDICT_OLD 33029
#define ID_QUERY_REF_TIME_TO_GPS 33030
#define ID_CONFIG_REF_TIME_TO_GPS 33031
#define ID_QUERY_NAV_MODE_V8 33032
#define ID_QUERY_BOOT_STATUS 33033
#define ID_NMEA_CHECKSUM_CAL 33034
#define ID_BIN_CHECKSUM_CAL 33035
#define ID_QUERY_DR_MULTIHZ 33036
#define ID_CONFIG_DR_MULTIHZ 33037
#define ID_QUERY_V8_POWER_SV_PARAM 33038
#define ID_CONFIG_GNSS_NAV_SOL 33039
#define ID_QUERY_GNSS_NAV_SOL 33040
#define ID_QUERY_CUSTOMER_ID 33041
#define ID_FILE_PLAYNMEA 33042
#define ID_SET_BD_EPHEMERIS 33043
#define ID_GET_BD_EPHEMERIS 33044
#define ID_FILE_SETUP 33045
#define ID_QUERY_NMEA_TALKER_ID 33046
#define ID_CONFIG_DOZE_MODE 33049
#define ID_CONFIG_1PPS_FREQ_OUTPUT 33050
#define ID_QUERY_1PPS_FREQ_OUTPUT 33051
#define ID_CONFIG_ERICSSON_STC_ITV 33052
#define ID_QUERY_ERICSSON_STC_ITV 33053
#define ID_CONFIG_BIN_MEA_DAT_OUT 33054
#define ID_QUERY_BIN_MEA_DAT_OUT 33055
#define ID_QUERY_SERIAL_NUMBER 33056
#define ID_CONFIG_SERIAL_NUMBER 33057
#define ID_QUERY_DGPS 33058
#define ID_CFG_DGPS 33059
#define ID_QUERY_SMOOTH_MODE 33060
#define ID_CFG_SMOOTH_MODE 33061
#define ID_QUERY_TIME_STAMPING 33062
#define ID_CFG_TIME_STAMPING 33063
#define ID_QUERY_GPS_TIME 33064
#define ID_CONFIG_LEAP_SECONDS 33065
#define ID_TEST_EXTERNAL_SREC 33066
#define ID_QUERY_PARAM_SRCH_ENG_SLP_CRT 33067
#define ID_CFG_PARAM_SRCH_ENG_SLP_CRT 33068
#define ID_QUERY_DATUM_INDEX 33069
#define ID_CONFIG_DATUM_INDEX 33070
#define ID_FILE_BINARY 33071
#define ID_QUERY_SHA1 33072
#define ID_QUERY_CON_CAP 33073
#define ID_RAW_MEAS_OUT_CONVERT 33074
#define ID_VERIFY_FIRMWARE 33075
#define ID_GPSDO_ENTER_ROM 33076
#define ID_GPSDO_LEAVE_ROM 33077
#define ID_GPSDO_ENTER_DWN 33078
#define ID_GPSDO_LEAVE_DWN 33079
#define ID_GPSDO_ENTER_UART 33080
#define ID_GPSDO_LEAVE_UART 33081
#define ID_GPSDO_RESET_SLAVE 33082
#define ID_QUERY_UARTPASS 33083
#define ID_SUP800_ERASE_DATA 33084
#define ID_SUP800_WRITE_DATA 33085
#define ID_SUP800_READ_DATA 33086
#define ID_QUERY_SIG_DISTUR_DATA 33087
#define ID_QUERY_SIG_DISTUR_STATUS 33088
#define ID_CONFIG_SIG_DISTUR_STATUS 33089
#define ID_GET_BD_ALMANAC 33090
#define ID_SET_BD_ALMANAC 33091
#define ID_GPSDO_ENTER_DWN_H 33092
#define ID_GPSDO_LEAVE_DWN_H 33093
#define ID_CONFIG_GPS_LEAP_IN_UTC 33094
#define ID_GPSDO_FW_DOWNLOAD 33095
#define ID_IQ_PLOT 33096
#define ID_UPGRADE_DOWNLOAD 33097
#define ID_CONFIG_GEOFENCE 33098
#define ID_QUERY_GEOFENCE 33099
#define ID_QUERY_GEOFENCE_RESULT 33100
#define ID_CONFIG_RTK_MODE 33101
#define ID_QUERY_RTK_MODE 33102
#define ID_CONFIG_RTK_PARAM 33103
#define ID_QUERY_RTK_PARAM 33104
#define ID_RTK_RESET 33105
#define ID_CONFIG_GEOFENCE1 33106
#define ID_CONFIG_GEOFENCE2 33107
#define ID_CONFIG_GEOFENCE3 33108
#define ID_CONFIG_GEOFENCE4 33109
#define ID_QUERY_GEOFENCE1 33110
#define ID_QUERY_GEOFENCE2 33111
#define ID_QUERY_GEOFENCE3 33112
#define ID_QUERY_GEOFENCE4 33113
#define ID_QUERY_GEOFENCE_RESULTEX 33114
#define ID_QUERY_RTK_MODE2 33115
#define ID_CONFIG_RTK_MODE2 33116
#define ID_QUERY_PSCM_DEV_ADDR 33117
#define ID_QUERY_PSCM_LAT_LON 33118
#define ID_CONFIG_PSCM_DEV_ADDR 33119
#define ID_CONFIG_PSCM_LAT_LON 33120
#define ID_READ_MEM_TO_FILE 33121
#define ID_QUERY_VERY_LOW 33122
#define ID_CONFIG_VERY_LOW 33123
#define ID_PATCH 33124
#define ID_WRITE_MEM_TO_FILE 33125
#define ID_QUERY_DF_UNIQUE_ID 33126
#define ID_CONFIG_DF_UNIQUE_ID 33127
#define ID_ERASE_DF_UNIQUE_ID 33128
#define ID_QUERY_PSTI030 33129
#define ID_QUERY_PSTI032 33130
#define ID_CONFIG_PSTI030 33131
#define ID_CONFIG_PSTI032 33132
#define ID_QUERY_PSTI004 33133
#define ID_CONFIG_PSTI004 33134
#define ID_RECALC_GLONASS_IFB 33135
#define ID_DECODE_GP_ALMANAC 33136
#define ID_SHOW_GP_ALMANAC 33137
#define ID_INSDR_ENTER_UART 33138
#define ID_INSDR_ENTER_DWN 33139
#define ID_INSDR_LEAVE_UART 33140
#define ID_RTK_ONOFF_GP_SV 33141
#define ID_RTK_ONOFF_SQ_SV 33142
#define ID_RTK_ONOFF_GL_SV 33143
#define ID_RTK_ONOFF_BD_SV 33144
#define ID_HOSTLOG 33145
#define ID_QUERY_RTK_REF_POSITION 33146
#define ID_HOSTLOG_NMEA 33147
#define ID_CFG_REGISTER16 33148
#define ID_GET_RGISTER16 33149
#define ID_CONFIG_RTCM_MEA_DAT_OUT 33150
#define ID_QUERY_RTCM_MEA_DAT_OUT 33151
#define ID_SET_CLOCK_OFFSET 33152
#define ID_INSDR_TEST 33153
#define ID_QUERY_BASE_POSITION 33154
#define ID_CONFIG_BASE_POSITION 33155
#define ID_SAVE_BINARY_NOPARSING 33156
#define ID_QUERY_CLOCK_OFFSET 33157
#define ID_SHOW_BD_ALMANAC 33158
#define ID_UBLOX_OUT_CONVERT 33159
#define ID_INSDR_ACC_SELF_TEST 33160
#define ID_INSDR_GYRO_SELF_TEST 33161
#define ID_INSDR_ACCU_ANGLE_START 33162
#define ID_INSDR_ACCU_ANGLE_STOP 33163
#define ID_CFG_SBAS2 33164
#define ID_QUERY_SBAS2 33165
#define ID_QUERY_SBAS_DEFAULT 33166
#define ID_READ_MEM_TO_FILE2 33167
#define ID_ENTER_RTK_DEBUG_MODE 33168
#define ID_BACK_RTK_DEBUG_MODE 33169
#define ID_QUERY_PSTI033 33170
#define ID_CONFIG_PSTI033 33171
#define ID_CONFIG_WATCH_TRACKBACK 33172
#define ID_LOGW_STATUS 33173
#define ID_LOGW_CONFIGURE 33174
#define ID_LOGW_CLEAR 33175
#define ID_LOGW_DECOMPRESS 33176
#define ID_LOGW_READ 33177
#define ID_PATCH_ROM_EPH 33179
#define ID_QUERY_DR_RATE 33180
#define ID_CONFIG_DR_RATE 33181
#define ID_QUERY_RTK_SLAVE_BAUD 33182
#define ID_CFG_RTK_SLAVE_BAUD 33183
#define ID_CLEAR_RTK_SLAVE_DATA 33184
#define ID_SAVE_TELIT_NOPARSING 33185
#define ID_CONFIG_PSTI063 33186
#define ID_CONFIG_PSTI065 33187
#define ID_CONFIG_PSTI067 33188
#define ID_CONFIG_PSTI068 33189
#define ID_CONFIG_PSTI070 33190
#define ID_QUERY_PSTI063 33191
#define ID_QUERY_PSTI065 33192
#define ID_QUERY_PSTI067 33193
#define ID_QUERY_PSTI068 33194
#define ID_QUERY_PSTI070 33195
#define ID_QUERY_DR_RAW_RATE 33196
#define ID_CONFIG_DR_RAW_RATE 33197
#define ID_IO_TESTER 33198
#define ID_GET_TCXO_FREQ 33199
// Next default values for new objects
//
#ifdef APSTUDIO_INVOKED
#ifndef APSTUDIO_READONLY_SYMBOLS
#define _APS_NEXT_RESOURCE_VALUE 480
#define _APS_NEXT_COMMAND_VALUE 40001
#define _APS_NEXT_CONTROL_VALUE 1543
#define _APS_NEXT_SYMED_VALUE 105
#endif
#endif
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/null_130_5865/GNSS_Viewer_V2.git
[email protected]:null_130_5865/GNSS_Viewer_V2.git
null_130_5865
GNSS_Viewer_V2
GNSS_Viewer_V2
master

搜索帮助