You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Our project used TCP communication before, and we have implemented LengthFieldBasedFrameDecoder and MessageToByteEncoder to parse and send data. But now we need to use serial communication, but we still want to use the code of LengthFieldBasedFrameDecoder and MessageToByteEncoder. is there any solution? thanks
The text was updated successfully, but these errors were encountered:
Im going do USB communication , after research the code , I think DotNetty is abstract enough.
bootstrap.Group(group)/* Maybe you can try to implement your own SerialSocketChannel, and I need to implement my UsbSocketChannel */.Channel<TcpSocketChannel>()
......Handler(newActionChannelInitializer<ISocketChannel>(channel =>{
...}));
Our project used TCP communication before, and we have implemented LengthFieldBasedFrameDecoder and MessageToByteEncoder to parse and send data. But now we need to use serial communication, but we still want to use the code of LengthFieldBasedFrameDecoder and MessageToByteEncoder. is there any solution? thanks
The text was updated successfully, but these errors were encountered: