The Kermit Project | Now hosted by Panix.com
New York City USA • [email protected]
…since 1981
~/.kermrc 文件:
; Connect to WBZ451 USB-USART Virtual COM
def connWBZ451 {
SET PORT \%1 ; Specify device name
SET SPEED \%2 ; Or other desired speed
SET CARRIER-WATCH OFF ; If DTR and CD are not cross-connected, or
; To CONNECT to a Serial Device that is not presenting the Carrier Detect signal
SET TERMINAL BYTESIZE 8
SET COMMAND BYTESIZE 8
SET PARITY NONE ; {"NONE","EVEN", "ODD", "MARK", "SPACE"}
SET FLOW /DIRECT-SERIAL NONE ; Flow control Type:{"keep", "none", "rts/cts", "xon/xoff"}
;or Connection Type:{"/direct-serial", "/modem", "/remote", "/tcpip"}
SET STOP-BITS 1 ; (rarely necessary)
IF FAIL END 1 ;
IF SUCCESS CONNECT ; Enter Connect (terminal) state
}
;/dev/tty.usbmodem00112053651
connWBZ451 /dev/tty.usbmodem00112053651 115200
C-Kermit连接 WBZ451 Curiosity Board成功及help与zclHelp的输出: