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