Skip to main content

UART modules for cocotb

Project description

UART interface modules for Cocotb

Regression Tests codecov PyPI version Downloads

GitHub repository: https://github.com/alexforencich/cocotbext-uart

Introduction

UART simulation models for cocotb.

Installation

Installation from pip (release version, stable):

$ pip install cocotbext-uart

Installation from git (latest development version, potentially unstable):

$ pip install https://github.com/alexforencich/cocotbext-uart/archive/master.zip

Installation for active development:

$ git clone https://github.com/alexforencich/cocotbext-uart
$ pip install -e cocotbext-uart

Documentation and usage examples

See the tests directory, taxi, and verilog-uart for complete testbenches using these modules.

UART

The UartSource and UartSink classes can be used to drive, receive, and monitor asynchronous serial data.

To use these modules, import the one you need and connect it to the DUT:

from cocotbext.uart import UartSource, UartSink

uart_source = UartSource(dut.rxd, baud=115200, bits=8)
uart_sink = UartSink(dut.rxd, baud=115200, bits=8)

To send data into a design with a UartSource, call write() or write_nowait(). Accepted data types are iterables of ints, including lists, bytes, bytearrays, etc. Optionally, call wait() to wait for the transmit operation to complete. Example:

await uart_source.send(b'test data')
# wait for operation to complete (optional)
await uart_source.wait()

To receive data with a UartSink, call read() or read_nowait(). Optionally call wait() to wait for new receive data. read() will block until at least 1 data byte is available. Both read() and read_nowait() will return up to count bytes from the receive queue, or the entire contents of the receive queue if not specified.

data = await uart_sink.recv()

Constructor parameters:

  • data: data signal
  • baud: baud rate in bits per second (optional, default 9600)
  • bits: bits per byte (optional, default 8)
  • stop_bits: length of stop bit in bit times (optional, default 1)

Attributes:

  • baud: baud rate in bits per second
  • bits: bits per byte
  • stop_bits: length of stop bit in bit times

Methods

  • write(data): send data (blocking) (source)
  • write_nowait(data): send data (non-blocking) (source)
  • read(count): read count bytes from buffer (blocking) (sink)
  • read_nowait(count): read count bytes from buffer (non-blocking) (sink)
  • count(): returns the number of items in the queue (all)
  • empty(): returns True if the queue is empty (all)
  • idle(): returns True if no transfer is in progress (all) or if the queue is not empty (source)
  • clear(): drop all data in queue (all)
  • wait(): wait for idle (source)
  • wait(timeout=0, timeout_unit='ns'): wait for data received (sink)

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

cocotbext_uart-0.1.4.tar.gz (7.9 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

cocotbext_uart-0.1.4-py3-none-any.whl (6.6 kB view details)

Uploaded Python 3

File details

Details for the file cocotbext_uart-0.1.4.tar.gz.

File metadata

  • Download URL: cocotbext_uart-0.1.4.tar.gz
  • Upload date:
  • Size: 7.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for cocotbext_uart-0.1.4.tar.gz
Algorithm Hash digest
SHA256 574643c82067be5e1dd6e2e830f46b8803c07fc1f27b7f75bf25066fd6d06798
MD5 253397f1d185d047b6ec919b110f0b90
BLAKE2b-256 0d14150453a9113885a93f8be7a4f21b89e8c67f91369e808d4e16ad8ec35869

See more details on using hashes here.

File details

Details for the file cocotbext_uart-0.1.4-py3-none-any.whl.

File metadata

  • Download URL: cocotbext_uart-0.1.4-py3-none-any.whl
  • Upload date:
  • Size: 6.6 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for cocotbext_uart-0.1.4-py3-none-any.whl
Algorithm Hash digest
SHA256 be78f266449765a1cb7877a733f796bbfdbe492e7205051c4cc413e2e0c4727f
MD5 d75e6bce2c679ce81039ee3d1f787a4b
BLAKE2b-256 2432351045b5ac3feb65c3b54153a20ffb882a5445297572d67752ac755791c9

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page