diff options
author | Daniel Friesel <derf@finalrewind.org> | 2021-10-31 17:18:53 +0100 |
---|---|---|
committer | Daniel Friesel <derf@finalrewind.org> | 2021-10-31 17:18:53 +0100 |
commit | c89b2ffa89a4a22c9cddf5d38bc7ecf300197513 (patch) | |
tree | ee183674cde8175af7df350b554cb2e191440149 | |
parent | 4bbf07511979f3f918e316e80ba36ebac7f2bf9d (diff) |
I think our frame number is 0x05
-rw-r--r-- | src/driver/pervasive_aurora_mb.cc | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/driver/pervasive_aurora_mb.cc b/src/driver/pervasive_aurora_mb.cc index 0e14437..4de8482 100644 --- a/src/driver/pervasive_aurora_mb.cc +++ b/src/driver/pervasive_aurora_mb.cc @@ -75,7 +75,7 @@ void PervasiveAuroraMb::initialize(signed char temperature, bool flashless) // VCom LUT spiWrite(0x20, (const unsigned char[]){ - 0x00, 0x06, 0x06, 0x06, 0x06, 0x01, + 0x00, 0x05, 0x05, 0x05, 0x05, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, @@ -87,7 +87,7 @@ void PervasiveAuroraMb::initialize(signed char temperature, bool flashless) // W2B LUT spiWrite(0x23, (const unsigned char[]){ - 0xaa, 0x06, 0x06, 0x06, 0x06, 0x01, + 0xaa, 0x05, 0x05, 0x05, 0x05, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, @@ -98,7 +98,7 @@ void PervasiveAuroraMb::initialize(signed char temperature, bool flashless) // B2W LUT spiWrite(0x22, (const unsigned char[]){ - 0x55, 0x06, 0x06, 0x06, 0x06, 0x01, + 0x55, 0x05, 0x05, 0x05, 0x05, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, @@ -109,7 +109,7 @@ void PervasiveAuroraMb::initialize(signed char temperature, bool flashless) // W2W LUT spiWrite(0x21, (const unsigned char[]){ - 0x00, 0x06, 0x06, 0x06, 0x06, 0x01, + 0x00, 0x05, 0x05, 0x05, 0x05, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, @@ -120,7 +120,7 @@ void PervasiveAuroraMb::initialize(signed char temperature, bool flashless) // B2B LUT spiWrite(0x24, (const unsigned char[]){ - 0xff, 0x06, 0x06, 0x06, 0x06, 0x01, + 0xff, 0x05, 0x05, 0x05, 0x05, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, |