代码搜索结果
找到约 10,000 项符合
LCD 的代码
lcd.bsf
/*
WARNING: Do NOT edit the input and output ports in this file in a text
editor if you plan to continue editing the block that represents it in
the Block Editor! File corruption is VERY likely to
lcd.v
module lcd(clk,rst,data_in,lcd_e,lcd_rw,lcd_rs,data);
input clk,rst;
input [7:0] data_in;
output lcd_e,lcd_rw,lcd_rs;
output [7:0] data;
reg lcd_e,lcd_rw,lcd_rs;
reg [7:0] data,data_in_buf
lcd.bsf
/*
WARNING: Do NOT edit the input and output ports in this file in a text
editor if you plan to continue editing the block that represents it in
the Block Editor! File corruption is VERY likely to
lcd.vhd
library IEEE;
use IEEE.STD_LOGIC_1164.ALL;
use IEEE.STD_LOGIC_ARITH.ALL;
use IEEE.STD_LOGIC_UNSIGNED.ALL;
entity lcd is
Port ( clk : in std_logic; --4MHZ FROM D12
Reset
lcd.c
/******************** (C) COPYRIGHT 2007 STMicroelectronics ********************
* File Name : main.c
* Author : David JIANG
* Date First Issued : 2007.9.17
* Description
lcd.h
/******************** (C) COPYRIGHT 2007 STMicroelectronics ********************
* File Name : lcd.h
* Author : David JIANG
* Date First Issued : 2007.9.17
* Description
lcd.c
/*********************************************************************
* SEGGER MICROCONTROLLER SYSTEME GmbH *
* Solutions for real time microcontroller applica
lcd.bak
/*********************************************************************
* SEGGER MICROCONTROLLER SYSTEME GmbH *
* Solutions for real time microcontroller applica
lcd.h
/*
*********************************************************************************************************
* uC/GUI
* Universal
lcd.h
#ifndef __LCD_H__
#define __LCD_H__
void MoveViewPort(int depth);
void Test_LcdMono(void);
void Test_LcdG4(void);
void Test_LcdStr(void);
#endif /*__LCD_H__*/