danielhilst

SerialMode.java

Jul 1st, 2013
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.38 KB | None | 0 0
  1. import java.io.File;
  2. import java.io.FileWriter;
  3.  
  4. public class SerialMode {
  5.         public static void main(String[] args) throws Exception {
  6.                 String mode = "422";
  7.                 String path = "/sys/class/modSerial/icaro_ttyS0/mode";
  8.                 FileWriter fw = new FileWriter(new File(path));
  9.  
  10.                 fw.write(mode);
  11.                 fw.close();
  12.         }
  13. }
Advertisement
Add Comment
Please, Sign In to add comment