Home | History | Annotate | Download | only in java

Lines Matching refs:System

32 			System.loadLibrary("javaupm_hmtrp");
34 System.err.println("error in loading native library");
35 System.exit(-1);
40 System.out.println("Usage:");
41 System.out.println("Pass a commandline argument (any argument) to this program");
42 System.out.println("to query the radio configuration and output it. NOTE: the");
43 System.out.println("radio must be in CONFIG mode for this to work.");
44 System.out.println("Running this program without arguments will simply transmit");
45 System.out.println("'Hello World!' every second, and output any data received from");
46 System.out.println("another radio.");
56 System.err.println("Failed to setup tty port parameters");
57 System.exit(-1);
84 System.out.println("Radio configuration:");
85 System.out.println("freq: " + freq[0] + " dataRate: " + dataRate[0]
87 System.out.println("modulation: " + modulation[0] + "Khz txPower: " + txPower[0]
90 System.err.println("getConfig() failed. Make sure the radio is in CONFIG mode.");
98 System.out.println("Running in normal read/write mode.");
107 System.out.print("Received: ");
109 System.out.print((char) radioBuffer[i]);
110 System.out.println();
112 System.err.println("Port read error.");
123 System.out.println("Transmitting hello world...");