/* Part of RA8875 library from https://github.com/sumotoy/RA8875 License:GNU General Public License v3.0 RA8875 fast SPI library for RAiO SPI RA8875 drived TFT Copyright (C) 2014 egidio massimo costa sumotoy (a t) gmail.com This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see . */ #ifndef _RA8875USERSETTINGS_H_ #define _RA8875USERSETTINGS_H_ /* ---------------------------- USER SETTINGS --------------------------------------*/ /* [RENDER TEXT OPTIMIZATIONS] +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ From 0.70b11 the Font Rendering Engine has some optimizations for render font faster but this require much more code. Not all users need this so you can select if include Render Text Optimizations or not by comment the following line. */ #define _RA8875_TXTRNDOPTIMIZER // [default uncommented] /* [VISUALIZE RENDER TEXT OPTIMIZATIONS - >>> ONLY FOR DEBUG <<<] +++++++++++++++++++++++++++++++++++++++ The Text Render optimizations introduced in b11 it's the result of testing several algorithms so it's in continue evolution. RA8875_VISPIXDEBUG force the rendering engine to show how the font it's rendered (Only for debug!!!). RA8875_TXTBENCH enable the font rendering engine to measure the time (Only for debug!!!), this option works ONLY when RA8875_VISPIXDEBUG it's uncommented or values are falsed*/ //#define RA8875_VISPIXDEBUG // [default commented] //#define RA8875_TXTBENCH // [default commented] /* [USE_RA8875_SEPARATE_TEXT_COLOR] +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ RA8875 chip set color globally, this mean that if you set text color white and after you create a red circle, every text after that will result red text. Enabling this feature your text will always maintain the choosed color. */ #define USE_RA8875_SEPARATE_TEXT_COLOR // [default uncommented] /* [RENDERED FONTS FOLLOWS INTERNAL FONTS CURSORS] +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ The library internal tracking the x,y position of the text cursors but not the rendered fonts, by enabling this option you will force library to inform RA8875 to keep track of the x,y text cursor. This option will slow down a bit the text rendering (just a bit) */ #define FORCE_RA8875_TXTREND_FOLLOW_CURS // [default uncommented] /* [DISABLE ALL TOUCH SCREEN LIBRARY CAPABILITIES AND RELATIVE CODE] +++++++++++++++++++++++++++++++++++++++ If your project don't need Touch Screen or you choosed to use an external library you can comment out the following line and ALL resources related will not loaded at all. If this is uncommented the CHOOSE YOUR TOUCH SCREEN TYPE has no effect. */ //#define _AVOID_TOUCHSCREEN // [default commented] /* [CHOOSE YOUR TOUCH SCREEN TYPE] +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ This library supports the RA8875 internal resistive touch screen driver or a FT5206 based capacitive touch screen driver. Below, you have to choose one of them. The Resistive Touch screen it's drived directly by RA8875. The Capacitive Touch Screen use a I2C chip called FT5206 (hardwired to address 0x38). Please choose at list one (NOT both), if you comment both it's the same as _AVOID_TOUCHSCREEN*/ //#define USE_RA8875_TOUCH//resistive touch screen //#define USE_FT5206_TOUCH//capacitive touch screen /* [ONLY ADAFRUIT USERS - Weird rotation issue on some 800x480 adafruit display] +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ An user had a strange rotation problem with an Adafruit 800x480 display. If this happen to you (only if this happen!) please try to uncomment the following line. Default:commented */ //#define USE_ADAFRUIT_PHASE_FIXUP /* [USE ALTERNATIVE I2C/WIRE ON ARDUINO DUE] +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Arduino DUE has 2 I2C interfaces, default use Wire but you can force library to use Wire1. Just uncomment the line below, this option works only for Arduino DUE and has NO effects on other CPU! */ //#define USE_DUE_WIRE1_INTERFACE//force use Wire1 (only for DUE, no effects on other CPU) /* [Default Interrupt Number for Touchscreen] [RA8875 & FT5206] ++++++++++++++++++++++++++++++++++ Some microcontroller like Teensy 3,3.1 and LC automatically assign ISR number (since they can virtually assign ISR to any pin) but some old one like Arduino UNO have ISR hardcoded */ #if !defined(_AVOID_TOUCHSCREEN) #define __RA8875ISRINT 0// // [default 0, pin 2 on Arduino UNO] #endif /* [INTERNAL KEY MATRIX] +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ RA8875 has a 5x6 Key Matrix controller onboard, if you are not plan to use it better leave commented the following define since it will share some registers with several functions, otherwise de-comment it! */ //#define USE_RA8875_KEYMATRIX // [default commented] /* [DEFAULT CURSOR BLINK RATE] +++++++++++++++++++++++++++++++++++++++++++++++++++++++ Nothing special here, you can set the default blink rate */ #define DEFAULTCURSORBLINKRATE 10 // [default 10] /* [DEFAULT INTERNAL FONT ENCODING] ++++++++++++++++++++++++++++++++++++++++++++++++++ RA8875 has 4 different font set, same shape but suitable for most languages please look at RA8875 datasheet and choose the correct one for your language! ISO_IEC_8859_1 (default), ISO_IEC_8859_2, ISO_IEC_8859_3, ISO_IEC_8859_4 The default one it's the most common one and should work in most situations */ #define DEFAULTINTENCODING ISO_IEC_8859_1 // [default ISO_IEC_8859_1] /* [STARTUP SETTINGS] +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */ #define _DFT_RA8875_TEXTWRAP true // [default true] /* [DEFAULT EXTERNAL FONT-ROM TYPE] ++++++++++++++++++++++++++++++++++++++++++++ If your card has a FONT-ROM installed, here you have to write wich one! I support both Genicomp and Eastrising since they are the same chip named differently! Possible solutions: GT21L16T1W (Genicomp) GT21H16T1W (Genicomp) GT23L16U2W (Genicomp) GT30H24T3Y (Genicomp) GT23L24T3Y (Genicomp) GT23L24M1Z (Genicomp) GT23L32S4W (Genicomp) GT30H32S4W (Genicomp) GT30L32S4W (Genicomp) ER3303_1 (Eastrising) *tested ER3304_1 (Eastrising) *tested */ #define _DFT_RA8875_EXTFONTROMTYPE GT21L16T1W // [default GT21L16T1W] /* [DEFAULT EXTERNAL FONT-ROM ENCODING] ++++++++++++++++++++++++++++++++++++++++++++ Having an external FONT-ROM mean choose the desidered encoding (supported by ROM-CHIP!) Possible solutions: GB2312, GB12345, BIG5, UNICODE, ASCII, UNIJIS, JIS0208, LATIN/GREEK/ARABIC */ #define _DFT_RA8875_EXTFONTROMCODING GB2312 // [default GB2312] /* [Default Screen Rotation] ++++++++++++++++++++++++++++++++++++++++++++ */ #define _RA8875_DEFAULTSCRROT 0 // [default 0] /* [Default Backlight Color] ++++++++++++++++++++++++++++++++++++++++++++ */ #define _RA8875_DEFAULTBACKLIGHT RA8875_BLACK // [default RA8875_BLACK] /* [Default foreground Text Color] ++++++++++++++++++++++++++++++++++++++++++++ */ #define _RA8875_DEFAULTTXTFRGRND RA8875_WHITE // [default RA8875_WHITE] /* [Default background Text Color] ++++++++++++++++++++++++++++++++++++++++++++ */ #define _RA8875_DEFAULTTXTBKGRND RA8875_BLACK // [default RA8875_BLACK] /* [ARDUINO DUE SPI MODE] ++++++++++++++++++++++++++++++++++++++++++++ This library support DUE SPI Extended mode, by decommenting the line below you have to choose from pin 4,10,52 for CS pin in DUE or you will get an error! */ //#define SPI_DUE_MODE_EXTENDED /*---------------------------------------------------------------------------------- SPI SPEED ----------------------------------------------------------------------------------*/ /* From here it's better don't touch anithing, everithing has been tuned for maximum speed. Only DUE or any AVR 8bit (like uno) can have some troubles with particular old libraries because the use of fast port handle, in that case.... On Arduino DUE and other 8 bit Arduino MCU you can disable the fast CS port by commenting #define _FASTSSPORT, this will force to use the classic digitalWrite. */ /* Accordly RA8875 datasheet the READ cycles and WRITE cycles have different speed: System clock/3(only write cycle), System clock/6(with read cycle) MAXSPISPEED parameters it's also related to MCU features so it probably need to be tuned. Not all MCU are capable to work at those speeds. Following parameters worked with both board I have. After som mail exchange with RAiO I solved the dilemma behind SPI speed limit: The RA8875 has limitation of 12Mhz SPI but this has been set because not all internal macros can run over that speed, the library automatically deal with this so I was able to go over 20Mhz! At that speed you need to short cables as much you can, provide clean supply and good decoupling! DO NOT Exceed 23Mhz for RA8875! It will result in garbage on screen or run very slow. */ #if defined(SPI_HAS_TRANSACTION) //SPI transaction enabled library---------------------- const static uint32_t MAXSPIREADSPEED = 6000000UL; //Read don't go higher than 22000000!; #if defined(__MK20DX128__) || defined(__MK20DX256__) || defined(__MK64FX512__) || defined(__MK66FX1M0__) || defined(__IMXRT1062__) const static uint32_t MAXSPISPEED = 18000000UL; //don't go higher than 22000000!; #elif defined(__MKL26Z64__) //[Teensy LC] (12 or 24 Mhz max) const static uint32_t MAXSPISPEED = 12000000UL; //default SPI main speed TeensyLC const static uint32_t MAXSPISPEED2 = 22000000UL; //don't go higher than 22000000!; #elif defined(___DUESTUFF) //[DUE] const static uint32_t MAXSPISPEED = 15000000UL; // try experiment higher values but NOT over 22000000! //#define _FASTSSPORT #elif defined(ESP8266) const static uint32_t MAXSPISPEED = 8000000UL; //don't go higher than 22000000!; //#define _FASTSSPORT #elif defined(SPARK) const static uint32_t MAXSPISPEED = 8000000UL; //don't go higher than 22000000!; // TODO: add more CPU here! #else //rest of the world (UNO, etc) const static uint32_t MAXSPISPEED = 10000000UL; //be careful, higher values result in extremely slow rendering! #define _FASTSSPORT #endif #else // legacy SPI library------------------------------------------------------------- #if defined(ENERGIA) // LaunchPad, FraunchPad and StellarPad specific #if defined(__TM4C129XNCZAD__) || defined(__TM4C1294NCPDT__)//tiva??? #define SPI_SPEED_WRITE SPI_CLOCK_DIV4 #define SPI_SPEED_READ SPI_CLOCK_DIV8 #define SPI_SPEED_SAFE SPI_CLOCK_DIV8 #elif defined(__LM4F120H5QR__) || defined(__TM4C123GH6PM__)//stellaris first version #define SPI_SPEED_WRITE SPI_CLOCK_DIV4 #define SPI_SPEED_READ SPI_CLOCK_DIV8 #define SPI_SPEED_SAFE SPI_CLOCK_DIV8 #elif defined(__MSP430MCU__)//MSP430??? #define SPI_SPEED_WRITE SPI_CLOCK_DIV4 #define SPI_SPEED_READ SPI_CLOCK_DIV4 #define SPI_SPEED_SAFE SPI_CLOCK_DIV8 #elif defined(TMS320F28069)//C2000??? #define SPI_SPEED_WRITE SPI_CLOCK_DIV4 #define SPI_SPEED_READ SPI_CLOCK_DIV4 #define SPI_SPEED_SAFE SPI_CLOCK_DIV8 #elif defined(__CC3200R1M1RGC__)//CC3200??? #define SPI_SPEED_WRITE SPI_CLOCK_DIV4 #define SPI_SPEED_READ SPI_CLOCK_DIV4 #define SPI_SPEED_SAFE SPI_CLOCK_DIV8 #endif #else // DUE #if defined(___DUESTUFF) #define SPI_SPEED_WRITE SPI_CLOCK_DIV4 //84 divided by 4 = 21Mhz #define SPI_SPEED_READ SPI_CLOCK_DIV8 #define SPI_SPEED_SAFE SPI_CLOCK_DIV6 //10.5Mhz //#define _FASTSSPORT #elif defined(ESP8266)//legacy #define SPI_SPEED_WRITE SPI_CLOCK_DIV4 //8mhz #define SPI_SPEED_READ SPI_CLOCK_DIV8 #define SPI_SPEED_SAFE SPI_CLOCK_DIV4 //8 #elif defined(SPARK)//Really early development (72MHz ) #define SPI_SPEED_WRITE SPI_CLOCK_DIV8 //9mhz #define SPI_SPEED_READ SPI_CLOCK_DIV4 //18Mhz #define SPI_SPEED_SAFE SPI_CLOCK_DIV8 //9 #else // TODO: Add more CPU here! //rest of the world included UNO, etc. #define SPI_SPEED_WRITE SPI_CLOCK_DIV2 //UNO = 4Mhz #define SPI_SPEED_READ SPI_CLOCK_DIV4 #define SPI_SPEED_SAFE SPI_CLOCK_DIV2 #define _FASTSSPORT #endif #endif #endif //Touch Screen stuff (do not touch) #if defined(_AVOID_TOUCHSCREEN) #undef USE_RA8875_TOUCH #undef USE_FT5206_TOUCH #else #if defined(USE_RA8875_TOUCH) && defined(USE_FT5206_TOUCH) #error you have to choose between USE_RA8875_TOUCH & USE_FT5206_TOUCH! #elif !defined(USE_RA8875_TOUCH) && !defined(USE_FT5206_TOUCH) #define _AVOID_TOUCHSCREEN #elif defined(USE_FT5206_TOUCH) && !defined(USE_RA8875_TOUCH) //#include "Wire.h"//include the support for FT5206 static const uint8_t _FT5206REgisters[9] = { 0x16,0x3C,0xE9,0x01,0x01,0xA0,0x0A,0x06,0x28 }; #elif !defined(USE_FT5206_TOUCH) && defined(USE_RA8875_TOUCH) #include "_settings/RA8875Calibration.h" #endif #endif //was here // Different displays may need/want different _waitPoll timeouts. Example on 800x480 display found drawing large circle took about 57ms which was a lot > 10 default fefore... #define _RA8875_WAITPOLL_TIMEOUT_DCR_LINESQUTRI_STATUS 20 // Have seen 12 or so #define _RA8875_WAITPOLL_TIMEOUT_DCR_CIRCLE_STATUS 75 #define _RA8875_WAITPOLL_TIMEOUT_ELLIPSE_STATUS 75 #endif