我正在尝试用 C 语言编写程序以进行垂直冗余检查。代码如下:
#include<stdio.h>
#include<sys/types.h>
#include<fcntl.h>
#include<unistd.h>
int main()
{
int fd,i;
char *data = "01010101010111110101010101011111";
int count = 0,bit_count=0;
char *parity_bit_array = NULL;
char *data_to_send = NULL;
char *stream_name = "Named Stream";
do
{
if(*data == '1' && bit_count <= 8)
{
count++;
if(bit_count == 8)
{
if( count % 2 == 0)
{
*parity_bit_array = '1';
count = 0;
bit_count = 0;
}
else
{
*parity_bit_array = '0';
count = 0;
bit_count = 0;
}
}
}
bit_count++;
data++;
} while( !data);
do
{
if(bit_count <= 8)
{
*data_to_send++ = *parity_bit_array++;
}
*data_to_send++ = *data;
} while( !data );
printf("%s \n",data_to_send);
mkfifo(stream_name,0666);
fd = open(stream_name,O_WRONLY);
write(fd,data_to_send,sizeof(data_to_send));
close(fd);
unlink(stream_name);
return 0;
}
下面显示的文件是接收方要读取其数据的发送方文件。通过使用大小数组,它可以正常工作,但我喜欢将它与指针一起使用。 此代码中的主要变量:
- data : 要实施 VRC 的数据
- count : 为偶校验位计数 1
- bit_count : 计数 8 位
- parity_bit_array:为数据中存在的每个单个字节收集奇偶校验位
- data_to_send : data + parity_bit_array 的组合
例如: 数据: 01110000 parity_bit_array: 1 data_to_send: 01110000 1