CARME-M4 BSP  V1.5
ssd1963.h File Reference

Driver for the SSD1963 Graphic-Controller. More...

#include <stdint.h>
#include "ssd1963_lld.h"
#include "ssd1963_cmd.h"
+ Include dependency graph for ssd1963.h:
+ This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Functions

void SSD1963_Init (void)
 Init the SSD1963 LCD-Controller and clear the display. More...
 
void SSD1963_WritePixel (uint16_t x, uint16_t y, uint16_t color)
 Puts pixel. More...
 
uint16_t SSD1963_ReadPixel (uint16_t x, uint16_t y)
 Reads pixel. More...
 
void SSD1963_SetArea (uint16_t x1, uint16_t y1, uint16_t x2, uint16_t y2)
 defines start/end columns and start/end rows for memory access from host to SSD1963. More...
 
void SSD1963_FillArea (uint16_t x1, uint16_t y1, uint16_t x2, uint16_t y2, uint16_t color)
 Fill area of specified color. More...
 
void SSD1963_WriteArea (uint16_t x1, uint16_t y1, uint16_t x2, uint16_t y2, uint16_t *pData)
 Write a array of data to the display. More...
 
void SSD1963_SetTearingCfg (uint8_t state, uint8_t mode)
 This function enable/disable tearing effect. More...
 
void SSD1963_GetDeviceDescriptorBlock (uint16_t *ddb)
 Get SSD1963 Device Descriptor Block. More...
 
void SSD1963_LLD_Init (void)
 Initialize the communication interface to the SSD1963 LCD- Controller. More...
 
void SSD1963_WriteCommand (uint16_t cmd)
 
void SSD1963_WriteData (uint16_t data)
 
uint16_t SSD1963_ReadData (void)
 
static void SSD1963_EnterSleepMode (void)
 SSD1963 enters sleep mode.
Host must wait 5mS after sending before sending next command.
 
static void SSD1963_ExitSleepMode (void)
 SSD1963 exit sleep mode.
 
static void SSD1963_DisplayOff (void)
 SSD1963 changes the display state to OFF state.
 
static void SSD1963_DisplayOn (void)
 SSD1963 changes the display state to ON state.
 

Detailed Description

Driver for the SSD1963 Graphic-Controller.

Version
1.0
Date
2012-10-10
Author
aom1

This software can be used by students and other personal of the Bern University of Applied Sciences under the terms of the MIT license. For other persons this software is under the terms of the GNU General Public License version 2.

Copyright © 2013, Bern University of Applied Sciences. All rights reserved.

MIT License

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

GNU GENERAL PUBLIC LICENSE

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 2 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, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.

Definition in file ssd1963.h.