udp2serial
v1.2 release
이는 UDP/IP 소켓에서 수신된 데이터를 가져와 직렬 포트로 전달하는 간단한 콘솔 애플리케이션입니다.
udp2serial [options] UDPPort [COMPortID]
짧은 | 긴 | 설명 |
---|---|---|
-나 | ‑‑인터페이스IP | UDP 소켓에 사용할 네트워크 인터페이스의 IP를 정의합니다. IPv4를 사용하는 모든 인터페이스를 수신하려면 0.0.0.0을 사용하고 IPv6을 사용하는 모든 인터페이스에는 ::0을 사용합니다. |
-비 | ‑‑전송 속도 | 직렬 전송 속도를 정의합니다. 표준 값: 110, 300, 600, 1200, 2400, 4800, 9600, 14400, 19200, 38400, 57600, 115200, 128000 또는 256000. |
-디 | ‑‑DataBits | 바이트당 데이터 비트의 표준 길이를 정의합니다. 표준 값: 5, 6, 7 또는 8. |
-피 | --둥가 | 패리티 검사 프로토콜을 정의합니다. 값은 Even, Mark, None, Odd 또는 Space 중 하나입니다. |
-에스 | ‑‑StopBits | 바이트당 표준 정지 비트 수를 정의합니다. 값은 None, One, OnePointFive 또는 Two 중 하나입니다. |
-티 | ‑‑Dtr활성화 | 직렬 통신 중에 DTR(Data Terminal Ready) 신호를 활성화하는 부울 값(true 또는 false)을 정의합니다. |
-아르 자형 | ‑‑Rts활성화 | 직렬 통신 중에 RTS(Request to Send) 신호가 활성화되는지 여부를 나타내는 부울 값(true 또는 false)을 정의합니다. |
-? | --돕다 | 사용법을 보여줍니다. |
udp2serial -b=9600 5505 COM2
udp2serial 8505 /dev/ttyS2
udp2serial --InterfaceIP=::0 6704
선택적 매개변수(예: 직렬 전송 속도 및 UDP 네트워크 인터페이스)에 대한 기본 설정은 settings.ini
파일에서 구성됩니다. 이 파일은 응용 프로그램이 처음 실행될 때 자동으로 생성됩니다.
이 구성 파일의 일반적인 위치는 다음과 같습니다.
OS | 설정 파일 경로 |
---|---|
윈도우 | C:ProgramDataudp2serialsettings.ini |
리눅스/OSX | /usr/share/udp2serial/settings.ini |
원래 기본값은 처음에 주석 처리되어 있습니다. 다음은 몇 가지 재정의가 포함된 기본 설정 파일의 예입니다.
[Serial]
; Defines the serial baud rate. Standard values: 110, 300, 600, 1200, 2400,
; 4800, 9600, 14400, 19200, 38400, 57600, 115200, 128000, or 256000.
; BaudRate=115200
BaudRate =9600
; Defines the standard length of data bits per byte. Standard values: 5, 6,
; 7 or 8.
; DataBits=8
; Defines the parity-checking protocol. Value is one of: Even, Mark, None, Odd
; or Space.
; Parity=None
; Defines the standard number of stopbits per byte. Value is one of: None, One,
; OnePointFive or Two.
; StopBits=One
; Defines the value that enables the Data Terminal Ready (DTR) signal during
; serial communication.
; DtrEnable=False
; Defines the value indicating whether the Request to Send (RTS) signal is
; enabled during serial communication.
; RtsEnable=False
[UDP]
; Defines the IP of the network interface to use for the UDP socket. Use 0.0.0.0
; to listen on all interfaces with IPv4 or ::0 for all interfaces with IPv6.
; InterfaceIP=0.0.0.0
InterfaceIP =::0