1 |
581 |
jeremybenn |
//*****************************************************************************
|
2 |
|
|
//
|
3 |
|
|
// formike128x128x16.h - Prototypes for the Formike Electronic KWH015C04-F01
|
4 |
|
|
// display driver.
|
5 |
|
|
//
|
6 |
|
|
// Copyright (c) 2008 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 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. You may not combine
|
15 |
|
|
// this software with "viral" open-source software in order to form a larger
|
16 |
|
|
// program. Any use in violation of the foregoing restrictions may subject
|
17 |
|
|
// the user to criminal sanctions under applicable laws, as well as to civil
|
18 |
|
|
// liability for the breach of the terms and conditions of this license.
|
19 |
|
|
//
|
20 |
|
|
// THIS SOFTWARE IS PROVIDED "AS IS". NO WARRANTIES, WHETHER EXPRESS, IMPLIED
|
21 |
|
|
// OR STATUTORY, INCLUDING, BUT NOT LIMITED TO, IMPLIED WARRANTIES OF
|
22 |
|
|
// MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE APPLY TO THIS SOFTWARE.
|
23 |
|
|
// LMI SHALL NOT, IN ANY CIRCUMSTANCES, BE LIABLE FOR SPECIAL, INCIDENTAL, OR
|
24 |
|
|
// CONSEQUENTIAL DAMAGES, FOR ANY REASON WHATSOEVER.
|
25 |
|
|
//
|
26 |
|
|
// This is part of revision 2523 of the Stellaris Peripheral Driver Library.
|
27 |
|
|
//
|
28 |
|
|
//*****************************************************************************
|
29 |
|
|
|
30 |
|
|
#ifndef __FORMIKE128X128X16_H__
|
31 |
|
|
#define __FORMIKE128X128X16_H__
|
32 |
|
|
|
33 |
|
|
//*****************************************************************************
|
34 |
|
|
//
|
35 |
|
|
// Prototypes for the globals exported by this driver.
|
36 |
|
|
//
|
37 |
|
|
//*****************************************************************************
|
38 |
|
|
extern void Formike128x128x16Init(void);
|
39 |
|
|
extern void Formike128x128x16BacklightOn(void);
|
40 |
|
|
extern void Formike128x128x16BacklightOff(void);
|
41 |
|
|
extern const tDisplay g_sFormike128x128x16;
|
42 |
|
|
|
43 |
|
|
/* FreeRTOS.org demo wrappers. These are required so the prototypes for the
|
44 |
|
|
functions are the same as for the display drivers used by other evaluation
|
45 |
|
|
kits. */
|
46 |
|
|
void vFormike128x128x16Clear( void );
|
47 |
|
|
void vFormike128x128x16StringDraw( const char *pcString, unsigned long lX, unsigned long lY, unsigned char ucColor );
|
48 |
|
|
void vFormike128x128x16Init( unsigned long ul );
|
49 |
|
|
void vFormike128x128x16ImageDraw( const unsigned char *pucImage, unsigned long ulX, unsigned long ulY, unsigned long ulWidth, unsigned long ulHeight );
|
50 |
|
|
|
51 |
|
|
#endif // __FORMIKE128X128X16_H__
|