]> git.sur5r.net Git - freertos/blob - Demo/CORTEX_LM3S811_KEIL/LuminaryCode/osram96x16.h
Add LM3S811 Keil/RVDS demo files.
[freertos] / Demo / CORTEX_LM3S811_KEIL / LuminaryCode / osram96x16.h
1 //*****************************************************************************\r
2 //\r
3 // osram96x16.h - Prototypes for the driver for the OSRAM 96x16 graphical OLED\r
4 //                display.\r
5 //\r
6 // Copyright (c) 2006 Luminary Micro, Inc.  All rights reserved.\r
7 //\r
8 // Software License Agreement\r
9 //\r
10 // Luminary Micro, Inc. (LMI) is supplying this software for use solely and\r
11 // exclusively on LMI's Stellaris Family of microcontroller products.\r
12 //\r
13 // The software is owned by LMI and/or its suppliers, and is protected under\r
14 // applicable copyright laws.  All rights are reserved.  Any use in violation\r
15 // of the foregoing restrictions may subject the user to criminal sanctions\r
16 // under applicable laws, as well as to civil liability for the breach of the\r
17 // terms and conditions of this license.\r
18 //\r
19 // THIS SOFTWARE IS PROVIDED "AS IS".  NO WARRANTIES, WHETHER EXPRESS, IMPLIED\r
20 // OR STATUTORY, INCLUDING, BUT NOT LIMITED TO, IMPLIED WARRANTIES OF\r
21 // MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE APPLY TO THIS SOFTWARE.\r
22 // LMI SHALL NOT, IN ANY CIRCUMSTANCES, BE LIABLE FOR SPECIAL, INCIDENTAL, OR\r
23 // CONSEQUENTIAL DAMAGES, FOR ANY REASON WHATSOEVER.\r
24 //\r
25 // This is part of revision 816 of the Stellaris Driver Library.\r
26 //\r
27 //*****************************************************************************\r
28 \r
29 #ifndef __OSRAM96X16_H__\r
30 #define __OSRAM96X16_H__\r
31 \r
32 //*****************************************************************************\r
33 //\r
34 // Prototypes for the driver APIs.\r
35 //\r
36 //*****************************************************************************\r
37 extern void OSRAMClear(void);\r
38 extern void OSRAMStringDraw(const char *pcStr, unsigned long ulX,\r
39                             unsigned long ulY);\r
40 extern void OSRAMImageDraw(const unsigned char *pucImage, unsigned long ulX,\r
41                            unsigned long ulY, unsigned long ulWidth,\r
42                            unsigned long ulHeight);\r
43 extern void OSRAMInit(tBoolean bFast);\r
44 extern void OSRAMDisplayOn(void);\r
45 extern void OSRAMDisplayOff(void);\r
46 \r
47 #endif // __OSRAM96X16_H__\r