• 大小: 5.22MB
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2023-11-01
  • 语言: 其他
  • 标签: 单片机  

资源简介

基于LM3S9B92的计算器代码,值得你拥有哦!

资源截图

代码片段和文件信息

//*****************************************************************************
//
// image.c - Routines for drawing bitmap images.
//
// Copyright (c) 2008-2009 Luminary Micro Inc.  All rights reserved.
// Software License Agreement
// 
// Luminary Micro Inc. (LMI) is supplying this software for use solely and
// exclusively on LMI‘s microcontroller products.
// 
// The software is owned by LMI and/or its suppliers and is protected under
// applicable copyright laws.  All rights are reserved.  You may not combine
// this software with “viral“ open-source software in order to form a larger
// program.  Any use in violation of the foregoing restrictions may subject
// the user to criminal sanctions under applicable laws as well as to civil
// liability for the breach of the terms and conditions of this license.
// 
// THIS SOFTWARE IS PROVIDED “AS IS“.  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.
// LMI SHALL NOT IN ANY CIRCUMSTANCES BE LIABLE FOR SPECIAL INCIDENTAL OR
// CONSEQUENTIAL DAMAGES FOR ANY REASON WHATSOEVER.
// 
// This is part of revision 5228 of the Stellaris Graphics Library.
//
//*****************************************************************************

#include “driverlib/debug.h“
#include “grlib/grlib.h“

//*****************************************************************************
//
//! \addtogroup primitives_api
//! @{
//
//*****************************************************************************

//*****************************************************************************
//
// The buffer that holds the dictionary used by the Lempel-Ziv-Storer-Szymanski
// compression algorithm.  This is simply the last 32 bytes decoded from the
// stream and is initially filled with zeros.
//
//*****************************************************************************
static unsigned char g_pucDictionary[32];

//*****************************************************************************
//
//! Draws a bitmap image.
//!
//! \param pContext is a pointer to the drawing context to use.
//! \param pucImage is a pointer to the image to draw.
//! \param lX is the X coordinate of the upper left corner of the image.
//! \param lY is the Y coordinate of the upper left corner of the image.
//!
//! This function draws a bitmap image.  The image may be 1 bit per pixel
//! (using the foreground and background color from the drawing context) 4
//! bits per pixel (using a palette supplied in the image data) or 8 bits per
//! pixel (using a palette supplied in the image data).  It can be uncompressed
//! data or it can be compressed using the Lempel-Ziv-Storer-Szymanski
//! algorithm (as published in the Journal of the ACM 29(4):928-951 October
//! 1982).
//!
//! \return None.
//
//*************************************

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     目录           0  2015-01-09 15:12  计算器\
     文件          19  2015-01-09 14:00  计算器\ExtDll.iex
     文件          24  2015-01-09 15:12  计算器\Startup.d
     文件       41882  2015-01-09 15:12  计算器\Startup.lst
     文件       16477  2015-01-09 09:10  计算器\Startup.s
     目录           0  2014-12-31 19:59  计算器\driverlib\
     文件       22768  2010-12-08 08:38  计算器\driverlib\Backup of driverlib.ewd
     文件       24921  2010-12-08 08:38  计算器\driverlib\Backup of driverlib.ewp
     文件        3197  2010-07-20 23:11  计算器\driverlib\Makefile
     文件       47833  2010-07-20 23:11  计算器\driverlib\adc.c
     文件       11627  2010-07-20 23:11  计算器\driverlib\adc.h
     文件       73035  2010-07-20 23:11  计算器\driverlib\can.c
     文件       14926  2010-07-20 23:11  计算器\driverlib\can.h
     文件       15635  2010-07-20 23:11  计算器\driverlib\comp.c
     文件        7314  2010-07-20 23:11  计算器\driverlib\comp.h
     文件        5410  2010-07-20 23:11  计算器\driverlib\cpu.c
     文件        2332  2010-07-20 23:11  计算器\driverlib\cpu.h
     文件        2261  2010-07-20 23:11  计算器\driverlib\cr_project.xml
     文件        2520  2010-07-20 23:11  计算器\driverlib\debug.h
     文件        2145  2010-07-20 23:11  计算器\driverlib\driverlib.Opt
     文件        3290  2010-07-20 23:11  计算器\driverlib\driverlib.Uv2
     文件       18250  2010-12-08 08:39  计算器\driverlib\driverlib.dep
     文件       22768  2010-12-08 08:38  计算器\driverlib\driverlib.ewd
     文件       24921  2010-12-08 08:38  计算器\driverlib\driverlib.ewp
     文件        3433  2010-07-20 23:11  计算器\driverlib\driverlib.sgxx
     文件       39080  2010-07-20 23:11  计算器\driverlib\epi.c
     文件       12737  2010-07-20 23:11  计算器\driverlib\epi.h
     文件       45550  2010-07-20 23:11  计算器\driverlib\ethernet.c
     文件        7662  2010-07-20 23:11  计算器\driverlib\ethernet.h
     目录           0  2014-12-31 19:59  计算器\driverlib\ewarm\
     目录           0  2014-12-31 19:59  计算器\driverlib\ewarm\Exe\
............此处省略525个文件信息

评论

共有 条评论