Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions receiver_cfg/Septentrio_Mosaic-X5.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,12 @@ setSBFOutput, Stream1, , +BDSRaw+BDSRawB1C+BDSRawB2a+BDSRawB2b
setSBFOutput, Stream1, , +QZSRawL1CA+QZSRawL2C+QZSRawL5
setSBFOutput, Stream1, , +NAVICRaw
setSBFOutput, Stream1, , +GEORawL1+GEORawL5
setSatelliteTracking, -SBAS
setSignalTracking, GPSL1CA+GPSL1PY+GPSL2PY+GPSL2C+GPSL5+GLOL1CA+GLOL2P+GLOL2CA+GLOL3+GALL1BC+GALE6BC+GALE5a+GALE5b+GALE5+GEOL1+GEOL5+BDSB1I+BDSB2I+BDSB3I+BDSB1C+BDSB2a+BDSB2b+QZSL1CA+QZSL2C+QZSL5+QZSL1CB+NAVICL5
setSBFOutput, Stream1, , +PVTGeodetic+ChannelStatus+ReceiverStatus+SatVisibility+ReceiverTime
setPVTMode, Static
setPPSParameters, sec1, Low2High, , UTC
setUSBInternetAccess, on
setHttpsSettings, HTTP
login, basegnss, basegnss!, RxAdmin, S3pt3ntr10
#END
4 changes: 2 additions & 2 deletions web_app/gnss_rproxy_server.py
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ def redirect_to_API_HOST(path): #NOTE var :path will be unused as all path we n
return response


@app.route('/login', methods=['GET', 'POST'])
@app.route('/gnsslogin', methods=['GET', 'POST'])
def login_page():
if current_user.is_authenticated:
return redirect(url_for('index'))
Expand All @@ -146,7 +146,7 @@ def login_page():

return render_template('proxy_login.html', title='Sign In', form=loginform)

@app.route('/logout')
@app.route('/gnsslogout')
def logout():
logout_user()
return redirect(url_for('login_page'))
Expand Down
Loading