You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
45 lines
1.5 KiB
45 lines
1.5 KiB
// CTE TFT LCD/SD Shield for Arduino Due |
|
// ------------------------------------- |
|
// Uncomment the following line if you are using this shield |
|
//#define CTE_DUE_SHIELD 1 |
|
// |
|
// For this shield: RS=25, WR=26, CS=27, RST=28 |
|
//******************************************************************** |
|
|
|
// ElecHouse TFT LCD/SD Shield for Arduino Due |
|
// ------------------------------------- |
|
// Uncomment the following line if you are using this shield |
|
//#define EHOUSE_DUE_SHIELD 1 |
|
// |
|
// For this shield: RS=22, WR=23, CS=31, RST=33 |
|
//******************************************************************** |
|
|
|
// *** Hardwarespecific defines *** |
|
#if defined(ENERGIA) |
|
#define cbi(reg, bitmask) HWREG((uint32_t)reg + 0x3FC) &= ~bitmask |
|
#define sbi(reg, bitmask) HWREG((uint32_t)reg + 0x3FC) |= bitmask |
|
#else |
|
#define cbi(reg, bitmask) *reg &= ~bitmask |
|
#define sbi(reg, bitmask) *reg |= bitmask |
|
#endif |
|
#define pulse_high(reg, bitmask) sbi(reg, bitmask); cbi(reg, bitmask); |
|
#define pulse_low(reg, bitmask) cbi(reg, bitmask); sbi(reg, bitmask); |
|
|
|
#define cport(port, data) port &= data |
|
#define sport(port, data) port |= data |
|
|
|
#define swap(type, i, j) {type t = i; i = j; j = t;} |
|
|
|
#define fontbyte(x) cfont.font[x] |
|
|
|
#define pgm_read_word(data) *data |
|
#define pgm_read_byte(data) *data |
|
#define bitmapdatatype unsigned short* |
|
|
|
#if defined(TEENSYDUINO) && TEENSYDUINO >= 117 |
|
#define regtype volatile uint8_t |
|
#define regsize uint8_t |
|
#else |
|
#define regtype volatile uint32_t |
|
#define regsize uint32_t |
|
#endif
|
|
|