config MK3 ( Bruns Kris)

This commit is contained in:
Luc Vandenbroucke 2022-09-12 15:14:57 +02:00
parent 5a453f748d
commit 9e090d9f73
3 changed files with 23 additions and 21 deletions

View file

@ -1255,16 +1255,16 @@ int Epd3Base::Epd3U::WriteConfig(void)
//Unmanaged%20HtmlFiles/_display_ids.html //Unmanaged%20HtmlFiles/_display_ids.html
numItems = 9; numItems = 9;
enables = new DisplayAttributeMap_t[9]{ enables = new DisplayAttributeMap_t[9]{
{ 0,0x8FFF,0xFFFF }, { 0,0x97FF,0xFFFF },
{ 1,0x8FFF,0xFFE1 }, { 1,0x97FF,0xFFE1 },
{ 2,0x8FFF,0xFE3F }, { 2,0x97FF,0xFE07 },
{ 3,0x8FFF,0xFE3F }, { 3,0x97FF,0xFE07 },
{ 4,0x8FFF,0xFE01 }, { 4,0x97FF,0xFE01 },
{ 5,0x8FFF,0xFF09 }, { 5,0x97FF,0xFF0B },
{ 6,0x8FFF,0xFFFD }, { 6,0x97FF,0xFFF9 },
{ 7,0x8FFF,0xFFC1 }, { 7,0x97FF,0xFFD3 },
{ 8,0x8FFF,0xFFFF }, { 8,0x97FF,0xFFFF }
}; };
// 0x1 Operation Menu Back /0x2 On / Off 0x4 Clear Dose 0x8 Toggle Telemtry 0x10 Responder Trigger // 0x1 Operation Menu Back /0x2 On / Off 0x4 Clear Dose 0x8 Toggle Telemtry 0x10 Responder Trigger
// 1 0 0 0 0 // 1 0 0 0 0

View file

@ -1133,15 +1133,17 @@ WORD MK3::Epd2U::SetSettings()
numItems = 9; numItems = 9;
enables = new DisplayAttributeMap_t[9]{ enables = new DisplayAttributeMap_t[9]{
{ 0,0x8FFF,0xFFFF },
{ 1,0x8FFF,0xFFE1 }, { 0,0x97FF,0xFFFF },
{ 2,0x8FFF,0xFE3F }, { 1,0x97FF,0xFFE1 },
{ 3,0x8FFF,0xFE3F }, { 2,0x97FF,0xFE07 },
{ 4,0x8FFF,0xFE01 }, { 3,0x97FF,0xFE07 },
{ 5,0x8FFF,0xFF09 }, { 4,0x97FF,0xFE01 },
{ 6,0x8FFF,0xFFFD }, { 5,0x97FF,0xFF0B },
{ 7,0x8FFF,0xFFC1 }, { 6,0x97FF,0xFFF9 },
{ 8,0x8FFF,0xFFFF } { 7,0x97FF,0xFFD3 },
{ 8,0x97FF,0xFFFF }
}; };
ResetEvent(Ev1); c++; ResetEvent(Ev1); c++;
token = BeginWriteDisplayEnables_R3(epdComsHandle, enables, numItems, completion); token = BeginWriteDisplayEnables_R3(epdComsHandle, enables, numItems, completion);

View file

@ -51,5 +51,5 @@ using System.Windows;
// You can specify all the values or you can default the Build and Revision Numbers // You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below: // by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")] // [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("2.13.3.0")] [assembly: AssemblyVersion("2.13.4.0")]
[assembly: AssemblyFileVersion("2.13.3.0")] [assembly: AssemblyFileVersion("2.13.4.0")]