Design of a circuit that is able to detect and correct errors in 8 bits of transmitted data.
-
Teague Sangster - Implemented the ECC Generator (Part 1):
- Designed the circuit for calculating the 5 parity bits using XOR gates.
- Created the device symbol for the ECC Generator and ensured it outputs a 13-bit data vector.
-
Sean Hedgecock - Implemented the 13-bit Data Transmission Bus (Part 2):
- Developed the circuit for simulating data transmission and introduced error inputs using XOR gates.
- Created the device symbol for the Data Bus and tested it with error simulation switches (E1-E13).
-
Noah Bakayou - Implemented the ECC Detector at Main Memory (Part 3):
- Designed the circuit for detecting and correcting single-bit errors using syndrome calculation.
- Created the device symbol for the ECC Detector and implemented error status logic for "0," "C," and "E" outputs.
The enclosed files in the submission package are as follows:
-
README.txt - This file, containing group member names, contributions, and file descriptions.
-
Library File (.clf) - Contains all the device symbols for the ECC Generator, Data Transmission Bus, and ECC Detector circuits. It allows you to import the symbols into LogicWorks.
-
ECC3.cct - The circuit file for Part 1:
-
13-bit Data Transmission.cct - The circuit file for Part 2:
-
Part 3.cct - The circuit file for Part 3:
-
Main.cct - The integrated circuit file:
- Load the Main.cct file in LogicWorks.
- Input two hexadecimal numbers as the 8-bit data input in the ECC Generator.
- Use the switches (E1-E13) in the Data Transmission Bus to simulate errors during transmission.
- Observe the final output on the hexadecimal displays:
- The first two displays show the 8-bit data output.
- The third display shows the error status (0, C, or E).
- Test the circuit with different input data and error conditions to verify functionality.
- No error: Set all error switches (E1-E13) to 0. The output data should match the input data, and the error status should display "0."
- Single-bit error: Set one error switch (e.g., E3) to 1. The output data should be corrected, and the error status should display "C."
- Double-bit error: Set two error switches (e.g., E2 and E5) to 1. The output data will not be corrected, and the error status should display "E."
Our original plan for this project was to divide the work into three distinct parts and combine them in the Main.cct file for final testing. However, this approach did not go as expected. Al[...]
End of README