Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 5967071
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 22, 20262026-05-22T19:53:26+00:00 2026-05-22T19:53:26+00:00

I know the whole intention of using CRC is to do error detection, but

  • 0

I know the whole intention of using CRC is to do error detection, but I heard someone state that it can be used to do basic error correction in addition to error detection. I was curious if this was the case, and if so, how powerful is it? I mean, we usually refer to CRC as capable of performing x-bit detection, but I’m curious if it is capable of performing x-bit correction. If so, how does this work? Thanks.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-22T19:53:27+00:00Added an answer on May 22, 2026 at 7:53 pm

    It is possible to do single-bit error correction with a CRC. Assume one has a CRC “register” and has functions to run the CRC algorithm forward and backward a bit at a time, ignoring incoming data

    int crc_forward(int old_value, int data_bit)
    {
      if (old_value & 0x8000)
        return ((old_value ^ 0x8000) SHL 1) ^ 0x1021 ^ data_bit;
      else
        return (old_value SHL 1) ^ data_bit;
    }
    
    int crc_reverse(int old_value)
    {
      if (old_value & 1)
        return (old_value SHR 1) ^ 0x8810;
      else
        return old_value SHR 1;
    }
    

    Suppose one has a packet which is computed so that initializing the crc to some value and running crc_forward for each bit (MSB first) should yield zero. If one gets a CRC value other than zero, one can run the algorithm in reverse (ignoring data bits) until the computed CRC value is 1. That’s the location of the incorrect bit.

    Note that this approach may be adequate for software error correction in things like NAND flash. To usefully employ it for hardware error correction, one would have to either be able to delay read operations until the ECC could be processed, or else one would need a table of ‘syndrome’ values and bit positions.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Now while I know that you can not perform inheritance like you would in
I know the following code could extract whole texts of the docx document, however,
I know how to add SL page as a whole to existing ASP.net application.
Just wanted to know if it is possible to disallow the whole site for
I converted my whole site to XML/XSL and I would like to know all
hi all i want to know that while specifying url in my iphone native
Does anybody know what tool used while podcasts were recorded here: http://www.asp.net/mvc/application-development/ For example
i want to know what are the vulnerabilities while using the GET and POST
By the moment, I know four kinds of doing transactions with hibernate: Using objects
In .NET is there a way to enable Assembly.Load tracing? I know while running

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.