├── .gitattributes ├── .gitignore ├── Description.json ├── Doc ├── ELT_RTKBase_v1.7.5_EN.pdf ├── ELT_RTKBase_v1.8.0_EN.pdf ├── ELT_RTKBase_v1.8.1_EN.pdf └── nmeaConf_rtcm3save_ENG.pdf ├── Install ├── 70-usb-net-mobile.link ├── 70-usb-net-septentrio.link ├── 77-mm-septentio-port-types.rules ├── 99-ELT0x33.rules ├── Bynav_RTCM3_OUT.txt ├── NmeaConf ├── PBC.sh ├── RTKBaseConfigManager_py.patch ├── Rtcm3Led ├── RtkbaseSystemConfigure.service ├── RtkbaseSystemConfigure.sh ├── Septentrio_RTCM3_OUT.txt ├── Septentrio_Settings.txt ├── Septentrio_TEST.txt ├── UM980_RTCM3_OUT.txt ├── UM982_RTCM3_OUT.txt ├── UnicoreConfigure.sh ├── UnicoreSetBasePos.sh ├── UnicoreSettings.sh ├── autoconnect-retries-forever.conf ├── base_html.patch ├── config.original ├── config.txt ├── create_release.sh ├── exec_update.sh ├── favicon.ico ├── gnss_rproxy_server_py.patch ├── install_script.sh ├── ntrip_led.sh ├── onoffELT0x33.sh ├── ppp_conf.patch ├── reboot.sh ├── reset_receiver.sh ├── rtkbase_DHCP.conf ├── rtkbase_DHCP.service ├── rtkbase_check_internet.service ├── rtkbase_check_internet.sh ├── rtkbase_check_satelites.service ├── rtkbase_check_satelites.sh ├── rtkbase_install.sh ├── rtkbase_modem_web_proxy.service ├── rtkbase_network_event.sh ├── rtkbase_septentrio_NAT.service ├── rtkbase_septentrio_NAT.sh ├── rtklib │ ├── aarch64 │ │ ├── convbin │ │ ├── rtkrcv │ │ └── str2str │ ├── convbin.patch │ ├── convbin_makefile.patch │ ├── make_rtklib.sh │ ├── patch_rtklib.sh │ ├── rinex.patch │ ├── rtkrcv_makefile.patch │ ├── str2str.patch │ ├── str2str_makefile.patch │ ├── stream.patch │ └── streamsvr.patch ├── run_cast_sh.patch ├── server_py.patch ├── settings_conf_default.patch ├── settings_html.patch ├── settings_js.patch ├── startELT0x33.sh ├── status_js.patch ├── str2str_ntrip_A.patch ├── str2str_rtcm_svr.patch ├── str2str_tcp.patch ├── system_upgrade.sh ├── tailscale_get_href.sh ├── tailscale_unistall.sh ├── tune_power.sh ├── uninstall.sh └── version.txt ├── LICENSE ├── README.md ├── Tools ├── RtkBaseConfigure.sh ├── ShrinkDiagnostic.sh ├── command_line │ ├── set_hostname.sh │ ├── show_state_rtkbase_services.sh │ └── show_usb_com.sh ├── show_usb_serial.sh └── show_wifi_list.sh ├── WinRtkBaseConfigure.exe ├── WinRtkBaseConfigure ├── Main.cpp ├── Main.dfm ├── Main.h ├── WinRtkBaseConfigure.bpr ├── WinRtkBaseConfigure.cpp ├── iso3166.h ├── iso3166.rc └── iso3166.tab ├── WinRtkBaseUtils.exe ├── Windows ├── BYNAV_RESET.txt ├── BYNAV_RTK.txt ├── HAS.bat ├── RTK.bat ├── SEPTENTRIO_RESET.txt ├── SEPTENTRIO_RTK.txt ├── SEPTENTRIO_TEST.txt ├── UM980_HAS.txt ├── UM980_RESET.txt ├── UM982_HAS.txt ├── UM982_RESET.txt ├── UM_RESET.txt ├── UM_RTK.txt ├── nmeaConf.exe ├── pack.bat └── rtcm3save.exe ├── install.sh ├── rpi_image_scripts ├── README.md ├── create_release_image.sh ├── mount_and_run_scripts.sh ├── target_scripts │ ├── place_configure_util.sh │ ├── rtkbase_install.sh │ └── update_upgrade.sh └── unpack.sh └── rtkbase_preinstall ├── create_release_sh.patch ├── create_rtkbase_install.sh ├── requirements_txt.patch └── rtkbase_install_sh.patch /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNSSOEM/ELT_RTKBase/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNSSOEM/ELT_RTKBase/HEAD/.gitignore -------------------------------------------------------------------------------- /Description.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNSSOEM/ELT_RTKBase/HEAD/Description.json -------------------------------------------------------------------------------- /Doc/ELT_RTKBase_v1.7.5_EN.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNSSOEM/ELT_RTKBase/HEAD/Doc/ELT_RTKBase_v1.7.5_EN.pdf -------------------------------------------------------------------------------- /Doc/ELT_RTKBase_v1.8.0_EN.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNSSOEM/ELT_RTKBase/HEAD/Doc/ELT_RTKBase_v1.8.0_EN.pdf -------------------------------------------------------------------------------- /Doc/ELT_RTKBase_v1.8.1_EN.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNSSOEM/ELT_RTKBase/HEAD/Doc/ELT_RTKBase_v1.8.1_EN.pdf -------------------------------------------------------------------------------- /Doc/nmeaConf_rtcm3save_ENG.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNSSOEM/ELT_RTKBase/HEAD/Doc/nmeaConf_rtcm3save_ENG.pdf -------------------------------------------------------------------------------- /Install/70-usb-net-mobile.link: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNSSOEM/ELT_RTKBase/HEAD/Install/70-usb-net-mobile.link -------------------------------------------------------------------------------- /Install/70-usb-net-septentrio.link: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNSSOEM/ELT_RTKBase/HEAD/Install/70-usb-net-septentrio.link -------------------------------------------------------------------------------- /Install/77-mm-septentio-port-types.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNSSOEM/ELT_RTKBase/HEAD/Install/77-mm-septentio-port-types.rules -------------------------------------------------------------------------------- /Install/99-ELT0x33.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNSSOEM/ELT_RTKBase/HEAD/Install/99-ELT0x33.rules -------------------------------------------------------------------------------- /Install/Bynav_RTCM3_OUT.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNSSOEM/ELT_RTKBase/HEAD/Install/Bynav_RTCM3_OUT.txt -------------------------------------------------------------------------------- /Install/NmeaConf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNSSOEM/ELT_RTKBase/HEAD/Install/NmeaConf -------------------------------------------------------------------------------- /Install/PBC.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNSSOEM/ELT_RTKBase/HEAD/Install/PBC.sh -------------------------------------------------------------------------------- /Install/RTKBaseConfigManager_py.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNSSOEM/ELT_RTKBase/HEAD/Install/RTKBaseConfigManager_py.patch -------------------------------------------------------------------------------- /Install/Rtcm3Led: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNSSOEM/ELT_RTKBase/HEAD/Install/Rtcm3Led -------------------------------------------------------------------------------- /Install/RtkbaseSystemConfigure.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNSSOEM/ELT_RTKBase/HEAD/Install/RtkbaseSystemConfigure.service -------------------------------------------------------------------------------- /Install/RtkbaseSystemConfigure.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNSSOEM/ELT_RTKBase/HEAD/Install/RtkbaseSystemConfigure.sh -------------------------------------------------------------------------------- /Install/Septentrio_RTCM3_OUT.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNSSOEM/ELT_RTKBase/HEAD/Install/Septentrio_RTCM3_OUT.txt -------------------------------------------------------------------------------- /Install/Septentrio_Settings.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNSSOEM/ELT_RTKBase/HEAD/Install/Septentrio_Settings.txt -------------------------------------------------------------------------------- /Install/Septentrio_TEST.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNSSOEM/ELT_RTKBase/HEAD/Install/Septentrio_TEST.txt -------------------------------------------------------------------------------- /Install/UM980_RTCM3_OUT.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNSSOEM/ELT_RTKBase/HEAD/Install/UM980_RTCM3_OUT.txt -------------------------------------------------------------------------------- /Install/UM982_RTCM3_OUT.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNSSOEM/ELT_RTKBase/HEAD/Install/UM982_RTCM3_OUT.txt -------------------------------------------------------------------------------- /Install/UnicoreConfigure.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNSSOEM/ELT_RTKBase/HEAD/Install/UnicoreConfigure.sh -------------------------------------------------------------------------------- /Install/UnicoreSetBasePos.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNSSOEM/ELT_RTKBase/HEAD/Install/UnicoreSetBasePos.sh -------------------------------------------------------------------------------- /Install/UnicoreSettings.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNSSOEM/ELT_RTKBase/HEAD/Install/UnicoreSettings.sh -------------------------------------------------------------------------------- /Install/autoconnect-retries-forever.conf: -------------------------------------------------------------------------------- 1 | [main] 2 | autoconnect-retries-default=0 3 | -------------------------------------------------------------------------------- /Install/base_html.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNSSOEM/ELT_RTKBase/HEAD/Install/base_html.patch -------------------------------------------------------------------------------- /Install/config.original: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNSSOEM/ELT_RTKBase/HEAD/Install/config.original -------------------------------------------------------------------------------- /Install/config.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNSSOEM/ELT_RTKBase/HEAD/Install/config.txt -------------------------------------------------------------------------------- /Install/create_release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNSSOEM/ELT_RTKBase/HEAD/Install/create_release.sh -------------------------------------------------------------------------------- /Install/exec_update.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNSSOEM/ELT_RTKBase/HEAD/Install/exec_update.sh -------------------------------------------------------------------------------- /Install/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNSSOEM/ELT_RTKBase/HEAD/Install/favicon.ico -------------------------------------------------------------------------------- /Install/gnss_rproxy_server_py.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNSSOEM/ELT_RTKBase/HEAD/Install/gnss_rproxy_server_py.patch -------------------------------------------------------------------------------- /Install/install_script.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNSSOEM/ELT_RTKBase/HEAD/Install/install_script.sh -------------------------------------------------------------------------------- /Install/ntrip_led.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNSSOEM/ELT_RTKBase/HEAD/Install/ntrip_led.sh -------------------------------------------------------------------------------- /Install/onoffELT0x33.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNSSOEM/ELT_RTKBase/HEAD/Install/onoffELT0x33.sh -------------------------------------------------------------------------------- /Install/ppp_conf.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNSSOEM/ELT_RTKBase/HEAD/Install/ppp_conf.patch -------------------------------------------------------------------------------- /Install/reboot.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNSSOEM/ELT_RTKBase/HEAD/Install/reboot.sh -------------------------------------------------------------------------------- /Install/reset_receiver.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNSSOEM/ELT_RTKBase/HEAD/Install/reset_receiver.sh -------------------------------------------------------------------------------- /Install/rtkbase_DHCP.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNSSOEM/ELT_RTKBase/HEAD/Install/rtkbase_DHCP.conf -------------------------------------------------------------------------------- /Install/rtkbase_DHCP.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNSSOEM/ELT_RTKBase/HEAD/Install/rtkbase_DHCP.service -------------------------------------------------------------------------------- /Install/rtkbase_check_internet.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNSSOEM/ELT_RTKBase/HEAD/Install/rtkbase_check_internet.service -------------------------------------------------------------------------------- /Install/rtkbase_check_internet.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNSSOEM/ELT_RTKBase/HEAD/Install/rtkbase_check_internet.sh -------------------------------------------------------------------------------- /Install/rtkbase_check_satelites.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNSSOEM/ELT_RTKBase/HEAD/Install/rtkbase_check_satelites.service -------------------------------------------------------------------------------- /Install/rtkbase_check_satelites.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNSSOEM/ELT_RTKBase/HEAD/Install/rtkbase_check_satelites.sh -------------------------------------------------------------------------------- /Install/rtkbase_install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNSSOEM/ELT_RTKBase/HEAD/Install/rtkbase_install.sh -------------------------------------------------------------------------------- /Install/rtkbase_modem_web_proxy.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNSSOEM/ELT_RTKBase/HEAD/Install/rtkbase_modem_web_proxy.service -------------------------------------------------------------------------------- /Install/rtkbase_network_event.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNSSOEM/ELT_RTKBase/HEAD/Install/rtkbase_network_event.sh -------------------------------------------------------------------------------- /Install/rtkbase_septentrio_NAT.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNSSOEM/ELT_RTKBase/HEAD/Install/rtkbase_septentrio_NAT.service -------------------------------------------------------------------------------- /Install/rtkbase_septentrio_NAT.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNSSOEM/ELT_RTKBase/HEAD/Install/rtkbase_septentrio_NAT.sh -------------------------------------------------------------------------------- /Install/rtklib/aarch64/convbin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNSSOEM/ELT_RTKBase/HEAD/Install/rtklib/aarch64/convbin -------------------------------------------------------------------------------- /Install/rtklib/aarch64/rtkrcv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNSSOEM/ELT_RTKBase/HEAD/Install/rtklib/aarch64/rtkrcv -------------------------------------------------------------------------------- /Install/rtklib/aarch64/str2str: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNSSOEM/ELT_RTKBase/HEAD/Install/rtklib/aarch64/str2str -------------------------------------------------------------------------------- /Install/rtklib/convbin.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNSSOEM/ELT_RTKBase/HEAD/Install/rtklib/convbin.patch -------------------------------------------------------------------------------- /Install/rtklib/convbin_makefile.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNSSOEM/ELT_RTKBase/HEAD/Install/rtklib/convbin_makefile.patch -------------------------------------------------------------------------------- /Install/rtklib/make_rtklib.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNSSOEM/ELT_RTKBase/HEAD/Install/rtklib/make_rtklib.sh -------------------------------------------------------------------------------- /Install/rtklib/patch_rtklib.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNSSOEM/ELT_RTKBase/HEAD/Install/rtklib/patch_rtklib.sh -------------------------------------------------------------------------------- /Install/rtklib/rinex.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNSSOEM/ELT_RTKBase/HEAD/Install/rtklib/rinex.patch -------------------------------------------------------------------------------- /Install/rtklib/rtkrcv_makefile.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNSSOEM/ELT_RTKBase/HEAD/Install/rtklib/rtkrcv_makefile.patch -------------------------------------------------------------------------------- /Install/rtklib/str2str.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNSSOEM/ELT_RTKBase/HEAD/Install/rtklib/str2str.patch -------------------------------------------------------------------------------- /Install/rtklib/str2str_makefile.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNSSOEM/ELT_RTKBase/HEAD/Install/rtklib/str2str_makefile.patch -------------------------------------------------------------------------------- /Install/rtklib/stream.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNSSOEM/ELT_RTKBase/HEAD/Install/rtklib/stream.patch -------------------------------------------------------------------------------- /Install/rtklib/streamsvr.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNSSOEM/ELT_RTKBase/HEAD/Install/rtklib/streamsvr.patch -------------------------------------------------------------------------------- /Install/run_cast_sh.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNSSOEM/ELT_RTKBase/HEAD/Install/run_cast_sh.patch -------------------------------------------------------------------------------- /Install/server_py.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNSSOEM/ELT_RTKBase/HEAD/Install/server_py.patch -------------------------------------------------------------------------------- /Install/settings_conf_default.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNSSOEM/ELT_RTKBase/HEAD/Install/settings_conf_default.patch -------------------------------------------------------------------------------- /Install/settings_html.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNSSOEM/ELT_RTKBase/HEAD/Install/settings_html.patch -------------------------------------------------------------------------------- /Install/settings_js.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNSSOEM/ELT_RTKBase/HEAD/Install/settings_js.patch -------------------------------------------------------------------------------- /Install/startELT0x33.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNSSOEM/ELT_RTKBase/HEAD/Install/startELT0x33.sh -------------------------------------------------------------------------------- /Install/status_js.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNSSOEM/ELT_RTKBase/HEAD/Install/status_js.patch -------------------------------------------------------------------------------- /Install/str2str_ntrip_A.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNSSOEM/ELT_RTKBase/HEAD/Install/str2str_ntrip_A.patch -------------------------------------------------------------------------------- /Install/str2str_rtcm_svr.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNSSOEM/ELT_RTKBase/HEAD/Install/str2str_rtcm_svr.patch -------------------------------------------------------------------------------- /Install/str2str_tcp.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNSSOEM/ELT_RTKBase/HEAD/Install/str2str_tcp.patch -------------------------------------------------------------------------------- /Install/system_upgrade.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNSSOEM/ELT_RTKBase/HEAD/Install/system_upgrade.sh -------------------------------------------------------------------------------- /Install/tailscale_get_href.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNSSOEM/ELT_RTKBase/HEAD/Install/tailscale_get_href.sh -------------------------------------------------------------------------------- /Install/tailscale_unistall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNSSOEM/ELT_RTKBase/HEAD/Install/tailscale_unistall.sh -------------------------------------------------------------------------------- /Install/tune_power.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNSSOEM/ELT_RTKBase/HEAD/Install/tune_power.sh -------------------------------------------------------------------------------- /Install/uninstall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNSSOEM/ELT_RTKBase/HEAD/Install/uninstall.sh -------------------------------------------------------------------------------- /Install/version.txt: -------------------------------------------------------------------------------- 1 | 181 -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNSSOEM/ELT_RTKBase/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNSSOEM/ELT_RTKBase/HEAD/README.md -------------------------------------------------------------------------------- /Tools/RtkBaseConfigure.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNSSOEM/ELT_RTKBase/HEAD/Tools/RtkBaseConfigure.sh -------------------------------------------------------------------------------- /Tools/ShrinkDiagnostic.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNSSOEM/ELT_RTKBase/HEAD/Tools/ShrinkDiagnostic.sh -------------------------------------------------------------------------------- /Tools/command_line/set_hostname.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNSSOEM/ELT_RTKBase/HEAD/Tools/command_line/set_hostname.sh -------------------------------------------------------------------------------- /Tools/command_line/show_state_rtkbase_services.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNSSOEM/ELT_RTKBase/HEAD/Tools/command_line/show_state_rtkbase_services.sh -------------------------------------------------------------------------------- /Tools/command_line/show_usb_com.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNSSOEM/ELT_RTKBase/HEAD/Tools/command_line/show_usb_com.sh -------------------------------------------------------------------------------- /Tools/show_usb_serial.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNSSOEM/ELT_RTKBase/HEAD/Tools/show_usb_serial.sh -------------------------------------------------------------------------------- /Tools/show_wifi_list.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNSSOEM/ELT_RTKBase/HEAD/Tools/show_wifi_list.sh -------------------------------------------------------------------------------- /WinRtkBaseConfigure.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNSSOEM/ELT_RTKBase/HEAD/WinRtkBaseConfigure.exe -------------------------------------------------------------------------------- /WinRtkBaseConfigure/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNSSOEM/ELT_RTKBase/HEAD/WinRtkBaseConfigure/Main.cpp -------------------------------------------------------------------------------- /WinRtkBaseConfigure/Main.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNSSOEM/ELT_RTKBase/HEAD/WinRtkBaseConfigure/Main.dfm -------------------------------------------------------------------------------- /WinRtkBaseConfigure/Main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNSSOEM/ELT_RTKBase/HEAD/WinRtkBaseConfigure/Main.h -------------------------------------------------------------------------------- /WinRtkBaseConfigure/WinRtkBaseConfigure.bpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNSSOEM/ELT_RTKBase/HEAD/WinRtkBaseConfigure/WinRtkBaseConfigure.bpr -------------------------------------------------------------------------------- /WinRtkBaseConfigure/WinRtkBaseConfigure.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNSSOEM/ELT_RTKBase/HEAD/WinRtkBaseConfigure/WinRtkBaseConfigure.cpp -------------------------------------------------------------------------------- /WinRtkBaseConfigure/iso3166.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNSSOEM/ELT_RTKBase/HEAD/WinRtkBaseConfigure/iso3166.h -------------------------------------------------------------------------------- /WinRtkBaseConfigure/iso3166.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNSSOEM/ELT_RTKBase/HEAD/WinRtkBaseConfigure/iso3166.rc -------------------------------------------------------------------------------- /WinRtkBaseConfigure/iso3166.tab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNSSOEM/ELT_RTKBase/HEAD/WinRtkBaseConfigure/iso3166.tab -------------------------------------------------------------------------------- /WinRtkBaseUtils.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNSSOEM/ELT_RTKBase/HEAD/WinRtkBaseUtils.exe -------------------------------------------------------------------------------- /Windows/BYNAV_RESET.txt: -------------------------------------------------------------------------------- 1 | RESET 2 | RTKTYPE BASE 3 | REBOOT -------------------------------------------------------------------------------- /Windows/BYNAV_RTK.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNSSOEM/ELT_RTKBase/HEAD/Windows/BYNAV_RTK.txt -------------------------------------------------------------------------------- /Windows/HAS.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNSSOEM/ELT_RTKBase/HEAD/Windows/HAS.bat -------------------------------------------------------------------------------- /Windows/RTK.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNSSOEM/ELT_RTKBase/HEAD/Windows/RTK.bat -------------------------------------------------------------------------------- /Windows/SEPTENTRIO_RESET.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNSSOEM/ELT_RTKBase/HEAD/Windows/SEPTENTRIO_RESET.txt -------------------------------------------------------------------------------- /Windows/SEPTENTRIO_RTK.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNSSOEM/ELT_RTKBase/HEAD/Windows/SEPTENTRIO_RTK.txt -------------------------------------------------------------------------------- /Windows/SEPTENTRIO_TEST.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNSSOEM/ELT_RTKBase/HEAD/Windows/SEPTENTRIO_TEST.txt -------------------------------------------------------------------------------- /Windows/UM980_HAS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNSSOEM/ELT_RTKBase/HEAD/Windows/UM980_HAS.txt -------------------------------------------------------------------------------- /Windows/UM980_RESET.txt: -------------------------------------------------------------------------------- 1 | RESET 2 | -------------------------------------------------------------------------------- /Windows/UM982_HAS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNSSOEM/ELT_RTKBase/HEAD/Windows/UM982_HAS.txt -------------------------------------------------------------------------------- /Windows/UM982_RESET.txt: -------------------------------------------------------------------------------- 1 | RESET 2 | CONFIG SIGNALGROUP 7 0 3 | -------------------------------------------------------------------------------- /Windows/UM_RESET.txt: -------------------------------------------------------------------------------- 1 | RESET 2 | -------------------------------------------------------------------------------- /Windows/UM_RTK.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNSSOEM/ELT_RTKBase/HEAD/Windows/UM_RTK.txt -------------------------------------------------------------------------------- /Windows/nmeaConf.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNSSOEM/ELT_RTKBase/HEAD/Windows/nmeaConf.exe -------------------------------------------------------------------------------- /Windows/pack.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNSSOEM/ELT_RTKBase/HEAD/Windows/pack.bat -------------------------------------------------------------------------------- /Windows/rtcm3save.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNSSOEM/ELT_RTKBase/HEAD/Windows/rtcm3save.exe -------------------------------------------------------------------------------- /install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNSSOEM/ELT_RTKBase/HEAD/install.sh -------------------------------------------------------------------------------- /rpi_image_scripts/README.md: -------------------------------------------------------------------------------- 1 | ## Scripts for creating a Raspbian image with RtkBase 2 | 3 | -------------------------------------------------------------------------------- /rpi_image_scripts/create_release_image.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNSSOEM/ELT_RTKBase/HEAD/rpi_image_scripts/create_release_image.sh -------------------------------------------------------------------------------- /rpi_image_scripts/mount_and_run_scripts.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNSSOEM/ELT_RTKBase/HEAD/rpi_image_scripts/mount_and_run_scripts.sh -------------------------------------------------------------------------------- /rpi_image_scripts/target_scripts/place_configure_util.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNSSOEM/ELT_RTKBase/HEAD/rpi_image_scripts/target_scripts/place_configure_util.sh -------------------------------------------------------------------------------- /rpi_image_scripts/target_scripts/rtkbase_install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNSSOEM/ELT_RTKBase/HEAD/rpi_image_scripts/target_scripts/rtkbase_install.sh -------------------------------------------------------------------------------- /rpi_image_scripts/target_scripts/update_upgrade.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNSSOEM/ELT_RTKBase/HEAD/rpi_image_scripts/target_scripts/update_upgrade.sh -------------------------------------------------------------------------------- /rpi_image_scripts/unpack.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNSSOEM/ELT_RTKBase/HEAD/rpi_image_scripts/unpack.sh -------------------------------------------------------------------------------- /rtkbase_preinstall/create_release_sh.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNSSOEM/ELT_RTKBase/HEAD/rtkbase_preinstall/create_release_sh.patch -------------------------------------------------------------------------------- /rtkbase_preinstall/create_rtkbase_install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNSSOEM/ELT_RTKBase/HEAD/rtkbase_preinstall/create_rtkbase_install.sh -------------------------------------------------------------------------------- /rtkbase_preinstall/requirements_txt.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNSSOEM/ELT_RTKBase/HEAD/rtkbase_preinstall/requirements_txt.patch -------------------------------------------------------------------------------- /rtkbase_preinstall/rtkbase_install_sh.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNSSOEM/ELT_RTKBase/HEAD/rtkbase_preinstall/rtkbase_install_sh.patch --------------------------------------------------------------------------------