Skip to content

Instantly share code, notes, and snippets.

@YuuichiAkagawa
Created August 24, 2013 07:52
Show Gist options
  • Save YuuichiAkagawa/6326737 to your computer and use it in GitHub Desktop.
Save YuuichiAkagawa/6326737 to your computer and use it in GitHub Desktop.
Physicaloid UART config sample
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