acn/rtx
acn
/
rtx
1
0
Fork 0

miniBtx-Handling verbessert, es werden nun Neuverbindungen (nach Disconnect) richtig erkannt

This commit is contained in:
acn 2018-06-01 13:09:23 +02:00
parent fb27299f51
commit 5cba18d5f0
2 changed files with 11 additions and 4 deletions

View File

@ -20,7 +20,7 @@ LOGLEVEL=logging.DEBUG
## serial port settings:
#PORT="/dev/pts/5"
PORT="/dev/ttyUSB3"
PORT="/dev/ttyUSB1"
BAUDRATE="1200"
# if the system is connected directly (null-modem): MODE=direct
# if the system is connected via a modem: MODE=modem

13
rtx.py
View File

@ -89,16 +89,23 @@ while True:
rtxModem.init_modem()
rtxModem.wait_for_caller()
rtxHelpers.send_welcome_page()
elif glob.mode == "minibtx":
minibtx.wait_for_minibtx()
rtxHelpers.send_welcome_page()
# main loop to read data from client
while True:
in_byte = glob.ser.read(1)
if glob.mode == "minibtx":
if in_byte == b'\x01':
logging.info("miniBtx starts connection... waiting for connection...")
minibtx.wait_for_minibtx()
rtxHelpers.send_welcome_page()
break
rtxHelpers.process_byte(in_byte)
if glob.mode == "modem":
if glob.ser.getCD() == False:
logging.info("modem hangup.")
break