Skip to main content
FPGA signal processing block diagram with ADC input and DAC output

FPGA-Based Digital Signal Processing: Getting Started with Digilent Boards and Pmod ADCs

GSAS Engineering · · 6 min read

Digital signal processing on microcontrollers is limited by sequential execution, the processor handles one operation at a time, and the achievable sample rate depends on how fast the processor can execute the filter algorithm. FPGAs remove this bottleneck. Every multiply-accumulate operation in a FIR filter, every butterfly computation in an FFT, every comparison in a threshold detector can execute in parallel, in dedicated hardware, at the FPGA clock rate.

The result is signal processing throughput that scales with the available hardware resources rather than with processor clock speed.

For Indian engineers in Bengaluru, Pune, Chennai, and Hyderabad working on audio processing, sensor signal conditioning, communications, and instrumentation, FPGA-based DSP provides capabilities that microcontrollers and DSP processors cannot match in throughput and deterministic timing.

The Hardware Setup

A practical FPGA DSP development setup using Digilent components:

FPGA board: Digilent Arty A7 (35T or 100T). The Artix-7 FPGA provides DSP slices, dedicated hardware multiply-accumulate blocks, that implement DSP operations efficiently. The 35T has 90 DSP slices; the 100T has 240. Each DSP slice implements a 25x18-bit multiply followed by a 48-bit accumulate, running at the FPGA clock rate.

ADC input: Digilent PmodAD1 (12-bit, 1 MSPS, 2-channel) or PmodAD2 (12-bit, 1 MSPS, 4-channel) for signal acquisition. The Pmod interface connects directly to the Arty A7’s Pmod connectors, no additional wiring or interfacing needed.

DAC output: Digilent PmodDA2 (12-bit, 2-channel) for signal output. Completes the signal chain for real-time processing applications where the processed signal must be output as an analog waveform.

Alternative: Analog Discovery 3. For development and testing, the Analog Discovery 3 serves as both the signal source (waveform generator) and the measurement instrument (oscilloscope), generating test signals into the FPGA’s ADC input and capturing the processed output from the DAC.

FIR Filter Implementation

The finite impulse response (FIR) filter is the foundational DSP building block on FPGAs. A FIR filter computes the output as a weighted sum of the current and past N input samples:

y[n] = h[0]*x[n] + h[1]*x[n-1] + h[2]*x[n-2] + … + h[N-1]*x[n-N+1]

On a microcontroller, this is a loop that executes N multiply-accumulate operations sequentially. On an FPGA, the implementation options include:

Fully parallel. All N multiplications execute simultaneously in N DSP slices, and the products are summed through an adder tree. Latency: a few clock cycles. Throughput: one output sample per clock cycle. Resource cost: N DSP slices. Feasible for filters up to ~90 taps on the Arty A7 35T or ~240 taps on the 100T.

Fully serial. A single DSP slice performs all N multiplications sequentially, accumulating the running sum. Latency: N clock cycles. Throughput: one output sample per N clock cycles. Resource cost: 1 DSP slice. Feasible for any filter length, but the sample rate is limited by N/f_clk.

Semi-parallel. M DSP slices process M multiplications per clock cycle, requiring N/M clock cycles per output sample. This trades off throughput against resource usage, allowing the designer to tune the implementation for the available DSP slices and required sample rate.

The Arty A7’s 90 DSP slices (35T) can implement a 64-tap fully-parallel FIR filter while leaving DSP slices available for other processing. At 100 MHz clock rate, this delivers 100 MSPS throughput, far beyond the 1 MSPS ADC rate, providing headroom for more complex processing chains.

FFT Implementation

The Fast Fourier Transform is the second fundamental DSP operation. FPGA FFT implementations use the Cooley-Tukey butterfly architecture, with each butterfly stage executing in parallel across multiple processing elements.

Xilinx provides the LogiCORE FFT IP core, configurable for:

  • Transform length (64 to 65,536 points)
  • Fixed-point or block floating-point arithmetic
  • Pipelined, radix-2, or radix-4 architectures
  • Configurable throughput vs resource trade-off

On the Arty A7, a 1024-point FFT running at 100 MHz clock rate can compute a complete transform in microseconds, enabling real-time spectrum analysis at audio and ultrasonic sample rates.

Practical Applications in India

Audio processing. Digital audio effects, noise cancellation, and audio filtering for consumer electronics and professional audio applications. Indian audio and music technology startups use FPGA prototypes to develop and validate DSP algorithms before ASIC implementation.

Sensor signal conditioning. Industrial sensor signals (accelerometers, strain gauges, pressure sensors, temperature sensors) often require filtering, decimation, and feature extraction. FPGA-based conditioning provides deterministic processing with configurable filter characteristics.

Communications. Software-defined radio (SDR) front-end processing, downconversion, filtering, decimation, modulation/demodulation, on FPGAs. Indian defence and communications R&D organisations use FPGA platforms for SDR prototyping.

Power electronics. Real-time control loop processing for motor drives, power converters, and grid-tied inverters. The FPGA’s deterministic timing ensures control loop execution at the required rate without the jitter that RTOS-based microcontroller implementations can introduce.

Why Buy from GSAS

GSAS provides the Digilent FPGA boards (Arty A7, Basys 3, Eclypse Z7) and Pmod peripherals (ADCs, DACs, sensors, communication modules) that form a complete DSP development platform. Available with INR invoicing and local support across Bengaluru, Hyderabad, Chennai, Pune, Mumbai, Delhi NCR, and Visakhapatnam.

Explore Digilent Products → | Visit the GSAS Store →

Interested in Digilent tools?

Talk to our application engineers for personalized tool recommendations.

Stay in the Loop

Get monthly compliance updates, product insights, and engineering best practices delivered to your inbox.

Related Articles

FPGA in the loop verification workflow between Simulink and a Zynq-7000 development board
Technical Guides Digilent

ZedBoard FPGA-in-the-Loop: HDL Verifier vs HDL Coder

Teams asking for FPGA-in-the-Loop on a ZedBoard usually name HDL Coder and SoC Blockset. FIL is actually HDL Verifier. Here is the correct product split, the JTAG versus Ethernet decision, and the 2015-era advice that is still sending Indian teams down the wrong path.

5 Aug 2026 · 9 min read
FADOS MUX test station on an Indian EMS line generating a board test report, GSAS FADOS reporting workflow
FADOS CBT Electronic

FADOS Test Reports and GSAS Agent: Turning Board Test Results into an Auditable Record

A pass or fail on the FADOS screen is not a record. This guide covers what the FADOS test report contains, what GSAS Agent does with it, and how offline, Google Drive and LAN modes put a QR-linked report on the job card for repair shops and EMS lines in India.

4 Aug 2026 · 8 min read
Classification tree and combination table used to design embedded unit test cases in Razorcat's Classification Tree Editor for TESSY, available in India from GSAS Micro Systems
Compliance & Safety Razorcat Automotive & Mobility

Test Case Design with the Classification Tree Method: Deriving Unit Tests You Can Defend in an Audit

Ad-hoc test cases can be perfectly good tests and still fail an audit, because nothing on file records why that particular set was sufficient. The Classification Tree Method derives test cases from the input space instead: identify the test-relevant aspects as classifications, partition each into equivalence classes, then combine leaf classes in a combination table. Razorcat implements CTM in the Classification Tree Editor, available integrated into TESSY or standalone. GSAS Micro Systems is the authorized Razorcat engineering partner for India, the UAE and Sri Lanka.

1 Aug 2026 · 10 min read