Help for this page

Select Code to Download


  1. or download this
    printf "The CRC Bytes (binary)  : %04b %04b %04b %04b\n", 
                            $CRC_byte1>>4, $CRC_byte1 & 0xF, 
                            $CRC_byte2>>4, $CRC_byte2 & 0xF;
    
  2. or download this
    void dump_16bits(unsigned int any_16bits)
    {
    ...
            any_16bits <<=1;  #a keft shift 1 bit
        }
    }