fixed: bitx11 used the wrong bit order
This commit is contained in:
parent
f1da87ef6d
commit
700ec3abf2
1 changed files with 4 additions and 4 deletions
|
@ -212,7 +212,7 @@ void CBitX11::Process()
|
||||||
int quanterror;
|
int quanterror;
|
||||||
|
|
||||||
uint8_t* ledpos = ledline;
|
uint8_t* ledpos = ledline;
|
||||||
int ledcounter = 0;
|
int ledcounter = 3;
|
||||||
|
|
||||||
while (line != lineend)
|
while (line != lineend)
|
||||||
{
|
{
|
||||||
|
@ -228,10 +228,10 @@ void CBitX11::Process()
|
||||||
quantval = 0;
|
quantval = 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
ledcounter++;
|
ledcounter--;
|
||||||
if (ledcounter == 4)
|
if (ledcounter == -1)
|
||||||
{
|
{
|
||||||
ledcounter = 0;
|
ledcounter = 3;
|
||||||
ledpos++;
|
ledpos++;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue