C-Kermit 连接 Microchip WBZ451 Curiosity Board实例

发布时间 2023-12-15 14:34:50作者: abaelhe

The Kermit Project | Now hosted by Panix.com
New York City USA • kermit@kermitproject.org
…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的输出: