ARQ WIP - adjusted events

This commit is contained in:
DJ2LS 2023-12-25 14:06:53 +01:00
parent ca7e7f6558
commit fbc319a09a
4 changed files with 4 additions and 4 deletions

View file

@ -277,6 +277,7 @@ export function eventDispatcher(data) {
}
}
/*
var message = "";

View file

@ -95,6 +95,7 @@ class ARQSessionIRS(arq_session.ARQSession):
thread_wait.start()
def send_open_ack(self, open_frame):
ack_frame = self.frame_factory.build_arq_session_open_ack(
self.id,
self.dxcall,

View file

@ -64,4 +64,4 @@ class EventManager:
'state': state,
}
}
self.broadcast(event)
self.broadcast(event)

View file

@ -218,9 +218,7 @@ def post_modem_send_raw():
if not app.state_manager.is_modem_running:
api_abort('Modem not running', 503)
enqueue_tx_command(command_arq_raw.ARQRawCommand, request.json)
# server_commands.modem_arq_send_raw(request.json)
return "Not implemented yet"
return api_response(request.json)
@app.route('/modem/stop_transmission', methods=['POST'])
def post_modem_send_raw_stop():