├── .gitignore ├── README.md ├── comwrapper └── comport.go ├── config.json ├── example.go ├── go.mod ├── go.sum └── protocol ├── client.go ├── gateway.go ├── packet.go ├── protocol_test.go └── transport.go /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoanBrand/SerialToTCPBridgeProtocol/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoanBrand/SerialToTCPBridgeProtocol/HEAD/README.md -------------------------------------------------------------------------------- /comwrapper/comport.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoanBrand/SerialToTCPBridgeProtocol/HEAD/comwrapper/comport.go -------------------------------------------------------------------------------- /config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoanBrand/SerialToTCPBridgeProtocol/HEAD/config.json -------------------------------------------------------------------------------- /example.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoanBrand/SerialToTCPBridgeProtocol/HEAD/example.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoanBrand/SerialToTCPBridgeProtocol/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoanBrand/SerialToTCPBridgeProtocol/HEAD/go.sum -------------------------------------------------------------------------------- /protocol/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoanBrand/SerialToTCPBridgeProtocol/HEAD/protocol/client.go -------------------------------------------------------------------------------- /protocol/gateway.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoanBrand/SerialToTCPBridgeProtocol/HEAD/protocol/gateway.go -------------------------------------------------------------------------------- /protocol/packet.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoanBrand/SerialToTCPBridgeProtocol/HEAD/protocol/packet.go -------------------------------------------------------------------------------- /protocol/protocol_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoanBrand/SerialToTCPBridgeProtocol/HEAD/protocol/protocol_test.go -------------------------------------------------------------------------------- /protocol/transport.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoanBrand/SerialToTCPBridgeProtocol/HEAD/protocol/transport.go --------------------------------------------------------------------------------