preparing for rx buffer

This commit is contained in:
DJ2LS 2021-08-16 20:04:03 +02:00 committed by GitHub
parent 43c3f0c626
commit b5981550aa
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 9 additions and 1 deletions

View file

@ -121,4 +121,7 @@ ipcMain.on('request-update-daemon-connection', (event, arg) => {
ipcMain.on('run-tnc-command', (event, arg) => {
win.webContents.send('run-tnc-command', arg);
});
ipcMain.on('request-update-rx-buffer', (event, arg) => {
win.webContents.send('action-update-rx-buffer', arg);
});

View file

@ -550,6 +550,11 @@ try {
});
ipcRenderer.on('action-update-rx-buffer', (event, arg) => {
var daten = arg.["DATA"][0]
console.log(daten)
});
ipcRenderer.on('action-update-daemon-state', (event, arg) => {