-
Notifications
You must be signed in to change notification settings - Fork 67
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* USB driver patch Refactored SerialInputOutputManager: - Implemented multiple read buffers to improve USB reading efficiency and reduce latency. - Used separate threads for reading and writing, enhancing concurrency and performance. - Removed read timeouts, as they are not necessary for event-driven data reading. These changes enhance the responsiveness, reliability, and robustness of USB communication. * fixed merge * fixed merge * cleanup. * Removed unused import
- Loading branch information
Showing
5 changed files
with
196 additions
and
150 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -281,4 +281,6 @@ enum ControlLine { RTS, CTS, DTR, DSR, CD, RI } | |
*/ | ||
boolean isOpen(); | ||
|
||
UsbDeviceConnection getConnection(); | ||
|
||
} |
Oops, something went wrong.