I am establishing a kermit connection to my target via a ~/.kermrc file as suggested...
set line /dev/ttyUSB0
set flow-control none
set carrier-watch off
set speed 115200
connect
... But I periodically must unpower the target, which then changes the ttyUSB enumeration, which means I need to change the USB enumeration in the ~/.kermrc file.
My question is, is there a way to dynamically populate the USB line number without modifying the ~/.kermrc. If I remove the 'set line /dev/ttyUSB' and attempt to populate via command-line like this...
kermit -l /dev/ttyUSB0
... the ~/.kermrc file is read first and the command-line line configuration is not respected, so you receive errors that a line number must be set before setting the additional options in the ~/.kermrc.
Thanks in advance for response.