Class FlinkUARTOutputStream
- java.lang.Object
-
- java.io.OutputStream
-
- org.deepjava.runtime.zynq7000.driver.UARTOutputStream
-
- org.deepjava.runtime.zynq7000.driver.FlinkUARTOutputStream
-
- All Implemented Interfaces:
Closeable
,Flushable
,AutoCloseable
,Modified
public class FlinkUARTOutputStream extends UARTOutputStream
Stream to write bytes to a UART interface. Don't forget to initialize the interface before using this stream.
-
-
Constructor Summary
Constructors Constructor Description FlinkUARTOutputStream(FlinkUART uart)
Creates an output stream on a given UART interface.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
write(byte[] buffer)
Equivalent towrite(buffer, 0, buffer.length)
.void
write(byte[] buffer, int off, int count)
Writescount
bytes from the byte arraybuffer
starting at positionoffset
to this stream.void
write(int b)
Writes a single byte to this stream.-
Methods inherited from class java.io.OutputStream
close, flush
-
-
-
-
Constructor Detail
-
FlinkUARTOutputStream
public FlinkUARTOutputStream(FlinkUART uart)
Creates an output stream on a given UART interface.- Parameters:
uart
- UART number.
-
-
Method Detail
-
write
public void write(int b)
Writes a single byte to this stream. Only the least significant byte of the integerb
is written to the stream.- Overrides:
write
in classUARTOutputStream
- Parameters:
b
- the byte to be written.
-
write
public void write(byte[] buffer)
Equivalent towrite(buffer, 0, buffer.length)
.- Overrides:
write
in classUARTOutputStream
- Parameters:
buffer
- the buffer to be written.
-
write
public void write(byte[] buffer, int off, int count)
Writescount
bytes from the byte arraybuffer
starting at positionoffset
to this stream.- Overrides:
write
in classUARTOutputStream
- Parameters:
buffer
- the buffer to be written.off
- the start position inbuffer
from where to get bytes.count
- the number of bytes frombuffer
to write to this stream.
-
-