Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/thotypous/altsourceprobe
Altera JTAG Source/Probe wrapper for Bluespec
https://github.com/thotypous/altsourceprobe
bluespec debugging hardware-libraries jtag
Last synced: about 1 month ago
JSON representation
Altera JTAG Source/Probe wrapper for Bluespec
- Host: GitHub
- URL: https://github.com/thotypous/altsourceprobe
- Owner: thotypous
- License: mit
- Created: 2013-11-08T17:24:45.000Z (about 11 years ago)
- Default Branch: master
- Last Pushed: 2014-04-09T13:03:31.000Z (over 10 years ago)
- Last Synced: 2023-06-16T21:15:58.296Z (over 1 year ago)
- Topics: bluespec, debugging, hardware-libraries, jtag
- Language: Tcl
- Homepage:
- Size: 246 KB
- Stars: 6
- Watchers: 5
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
AltSourceProbe
==============This repository contains a wrapper and a set of useful Bluespec modules for dealing with `altsource_probe`, a *megafunction* which can be used in hardware designs as a kind of communication bus to talk with a computer in a fashion *portable* across Altera FPGA devices.
This module is very suitable for debugging hardware designs or for communicating with slow data rates. If you are looking for something similar but capable of achieving higher data rates, please take a look at our [AlteraJtagUart](https://github.com/thotypous/alterajtaguart) module.
See the `AltSourceProbe.bsv` file for a brief description of the available modules.
The `ExampleSimple.bsv` file contains a simple example, which controls the DE2_70 board LEDs using JTAG.
The `ExampleFIFOs.bsv` file contains an example on using the `JtagGetPut.bsv` library, which can be particularly useful for debugging Bluespec atomic transactions or for transmitting general purpose data (though at slow data rates).
The `jtaghttpd.tcl` file consists of a simple HTTP server which can be used to talk with Altera JTAG devices in other languages besides TCL. Beware we are not experienced TCL coders. Just run the file using the `quartus_stp -t` interpreter to start the server. Please look at the comments at the beginning of the file for documentation.
The `python` directory contains some client code and some examples which can be used to communicate with the JTAG HTTP server using the Python language.