亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? osram128x64x4.c

?? FreeRTOS is a portable, open source, mini Real Time Kernel - a free to download and royalty free RTO
?? C
?? 第 1 頁 / 共 3 頁
字號:
//*****************************************************************************
//
// osram128x64x4.c - Driver for the OSRAM 128x64x4 graphical OLED display.
//
// Copyright (c) 2006-2007 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.  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 1408 of the Stellaris Peripheral Driver Library.
//
//*****************************************************************************

//*****************************************************************************
//
//! \addtogroup ek_lm3sx965_api
//! @{
//
//*****************************************************************************

#include "hw_ssi.h"
#include "hw_memmap.h"
#include "hw_sysctl.h"
#include "hw_types.h"
#include "debug.h"
#include "gpio.h"
#include "ssi.h"
#include "sysctl.h"
#include "osram128x64x4.h"

//*****************************************************************************
//
// Flag to indicate if SSI port is enabled for OSRAM usage.
//
//*****************************************************************************
static volatile tBoolean g_bSSIEnabled = false;

//*****************************************************************************
//
// Define the OSRAM 128x64x4 Remap Setting(s).  This will be used in
// several places in the code to switch between vertical and horizontal
// address incrementing.
//
// The Remap Command (0xA0) takes one 8-bit parameter.  The parameter is
// defined as follows.
//
// Bit 7: Reserved
// Bit 6: Disable(0)/Enable(1) COM Split Odd Even
//        When enabled, the COM signals are split Odd on one side, even on
//        the other.  Otherwise, they are split 0-39 on one side, 40-79 on
//        the other.
// Bit 5: Reserved
// Bit 4: Disable(0)/Enable(1) COM Remap
//        When Enabled, ROW 0-79 map to COM 79-0 (i.e. reverse row order)
// Bit 3: Reserved
// Bit 2: Horizontal(0)/Vertical(1) Address Increment
//        When set, data RAM address will increment along the column rather
//        than along the row.
// Bit 1: Disable(0)/Enable(1) Nibble Remap
//        When enabled, the upper and lower nibbles in the DATA bus for access
//        to the data RAM are swapped.
// Bit 0: Disable(0)/Enable(1) Column Address Remap
//        When enabled, DATA RAM columns 0-63 are remapped to Segment Columns
//        127-0.
//
//*****************************************************************************
#define OSRAM_INIT_REMAP    0x52
#define OSRAM_INIT_OFFSET   0x4C
static const unsigned char g_pucOSRAM128x64x4VerticalInc[]   = { 0xA0, 0x56 };
static const unsigned char g_pucOSRAM128x64x4HorizontalInc[] = { 0xA0, 0x52 };

//*****************************************************************************
//
// A 5x7 font (in a 6x8 cell, where the sixth column is omitted from this
// table) for displaying text on the OLED display.  The data is organized as
// bytes from the left column to the right column, with each byte containing
// the top row in the LSB and the bottom row in the MSB.
//
// Note:  This is the same font data that is used in the EK-LM3S811
// osram96x16x1 driver.  The single bit-per-pixel is expaned in the StringDraw
// function to the appropriate four bit-per-pixel gray scale format.
//
//*****************************************************************************
static const unsigned char g_pucFont[96][5] =
{
    { 0x00, 0x00, 0x00, 0x00, 0x00 }, // " "
    { 0x00, 0x00, 0x4f, 0x00, 0x00 }, // !
    { 0x00, 0x07, 0x00, 0x07, 0x00 }, // "
    { 0x14, 0x7f, 0x14, 0x7f, 0x14 }, // #
    { 0x24, 0x2a, 0x7f, 0x2a, 0x12 }, // $
    { 0x23, 0x13, 0x08, 0x64, 0x62 }, // %
    { 0x36, 0x49, 0x55, 0x22, 0x50 }, // &
    { 0x00, 0x05, 0x03, 0x00, 0x00 }, // '
    { 0x00, 0x1c, 0x22, 0x41, 0x00 }, // (
    { 0x00, 0x41, 0x22, 0x1c, 0x00 }, // )
    { 0x14, 0x08, 0x3e, 0x08, 0x14 }, // *
    { 0x08, 0x08, 0x3e, 0x08, 0x08 }, // +
    { 0x00, 0x50, 0x30, 0x00, 0x00 }, // ,
    { 0x08, 0x08, 0x08, 0x08, 0x08 }, // -
    { 0x00, 0x60, 0x60, 0x00, 0x00 }, // .
    { 0x20, 0x10, 0x08, 0x04, 0x02 }, // /
    { 0x3e, 0x51, 0x49, 0x45, 0x3e }, // 0
    { 0x00, 0x42, 0x7f, 0x40, 0x00 }, // 1
    { 0x42, 0x61, 0x51, 0x49, 0x46 }, // 2
    { 0x21, 0x41, 0x45, 0x4b, 0x31 }, // 3
    { 0x18, 0x14, 0x12, 0x7f, 0x10 }, // 4
    { 0x27, 0x45, 0x45, 0x45, 0x39 }, // 5
    { 0x3c, 0x4a, 0x49, 0x49, 0x30 }, // 6
    { 0x01, 0x71, 0x09, 0x05, 0x03 }, // 7
    { 0x36, 0x49, 0x49, 0x49, 0x36 }, // 8
    { 0x06, 0x49, 0x49, 0x29, 0x1e }, // 9
    { 0x00, 0x36, 0x36, 0x00, 0x00 }, // :
    { 0x00, 0x56, 0x36, 0x00, 0x00 }, // ;
    { 0x08, 0x14, 0x22, 0x41, 0x00 }, // <
    { 0x14, 0x14, 0x14, 0x14, 0x14 }, // =
    { 0x00, 0x41, 0x22, 0x14, 0x08 }, // >
    { 0x02, 0x01, 0x51, 0x09, 0x06 }, // ?
    { 0x32, 0x49, 0x79, 0x41, 0x3e }, // @
    { 0x7e, 0x11, 0x11, 0x11, 0x7e }, // A
    { 0x7f, 0x49, 0x49, 0x49, 0x36 }, // B
    { 0x3e, 0x41, 0x41, 0x41, 0x22 }, // C
    { 0x7f, 0x41, 0x41, 0x22, 0x1c }, // D
    { 0x7f, 0x49, 0x49, 0x49, 0x41 }, // E
    { 0x7f, 0x09, 0x09, 0x09, 0x01 }, // F
    { 0x3e, 0x41, 0x49, 0x49, 0x7a }, // G
    { 0x7f, 0x08, 0x08, 0x08, 0x7f }, // H
    { 0x00, 0x41, 0x7f, 0x41, 0x00 }, // I
    { 0x20, 0x40, 0x41, 0x3f, 0x01 }, // J
    { 0x7f, 0x08, 0x14, 0x22, 0x41 }, // K
    { 0x7f, 0x40, 0x40, 0x40, 0x40 }, // L
    { 0x7f, 0x02, 0x0c, 0x02, 0x7f }, // M
    { 0x7f, 0x04, 0x08, 0x10, 0x7f }, // N
    { 0x3e, 0x41, 0x41, 0x41, 0x3e }, // O
    { 0x7f, 0x09, 0x09, 0x09, 0x06 }, // P
    { 0x3e, 0x41, 0x51, 0x21, 0x5e }, // Q
    { 0x7f, 0x09, 0x19, 0x29, 0x46 }, // R
    { 0x46, 0x49, 0x49, 0x49, 0x31 }, // S
    { 0x01, 0x01, 0x7f, 0x01, 0x01 }, // T
    { 0x3f, 0x40, 0x40, 0x40, 0x3f }, // U
    { 0x1f, 0x20, 0x40, 0x20, 0x1f }, // V
    { 0x3f, 0x40, 0x38, 0x40, 0x3f }, // W
    { 0x63, 0x14, 0x08, 0x14, 0x63 }, // X
    { 0x07, 0x08, 0x70, 0x08, 0x07 }, // Y
    { 0x61, 0x51, 0x49, 0x45, 0x43 }, // Z
    { 0x00, 0x7f, 0x41, 0x41, 0x00 }, // [
    { 0x02, 0x04, 0x08, 0x10, 0x20 }, // "\"
    { 0x00, 0x41, 0x41, 0x7f, 0x00 }, // ]
    { 0x04, 0x02, 0x01, 0x02, 0x04 }, // ^
    { 0x40, 0x40, 0x40, 0x40, 0x40 }, // _
    { 0x00, 0x01, 0x02, 0x04, 0x00 }, // `
    { 0x20, 0x54, 0x54, 0x54, 0x78 }, // a
    { 0x7f, 0x48, 0x44, 0x44, 0x38 }, // b
    { 0x38, 0x44, 0x44, 0x44, 0x20 }, // c
    { 0x38, 0x44, 0x44, 0x48, 0x7f }, // d
    { 0x38, 0x54, 0x54, 0x54, 0x18 }, // e
    { 0x08, 0x7e, 0x09, 0x01, 0x02 }, // f
    { 0x0c, 0x52, 0x52, 0x52, 0x3e }, // g
    { 0x7f, 0x08, 0x04, 0x04, 0x78 }, // h
    { 0x00, 0x44, 0x7d, 0x40, 0x00 }, // i
    { 0x20, 0x40, 0x44, 0x3d, 0x00 }, // j
    { 0x7f, 0x10, 0x28, 0x44, 0x00 }, // k
    { 0x00, 0x41, 0x7f, 0x40, 0x00 }, // l
    { 0x7c, 0x04, 0x18, 0x04, 0x78 }, // m
    { 0x7c, 0x08, 0x04, 0x04, 0x78 }, // n
    { 0x38, 0x44, 0x44, 0x44, 0x38 }, // o
    { 0x7c, 0x14, 0x14, 0x14, 0x08 }, // p
    { 0x08, 0x14, 0x14, 0x18, 0x7c }, // q
    { 0x7c, 0x08, 0x04, 0x04, 0x08 }, // r
    { 0x48, 0x54, 0x54, 0x54, 0x20 }, // s
    { 0x04, 0x3f, 0x44, 0x40, 0x20 }, // t
    { 0x3c, 0x40, 0x40, 0x20, 0x7c }, // u
    { 0x1c, 0x20, 0x40, 0x20, 0x1c }, // v
    { 0x3c, 0x40, 0x30, 0x40, 0x3c }, // w
    { 0x44, 0x28, 0x10, 0x28, 0x44 }, // x
    { 0x0c, 0x50, 0x50, 0x50, 0x3c }, // y
    { 0x44, 0x64, 0x54, 0x4c, 0x44 }, // z
    { 0x00, 0x08, 0x36, 0x41, 0x00 }, // {
    { 0x00, 0x00, 0x7f, 0x00, 0x00 }, // |
    { 0x00, 0x41, 0x36, 0x08, 0x00 }, // }
    { 0x02, 0x01, 0x02, 0x04, 0x02 }, // ~
    { 0x02, 0x01, 0x02, 0x04, 0x02 }, // ~
};

//*****************************************************************************
//
// The sequence of commands used to initialize the SSD0303 controller.  Each
// command is described as follows:  there is a byte specifying the number of
// bytes in the command sequence, followed by that many bytes of command data.
// Note:  This initialization sequence is derived from OSRAM App Note AN018.
//
//*****************************************************************************
static const unsigned char g_pucOSRAM128x64x4Init[] =
{
    //
    // Column Address
    //
    4, 0x15, 0, 63, 0xe3,

    //
    // Row Address
    //
    4, 0x75, 0, 63, 0xe3,

    //
    // Contrast Control
    //
    3, 0x81, 50, 0xe3,

    //
    // Half Current Range
    //
    2, 0x85, 0xe3,

    //
    // Display Re-map
    //
    3, 0xA0, OSRAM_INIT_REMAP, 0xe3,

    //
    // Display Start Line
    //
    3, 0xA1, 0, 0xe3,

    //
    // Display Offset
    //
    3, 0xA2, OSRAM_INIT_OFFSET, 0xe3,

    //
    // Display Mode Normal
    //
    2, 0xA4, 0xe3,

    //
    // Multiplex Ratio
    //
    3, 0xA8, 63, 0xe3,

    //
    // Phase Length
    //
    3, 0xB1, 0x22, 0xe3,

    //
    // Row Period
    //
    3, 0xB2, 70, 0xe3,

    //
    // Display Clock Divide
    //
    3, 0xB3, 0xF1, 0xe3,

    //
    // VSL
    //
    3, 0xBF, 0x0D, 0xe3,

    //
    // VCOMH
    //
    3, 0xBE, 0x02, 0xe3,

    //
    // VP
    //
    3, 0xBC, 0x10, 0xe3,

    //
    // Gamma
    //
    10, 0xB8, 0x01, 0x11, 0x22, 0x32, 0x43, 0x54, 0x65, 0x76, 0xe3,

    //
    // Set DC-DC
    3, 0xAD, 0x03, 0xe3,

    //
    // Display ON/OFF
    //
    2, 0xAF, 0xe3,
};

//*****************************************************************************
//
//! \internal
//!
//! Write a sequence of command bytes to the SSD0323 controller.
//!
//! The data is written in a polled fashion; this function will not return
//! until the entire byte sequence has been written to the controller.
//!
//! \return None.
//
//*****************************************************************************
static void
OSRAMWriteCommand(const unsigned char *pucBuffer, unsigned long ulCount)
{

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
亚洲综合一区二区三区| 国产精品一区专区| 91精品综合久久久久久| 美女视频黄久久| 中日韩免费视频中文字幕| 日本道色综合久久| 麻豆成人91精品二区三区| 国产精品丝袜黑色高跟| 在线观看区一区二| 日本大胆欧美人术艺术动态| 欧美丰满美乳xxx高潮www| 偷拍亚洲欧洲综合| 亚洲欧美色图小说| 精品国产第一区二区三区观看体验| 精品一区二区综合| 亚洲动漫第一页| 中文字幕视频一区| 精品三级在线看| 欧美午夜理伦三级在线观看| 国产成a人亚洲精品| 韩国中文字幕2020精品| 天天色综合天天| 亚洲特黄一级片| 国产精品无遮挡| 久久久久久久久97黄色工厂| 久久综合色天天久久综合图片| 欧美亚洲高清一区二区三区不卡| eeuss国产一区二区三区| 国产精品资源网| 国产在线一区观看| 国产一区二区三区美女| 国产成人免费在线观看| www.av亚洲| 欧美午夜精品电影| 日韩视频一区二区三区 | 国产三级久久久| 国产精品丝袜一区| 亚洲人成7777| 久久精品国产77777蜜臀| 激情综合网激情| www.视频一区| 欧美日韩午夜在线视频| 欧美一级电影网站| 国产精品视频第一区| 亚洲已满18点击进入久久| 美国三级日本三级久久99 | 国产成人综合在线观看| 国产福利一区在线观看| 成人午夜在线播放| 欧美视频在线不卡| 久久精品视频免费| 亚洲愉拍自拍另类高清精品| 九一九一国产精品| 在线观看免费视频综合| 国产精品三级av| 奇米精品一区二区三区在线观看 | 亚洲午夜激情网站| 高清免费成人av| 久久综合久久综合久久| 肉色丝袜一区二区| 色诱亚洲精品久久久久久| 欧美mv和日韩mv的网站| 五月婷婷另类国产| 色综合久久99| 日本视频中文字幕一区二区三区| 成人国产精品免费| 成人一区二区视频| 精品精品国产高清一毛片一天堂| 综合在线观看色| 色婷婷综合久久久久中文一区二区 | 欧美一区二区观看视频| 国产精品久久久久久久第一福利 | 久久久久久久久久久久电影| 国内外成人在线| 国产亚洲成aⅴ人片在线观看 | 中文字幕免费观看一区| 国产麻豆精品theporn| 中文字幕第一区第二区| 91丝袜国产在线播放| 亚洲国产欧美一区二区三区丁香婷| 在线观看亚洲专区| 精品伊人久久久久7777人| 中文av字幕一区| 欧美日韩在线观看一区二区 | 91啦中文在线观看| 丝袜a∨在线一区二区三区不卡| 精品电影一区二区| 成人av在线播放网站| 强制捆绑调教一区二区| 国产精品久久久久久久久搜平片| 91浏览器打开| 国产精品影视在线观看| 亚洲va欧美va国产va天堂影院| 2024国产精品| 亚洲精品在线一区二区| 欧美自拍丝袜亚洲| 国产资源在线一区| 亚洲一级片在线观看| 久久精品亚洲精品国产欧美| 欧美日韩综合在线免费观看| 国产乱码精品一区二区三| 日本欧美一区二区三区| 亚洲成人www| 亚洲成人av电影在线| 亚洲电影你懂得| 亚洲狠狠爱一区二区三区| 一区二区三区免费| 亚洲午夜影视影院在线观看| 亚洲乱码一区二区三区在线观看| 中文字幕成人av| 亚洲欧美一区二区在线观看| 成人免费在线播放视频| 国产精品久久久久天堂| 国产精品进线69影院| 国产精品久久夜| 亚洲高清不卡在线| 日韩国产欧美三级| 久久精品国产99国产精品| 国产一区二区美女| 91在线小视频| 欧美一级日韩不卡播放免费| 久久影院午夜片一区| 中文字幕精品一区二区三区精品| 亚洲人成7777| 久久超碰97中文字幕| 99精品视频免费在线观看| 色狠狠一区二区| www国产精品av| 亚洲精品国产第一综合99久久| 日本欧美一区二区在线观看| 国产成人免费视| 欧美一区二区三区男人的天堂| 国产日韩欧美精品一区| 首页欧美精品中文字幕| 成人一区二区在线观看| 777午夜精品视频在线播放| 国产精品卡一卡二| 国产主播一区二区| 91精品国产丝袜白色高跟鞋| 亚洲欧洲国产日本综合| 久久99精品国产.久久久久久| 91福利在线观看| 国产精品电影一区二区| 国产精品羞羞答答xxdd| 日韩精品一区二区三区中文不卡| 亚洲精品日日夜夜| 99久久精品99国产精品 | 亚洲婷婷综合色高清在线| 韩国中文字幕2020精品| 日韩欧美在线综合网| 日韩精品视频网| 日韩女优电影在线观看| 日韩电影在线观看一区| 91精品久久久久久久91蜜桃 | 九九精品视频在线看| 欧美大片在线观看一区| 亚洲成av人片在www色猫咪| 欧美日韩一区视频| 日本aⅴ精品一区二区三区| 欧美一区二区三区视频在线观看| 日本人妖一区二区| 精品成人a区在线观看| 国产河南妇女毛片精品久久久 | 久久精品无码一区二区三区| 国产成人在线影院| 亚洲女爱视频在线| 日韩精品一区二| 99精品视频在线观看免费| 亚洲综合视频在线| 久久免费偷拍视频| 91小视频免费看| 精品影视av免费| 亚洲电影一区二区三区| 欧美变态凌虐bdsm| 欧美日韩免费一区二区三区| 国产伦理精品不卡| 日本伊人色综合网| 一区二区三区四区不卡视频| 精品久久一二三区| 6080国产精品一区二区| 菠萝蜜视频在线观看一区| 麻豆精品在线视频| 日韩精品久久理论片| 亚洲麻豆国产自偷在线| 国产农村妇女精品| 国产欧美日韩精品一区| 精品国产免费久久| 欧美成人一区二区三区片免费 | 国产精品香蕉一区二区三区| 日韩精品乱码av一区二区| 亚洲成人7777| 亚洲一二三四在线观看| 亚洲精品国产无天堂网2021| 国产日韩亚洲欧美综合| 欧美高清一级片在线观看| 久久久久久久综合日本| 国产婷婷一区二区| 国产欧美久久久精品影院| 中文字幕乱码日本亚洲一区二区| 久久青草国产手机看片福利盒子|