PokittoLib is the library needed for programming the Pokitto DIY game console (www.pokitto.com)

Committer:
spinal
Date:
Sun Nov 18 15:47:54 2018 +0000
Revision:
64:6e6c6c2b664e
Parent:
31:f4b9b85c7b62
added fix for directrectangle()

Who changed what in which revision?

UserRevisionLine numberNew contents of line
Pokitto 31:f4b9b85c7b62 1 /**************************************************************************/
Pokitto 31:f4b9b85c7b62 2 /*!
Pokitto 31:f4b9b85c7b62 3 @file Macros_LCD.h
Pokitto 31:f4b9b85c7b62 4 @author Jonne Valola
Pokitto 31:f4b9b85c7b62 5
Pokitto 31:f4b9b85c7b62 6 @section LICENSE
Pokitto 31:f4b9b85c7b62 7
Pokitto 31:f4b9b85c7b62 8 Software License Agreement (BSD License)
Pokitto 31:f4b9b85c7b62 9
Pokitto 31:f4b9b85c7b62 10 Copyright (c) 2015, Jonne Valola
Pokitto 31:f4b9b85c7b62 11 All rights reserved.
Pokitto 31:f4b9b85c7b62 12
Pokitto 31:f4b9b85c7b62 13 Redistribution and use in source and binary forms, with or without
Pokitto 31:f4b9b85c7b62 14 modification, are permitted provided that the following conditions are met:
Pokitto 31:f4b9b85c7b62 15 1. Redistributions of source code must retain the above copyright
Pokitto 31:f4b9b85c7b62 16 notice, this list of conditions and the following disclaimer.
Pokitto 31:f4b9b85c7b62 17 2. Redistributions in binary form must reproduce the above copyright
Pokitto 31:f4b9b85c7b62 18 notice, this list of conditions and the following disclaimer in the
Pokitto 31:f4b9b85c7b62 19 documentation and/or other materials provided with the distribution.
Pokitto 31:f4b9b85c7b62 20 3. Neither the name of the copyright holders nor the
Pokitto 31:f4b9b85c7b62 21 names of its contributors may be used to endorse or promote products
Pokitto 31:f4b9b85c7b62 22 derived from this software without specific prior written permission.
Pokitto 31:f4b9b85c7b62 23
Pokitto 31:f4b9b85c7b62 24 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS ''AS IS'' AND ANY
Pokitto 31:f4b9b85c7b62 25 EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
Pokitto 31:f4b9b85c7b62 26 WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
Pokitto 31:f4b9b85c7b62 27 DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE FOR ANY
Pokitto 31:f4b9b85c7b62 28 DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
Pokitto 31:f4b9b85c7b62 29 (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
Pokitto 31:f4b9b85c7b62 30 LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
Pokitto 31:f4b9b85c7b62 31 ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
Pokitto 31:f4b9b85c7b62 32 (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
Pokitto 31:f4b9b85c7b62 33 SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Pokitto 31:f4b9b85c7b62 34 */
Pokitto 31:f4b9b85c7b62 35 /**************************************************************************/
Pokitto 31:f4b9b85c7b62 36
Pokitto 31:f4b9b85c7b62 37 #ifndef LCDMACROS_H
Pokitto 31:f4b9b85c7b62 38 #define LCDMACROS_H
Pokitto 31:f4b9b85c7b62 39
Pokitto 31:f4b9b85c7b62 40 /**************************************************************************/
Pokitto 31:f4b9b85c7b62 41 /** PINS AND PORTS **/
Pokitto 31:f4b9b85c7b62 42 /**************************************************************************/
Pokitto 31:f4b9b85c7b62 43
Pokitto 31:f4b9b85c7b62 44 #if POK_BOARDREV == 1
Pokitto 31:f4b9b85c7b62 45 /** 2-layer board version 1.3 **/
Pokitto 31:f4b9b85c7b62 46 #define LCD_CD_PORT 0
Pokitto 31:f4b9b85c7b62 47 #define LCD_CD_PIN 2
Pokitto 31:f4b9b85c7b62 48 #define LCD_WR_PORT 1
Pokitto 31:f4b9b85c7b62 49 #define LCD_WR_PIN 23
Pokitto 31:f4b9b85c7b62 50 #define LCD_RD_PORT 1
Pokitto 31:f4b9b85c7b62 51 #define LCD_RD_PIN 24
Pokitto 31:f4b9b85c7b62 52 #define LCD_RES_PORT 1
Pokitto 31:f4b9b85c7b62 53 #define LCD_RES_PIN 28
Pokitto 31:f4b9b85c7b62 54 #else
Pokitto 31:f4b9b85c7b62 55 /** 4-layer board version 2.1 **/
Pokitto 31:f4b9b85c7b62 56 #define LCD_CD_PORT 0
Pokitto 31:f4b9b85c7b62 57 #define LCD_CD_PIN 2
Pokitto 31:f4b9b85c7b62 58 #define LCD_WR_PORT 1
Pokitto 31:f4b9b85c7b62 59 #define LCD_WR_PIN 12
Pokitto 31:f4b9b85c7b62 60 #define LCD_RD_PORT 1
Pokitto 31:f4b9b85c7b62 61 #define LCD_RD_PIN 24
Pokitto 31:f4b9b85c7b62 62 #define LCD_RES_PORT 1
Pokitto 31:f4b9b85c7b62 63 #define LCD_RES_PIN 0
Pokitto 31:f4b9b85c7b62 64 #endif
Pokitto 31:f4b9b85c7b62 65
Pokitto 31:f4b9b85c7b62 66 /**************************************************************************/
Pokitto 31:f4b9b85c7b62 67 /** LCD CONTROL MACROS **/
Pokitto 31:f4b9b85c7b62 68 /**************************************************************************/
Pokitto 31:f4b9b85c7b62 69
Pokitto 31:f4b9b85c7b62 70 #define CLR_RESET LPC_GPIO_PORT->CLR[LCD_RES_PORT] = 1 << LCD_RES_PIN; //RST = (0); // Clear pin
Pokitto 31:f4b9b85c7b62 71 #define SET_RESET LPC_GPIO_PORT->SET[LCD_RES_PORT] = 1 << LCD_RES_PIN; // RST = (1); // Set pin
Pokitto 31:f4b9b85c7b62 72
Pokitto 31:f4b9b85c7b62 73 #define CLR_CD LPC_GPIO_PORT->CLR[LCD_CD_PORT] = 1 << LCD_CD_PIN; // RS = (0); // Clear pin
Pokitto 31:f4b9b85c7b62 74 #define SET_CD LPC_GPIO_PORT->SET[LCD_CD_PORT] = 1 << LCD_CD_PIN; // RS = (1); // Set pin
Pokitto 31:f4b9b85c7b62 75
Pokitto 31:f4b9b85c7b62 76 #define CLR_WR { LPC_GPIO_PORT->CLR[LCD_WR_PORT] = 1 << LCD_WR_PIN; __asm("nop");}//WR = (0); // Clear pin
Pokitto 31:f4b9b85c7b62 77 #define SET_WR LPC_GPIO_PORT->SET[LCD_WR_PORT] = 1 << LCD_WR_PIN; //WR = (1); // Set pin
Pokitto 31:f4b9b85c7b62 78
Pokitto 31:f4b9b85c7b62 79 #define CLR_RD LPC_GPIO_PORT->CLR[LCD_RD_PORT] = 1 << LCD_RD_PIN; //RD = (0); // Clear pin
Pokitto 31:f4b9b85c7b62 80 #define SET_RD LPC_GPIO_PORT->SET[LCD_RD_PORT] = 1 << LCD_RD_PIN; //RD = (1); // Set pin
Pokitto 31:f4b9b85c7b62 81
Pokitto 31:f4b9b85c7b62 82 #define SET_CS //CS tied to ground
Pokitto 31:f4b9b85c7b62 83 #define CLR_CS
Pokitto 31:f4b9b85c7b62 84
Pokitto 31:f4b9b85c7b62 85 #define CLR_CS_CD_SET_RD_WR {CLR_CD; SET_RD; SET_WR;}
Pokitto 31:f4b9b85c7b62 86 #define CLR_CS_SET_CD_RD_WR {SET_CD; SET_RD; SET_WR;}
Pokitto 31:f4b9b85c7b62 87 #define SET_CD_RD_WR {SET_CD; SET_RD; SET_WR;}
Pokitto 31:f4b9b85c7b62 88 #define SET_WR_CS SET_WR;
Pokitto 31:f4b9b85c7b62 89
Pokitto 31:f4b9b85c7b62 90 #define SET_MASK_P2 LPC_GPIO_PORT->MASK[2] = ~(0x7FFF8); //mask P2_3 ...P2_18
Pokitto 31:f4b9b85c7b62 91 #define CLR_MASK_P2 LPC_GPIO_PORT->MASK[2] = 0; // all on
Pokitto 31:f4b9b85c7b62 92
Pokitto 31:f4b9b85c7b62 93 /**************************************************************************/
Pokitto 31:f4b9b85c7b62 94 /** OTHER MACROS **/
Pokitto 31:f4b9b85c7b62 95 /**************************************************************************/
Pokitto 31:f4b9b85c7b62 96
Pokitto 31:f4b9b85c7b62 97 #define write_command w_cmd_16
Pokitto 31:f4b9b85c7b62 98 #define write_data w_data_16
Pokitto 31:f4b9b85c7b62 99
Pokitto 31:f4b9b85c7b62 100 #define AB_JUMP 1024 // jump one 1-bit Arduboy screen forward to get next color bit
Pokitto 31:f4b9b85c7b62 101 #define GB_JUMP 504 // jump one 1-bit Gamebuino screen forward to get next color bit
Pokitto 31:f4b9b85c7b62 102
Pokitto 31:f4b9b85c7b62 103 #endif // LCDMACROS_H
Pokitto 31:f4b9b85c7b62 104
Pokitto 31:f4b9b85c7b62 105