pjtelecommunication.com FPGA experiments!
The sole purpose of this website is to document my FPGA experiments.
This is my pet project only.
Please bear in mind that:
- I am not a professional FPGA designer!
- I am not a professional website designer either!
- This website was set up with a minimal effort!
- Instead of making this website looking nice I strongly prefer to focus on actual FPGA work!
- Even though I have been working as an embedded SW engineer for way too long, I have never worked as a professional DSP designer!
- I have no idea what I actually do!
Please check out my github
Goals and the plan
The ultimate goal of this project is to create DSP system implemented using FPGA, without any additional software involved. The aim of this website is to document the entire process.
Having a plan is usually better than not having a plan. Therefore, the entire project was divided into following steps:
- Firstly, basic building blocks, like multipliers, will be developed.
- Then, numerically controlled oscillator (NCO) will be designed. Basic methods, like using look-up tables (LUTs) or Taylor series, are well-known, and frankly, not so exciting. Therefore a different approach will be taken. Linear time invariant (LTI) system, with poles lying outside the unit circle, will be designed. Such systems are unstable, often oscillating. This is exactly what is needed to build NCO.
- Alternatively, coordinate rotation digital computer (CORDIC) algorithm may be used do create NCO. It is likely that both implementations will be done, just to compare their resource utilisation.
- Next, multi-tone signal will be created by adding up outputs of multiple NCOs running at different frequencies.
- Frequency spectrum of the signal will be computed using Fast Fourier Transform (FFT). The standard Cooley-Tukey algorithm will be implemented. Even though it is well known, it is still exciting.
- After that, the signal will be passed through a bank of bandpass filters, to remove some tones. Both, finite impulse response (FIR) and infinite impulse response (IIR) filters will be designed and their resource utilisation will be compared.
- The filtered signal will be passed through FFT block again and a new frequency spectrum will be computed.
On top of all above:
- No 3rdparty IP cores will be used. Everything, starting from multiplier block, will be developed from scratch.
- Each functional block will be covered with test benches (written using Cocotb). Plus, a function model written in Python, will be provided.
- Fixed point arithmetic will be used across the entire project.
- No GUI tools will be used. Vivado will be driven solely by Tcl scripts. The reason behind this decision is simple - the author of the project truly detest any GUI tools, especially Vivado in GUI mode!
- On a similar note, Vim will be used as the primary editor for this project. Again, this is for simplicity.
Literature
The following materials will be used throughout this project
More episodes
Also coming soon!
If you have any suggestions, comments, questions or whathaveyou, feel free to drop me a line at contact@pjtelecommunication.com.
Web design
The actual web design was shamelessly stolen from https://perfectmotherfuckingwebsite.com/. Just because I like it.
This page was licensed under MIT license.