Created
August 24, 2013 07:52
-
-
Save YuuichiAkagawa/6326737 to your computer and use it in GitHub Desktop.
Physicaloid UART config sample
This file contains hidden or 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
UartConfig paramUart = new UartConfig(115200, UartConfig.DATA_BITS8, UartConfig.STOP_BITS1, UartConfig.PARITY_NONE, false, false); | |
if(mPhysicaloid.open(paramUart)) { | |
//... | |
} else { | |
//... | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment