This pages describes the UART TX byte file.
This file simply defines the main item, that the TX sequence drives.
For this simple project, it is merely a byte, which is written to the UART TX write port and delay parameter. The latter controls the time gap between consecutive transactions.
Note: that the TX has pk_tx package.
package pk_tx;
struct uart_tx_byte_s like any_sequence_item {
uart_tx_data : byte;
transmit_delay : uint;
keep transmit_delay >= 200; --> 720 ns
keep soft transmit_delay < 400;
};--struct uart_tx_byte_s
To go to main project: main project page
|