mirror of
https://github.com/QuantumLeaps/qpcpp.git
synced 2025-01-21 05:52:58 +08:00
46 lines
2.0 KiB
C
46 lines
2.0 KiB
C
//*****************************************************************************
|
|
//
|
|
// display96x16x1.h - Prototypes for the driver for the 96x16 monochrome
|
|
// graphical OLED displays found on the ek-lm3s811 board.
|
|
//
|
|
// Copyright (c) 2006-2010 Texas Instruments Incorporated. All rights reserved.
|
|
// Software License Agreement
|
|
//
|
|
// Texas Instruments (TI) is supplying this software for use solely and
|
|
// exclusively on TI's microcontroller products. The software is owned by
|
|
// TI and/or its suppliers, and is protected under applicable copyright
|
|
// laws. You may not combine this software with "viral" open-source
|
|
// software in order to form a larger program.
|
|
//
|
|
// THIS SOFTWARE IS PROVIDED "AS IS" AND WITH ALL FAULTS.
|
|
// NO WARRANTIES, WHETHER EXPRESS, IMPLIED OR STATUTORY, INCLUDING, BUT
|
|
// NOT LIMITED TO, IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
|
// A PARTICULAR PURPOSE APPLY TO THIS SOFTWARE. TI SHALL NOT, UNDER ANY
|
|
// CIRCUMSTANCES, BE LIABLE FOR SPECIAL, INCIDENTAL, OR CONSEQUENTIAL
|
|
// DAMAGES, FOR ANY REASON WHATSOEVER.
|
|
//
|
|
// This is part of revision 5570 of the EK-LM3S811 Firmware Package.
|
|
//
|
|
//*****************************************************************************
|
|
|
|
#ifndef __DISPLAY96X16X1_H__
|
|
#define __DISPLAY96X16X1_H__
|
|
|
|
//*****************************************************************************
|
|
//
|
|
// Prototypes for the driver APIs.
|
|
//
|
|
//*****************************************************************************
|
|
extern void Display96x16x1Clear(void);
|
|
extern void Display96x16x1StringDraw(char const *pcStr, uint32_t ulX,
|
|
uint32_t ulY);
|
|
extern void Display96x16x1ImageDraw(uint8_t const *pucImage,
|
|
uint32_t ulX, uint32_t ulY,
|
|
uint32_t ulWidth,
|
|
uint32_t ulHeight);
|
|
extern void Display96x16x1Init(uint8_t bFast);
|
|
extern void Display96x16x1DisplayOn(void);
|
|
extern void Display96x16x1DisplayOff(void);
|
|
|
|
#endif // __DISPLAY96X16X1_H__
|