pull/26/head
DJ2LS 2021-03-10 13:43:31 +01:00 committed by GitHub
parent 4b023b876b
commit 0a1e9c5ee3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 1 deletions

View File

@ -144,7 +144,8 @@ class CMDTCPRequestHandler(socketserver.BaseRequestHandler):
"CHANNEL_STATE": str(static.CHANNEL_STATE),
"TNC_STATE": str(static.TNC_STATE),
"ARQ_STATE": str(static.ARQ_STATE),
"AUDIO_RMS": str(static.AUDIO_RMS)
"AUDIO_RMS": str(static.AUDIO_RMS),
"BER": str(static.BER)
}
jsondata = json.dumps(output)
self.request.sendall(bytes(jsondata, encoding))