Class UARTOutputStream
- java.lang.Object
-
- java.io.OutputStream
-
- org.deepjava.runtime.mpc5200.driver.UARTOutputStream
-
- All Implemented Interfaces:
Closeable,Flushable,AutoCloseable,Modified
public class UARTOutputStream extends OutputStream
Stream to write bytes to a UART interface. Don't forget to initialize the interface before using this stream.
-
-
Constructor Summary
Constructors Constructor Description UARTOutputStream(int uart)Creates an output stream on a given UART interface.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidwrite(byte[] buffer)Equivalent towrite(buffer, 0, buffer.length).voidwrite(byte[] buffer, int off, int count)Writescountbytes from the byte arraybufferstarting at positionoffsetto this stream.voidwrite(int b)Writes a single byte to this stream.-
Methods inherited from class java.io.OutputStream
close, flush
-
-
-
-
Field Detail
-
pPSC1
public static final int pPSC1
- See Also:
- Constant Field Values
-
pPSC2
public static final int pPSC2
- See Also:
- Constant Field Values
-
pPSC3
public static final int pPSC3
- See Also:
- Constant Field Values
-
pPSC4
public static final int pPSC4
- See Also:
- Constant Field Values
-
pPSC5
public static final int pPSC5
- See Also:
- Constant Field Values
-
pPSC6
public static final int pPSC6
- See Also:
- Constant Field Values
-
-
Method Detail
-
write
public void write(int b)
Writes a single byte to this stream. Only the least significant byte of the integerbis written to the stream.- Specified by:
writein classOutputStream- Parameters:
b- the byte to be written.
-
write
public void write(byte[] buffer)
Equivalent towrite(buffer, 0, buffer.length).- Overrides:
writein classOutputStream- Parameters:
buffer- the buffer to be written.
-
write
public void write(byte[] buffer, int off, int count)Writescountbytes from the byte arraybufferstarting at positionoffsetto this stream.- Overrides:
writein classOutputStream- Parameters:
buffer- the buffer to be written.off- the start position inbufferfrom where to get bytes.count- the number of bytes frombufferto write to this stream.
-
-