The PC16550D is an improved version of he original 16450 USRT functionally identical to 16450 on powerup (Character Mode). The PC16550D can be put into an alternative mode, (FIFO mode) to relieve the CPU of excessive software overhead.
The PC16550D is an improved version of he original 16450 USRT functionally identical to 16450 on powerup (Character Mode). The PC16550D can be put into an alternative mode, (FIFO mode) to relieve the CPU of excessive software overhead.
Open source operating system
Multiple data Compression and Decompression Done…..for all code lengths.
Implemented
#Blocking IO with readwrite semaphore
#Blocking IO with /proc to read bytes written after each 8 byte is written in scull
I’ve completed compression and decompression of all bits.
master array created Successfully……
when i connect the LAN cable to my Laptop it doesnt show the connect. I am facing a lot of problems without internet
i have completed multiple data compression and decompression….
i have completed multiple data compression and decompression….
The following code (a part of mdc project for creating master array) shows run time error for code length of more than 4 bits i.e realloc is working fine for 16 times but not more than 16 times.
char ch, *ma;
ch = fgetc(fp_test);
*ma = ch;
for(k = 1; (ch = fgetc(fp_test)) != EOF;)
{
for(j = 0; j < k; j++)
{
if (ch == ma[j])
break;
}
if (j == k)
{
t = realloc(ma, sizeof(char));
ma = t;
t = NULL;
*(ma + k) = ch;
k++;
}
}
i have completed 3bit and 4bit multiple data compression and decompression ….
when we reallocate memory to pointer then it will not receive the address of other position it will allocate space next to the previous address…..if there is data at next position then if we write it will overwrite previous data..
–Implemented:
–left with
I have made a formula/algorithm for compression and decompression. The plus point of this formula is that it does not require the 7 different cases for compression or decompression at different bits.