Hi Frank.
Several things.
1. uTouchDB.pas has a syntax error.
{$IFDEF CPU = XMEGA}
is not valid. The compiler tells you this.
The syntactically correct form would be {$IF CPU = XMEGA}. I only mention that for completeness. Since CPU is not defined that will not work either.
What is correct in this case would be:
{$IFDEF XMEGA}
2. This (and probably all) graphic modules are obsolete because they were written originally for a monochrome version of LCDGraphicLib which was later superceded by a colour version, I believe. There is another recent thread that discusses this in detail. This means that in these versions you will get the error telling you that gFillRect is not supported and to use RA8875 mode instead. I can't find the post, though unfortunately.
3. There is bug in the compiler where negative local (to a function) constant is defined. I will sort this in the next few days.
Several things.
1. uTouchDB.pas has a syntax error.
{$IFDEF CPU = XMEGA}
is not valid. The compiler tells you this.
The syntactically correct form would be {$IF CPU = XMEGA}. I only mention that for completeness. Since CPU is not defined that will not work either.
What is correct in this case would be:
{$IFDEF XMEGA}
2. This (and probably all) graphic modules are obsolete because they were written originally for a monochrome version of LCDGraphicLib which was later superceded by a colour version, I believe. There is another recent thread that discusses this in detail. This means that in these versions you will get the error telling you that gFillRect is not supported and to use RA8875 mode instead. I can't find the post, though unfortunately.
3. There is bug in the compiler where negative local (to a function) constant is defined. I will sort this in the next few days.
