Qyt0109 / Learn-programing-FPGA-with-VHDL

Learn programing FPGA with VHDL, builds basic modules and components. FPGA based UART Tx Rx

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Learn programing FPGA with VHDL

Learn programing FPGA with VHDL, builds basic modules and components. FPGA based UART Tx Rx

  1. Reading a switch input and driving an LED output
  2. Simple State Machine which reacts to user input and drives a number of LEDs
  3. Synchronising and de-bouncing a Switch Input.
  4. Generating a PWM output.
  5. Designing a Shift Register.
  6. 4 Digit 7-Segment display for counting the number of push button activations
  7. UART module & State machine for echoing back characters received from a PC over RS232

UART Module RLT Views

BaudClockGenerator:

The Baud Clock Generator generates the clock signal required for timing the serial communication. It ensures that data is sampled at the correct rate. It calculates the baud rate based on the system clock frequency and the desired baud rate.

Serialiser:

The Serialiser takes parallel data input and converts it into a serial data stream. It serializes the data for transmission over a single data line. It typically includes a shift register to shift out each bit of the parallel data sequentially.

ShiftRegister:

The Shift Register is used to hold the data temporarily during transmission or reception. For transmission, it shifts data out serially. For reception, it receives data serially and shifts it into the register.

Synchronizer:

The Synchronizer ensures proper synchronization of the received data with the system clock. It synchronizes the incoming serial data with the system clock to correctly sample the received bits.

Receiver's FSM:

The Receiver's FSM controls the behavior of the receiver. It manages the various states of the receiver during reception.

Receiver:

The Receiver module is responsible for receiving serial data from an external source. It typically includes logic for detecting the start bit, receiving the data bits, performing optional parity checks, and detecting the stop bit.

Transmitter:

The Transmitter module is responsible for transmitting serial data to an external device. It typically includes logic for sending data bits serially, optionally generating and sending parity bits, and adding stop bits at the end of each data frame.

TopModule:

The TopModule is the overarching module that combines and connects the various UART modules together to create a complete UART communication system.

AES Modules

Test KeyController:

This module generates all the round keys required and stores them as a LUT for each AES encryption, decryption round.

About

Learn programing FPGA with VHDL, builds basic modules and components. FPGA based UART Tx Rx


Languages

Language:VHDL 77.0%Language:HTML 22.4%Language:Mathematica 0.2%Language:Standard ML 0.2%Language:Scheme 0.1%