The FPGA gateware for the Thunderscope is supported by the ThunderScope Litex Repo.
Prebuilt bitstreams are available from the ThunderScope LiteX Repo Releases. You can download the appropriate file for your FPGA variant there.
Use openFPGALoader to flash a new bitstream to your ThunderScope.
> openFPGALoader --fpga-part [FPGA_PART] -f -c digilent_hs2 thunderscope_aXXX.bit
where the FPGA_PART
is one of:
xc7a200tfbg484
xc7a100tfgg484
xc7a50tcsg324
-
Install Vivado, Python3, and LiteX.
-
Ensure Vivado is in your current path
-
Clone the thunderscope_litex repo and follow the instruction in the README.md to build the gateware and generate the software driver.
-
./thunderscope.py --variant=<variant> --driver --build
Available Variants:
Label | Description |
---|---|
a200t |
Trenz A200T Module |
a100t |
Trenz A100T Module |
a50t |
Custom Module |
-
Connect the JTAG debugger to the Thunderscope
-
./thunderscope.py --variant=<variant> --flash
The Linux driver for the LiteX build is available from the ts_litex_driver_linux Repo
- Build and install the LitePCIe Driver project using make.
$ cd kernel/
$ make
$ sudo ./init.sh
The Windows driver for the LiteX build is available from the ts_litex_driver_win Repo
-
Install the prerequisites as described in the driver project's README, including either the Windows WDK and KMDF or the EWDK command line tools.
-
Build the LitePCIe Driver project by opening the .vcxproj file in Visual Studio, Or launching the EWDK build environment.
> C:\EWDK\LaunchBuildEnv.cmd
> cd litepciedrv
> buildall.bat
The Driver file is found in the litepciedrv/x64/Release/litepciedrv
folder.
-
To install the driver, verify your PC is in TESTSIGNING mode. In an administrator command prompt, run the command
Bcdedit.exe -set TESTSIGNING ON
and reboot the system.When Windows is in TESTSIGNING mode, ensure the Thunderscope is connected to the PC. Open the Device Manager and locate the Thunderscope in the "Multifunction Devices" category. Right-Click the Thunderscope device and select "Update Driver". Tell Windows to manualy install the driver from the litepciedrv build folder noted above.
The libtslitex library provides control over the Thunderscope input channels and Sample DMA. Clone the libtslitex Repo.
Libtslitex uses the CMake build environment.
- Create a build folder
> mkdir build && cd build
- Configure CMake
> cmake ..
- Build with CMake
> cmake --build . --config=Release
- There is a test application built to
build/artifacts/example/Release/
and the libraries are found in thebuild/Release
folder
Management of Data buffers and data triggering is provided by the TS.NET project.
-
Clone the TS.NET Repo
-
Build the TS.NET.Engine project using the included build script.
Windows
> cd build-scripts > powershell -ExecutionPolicy Bypass -File "TS.NET.Engine (win-x64).ps1"
Linux
> cd build-scripts > ./TS.NET.Engine\ (linux-x64).bash
- Copy the tslitex library file into the TS.NET.Engine build directory
Windows
> cp libtslitex/build/Release/tslitex.dll TS.NET/builds/win-x64/TS.NET.Engine/0.1.0/tslitex.dll
Linux
> cp libtslitex/build/artifacts/libtslitex/libtslitex.so TS.NET/builds/linux-x64/TS.NET.Engine/0.1.0/libtslitex.so
- Change the configured HardwareDriver in the thunderscope.yaml file to LiteX
HardwareDriver: LiteX
You should now be able to run TS.NET.Engine and connect to the Thunderscope.