搜索结果
找到约 36 项符合
0X80 的查询结果
按分类筛选
单片机开发 CHUSHIHUA()//初始化 Display(0x80,"显示内容")
CHUSHIHUA()//初始化
Display(0x80,"显示内容")
DSP编程 F2812 标准FFT算法,128点,256点,512点,1024点FFT算法,具体做法为将库含数FFT.LIB加入的目标项目,加入对应的C含数和头文件,特别注意的FFT算法缓冲去一定要存放在0X80
F2812 标准FFT算法,128点,256点,512点,1024点FFT算法,具体做法为将库含数FFT.LIB加入的目标项目,加入对应的C含数和头文件,特别注意的FFT算法缓冲去一定要存放在0X8000H中的内部缓冲区中!!!切记,本人调试时就走了很多弯路啊
技术资料 MAX31865模块资料
STM32 模拟 SPI 接口 程序默认配置为4线或2线传感器连接方式,因此配置为“MAX31865_SB_Write(0x80,0xc1);”若更改三线连接方式时,需要更改配置为“MAX31865_SB_Write(0x80,0xd1);”
VHDL/FPGA/Verilog This a FREE tool chain which compiles C codes into 8051 binary code, converts the binary to RTL ROM,
This a FREE tool chain which compiles C codes into 8051 binary code, converts the binary to RTL ROM, and simulate in Modelsim.
SDCC is the compiler.
Example compilation:
cd compile
sdcc --iram-size 0x80 --xram-size 0x800 t8051.c
REM sdcc --iram-size 0x80 t8051.c
packihx t8051.ihx > t8051.hex
...
技术资料 msp430基础程序集合
LED 程序 P4OUT=BitCode; //输出位码
LED 流水灯实验 P2OUT=Code[Bit[i]]; //输出段码
#include "msp430x14 ...
单片机编程 AVR单片机数码管秒表显示
#include<iom16v.h>
#include<macros.h>
#define uint unsigned int
#define uchar unsigned char
uint a,b,c,d=0;
void delay(c)
{ for for(a=0;a<c;a++)
for(b=0;b<12;b++);
};
uchar tab[]={
0xc0,0xf9,0xa4,0xb0,0x99,0x92,0x82,0xf8,0x80,0x90,
技术资料 Proteus仿真LCD12864显示动画—飞翔的鸽子
程序:LCD12664液晶显示原理unsigned int/W/图形编码,也可以把图形代码存为头文件。该程序经过调试。PROTEUS原理图见截图unsigned char code table1[][64]={/*-调入了一幅图像:D:\Desktop\新建文件夹(2)l.bmp--*//*-宽度x高度=128×64一*材0x00,0×00,0×00,0×00,0×00,0×00,0x80,0x80,0xD0,0XE0,0XE0,0xC ...
单片机编程 红外解码程序
/*
&nbsp;* _168ZHONGDUAN2.c
&nbsp;*
&nbsp;* Created: 2014/11/2 15:12:45
&nbsp;* &nbsp;Author: lenovo
&nbsp;*/&nbsp;
#include <avr/io.h>
#include <avr/iom168pa.h>
#include <avr/interrupt.h>
#include <util/delay.h>
#include <avr/eeprom.h>
//#include <util/delay_basic.h>
//unsigned char const SEGtabl ...
PCB图/BOM单/原理图 单片机课程设计
#include<reg52.h>&nbsp;
#include<intrins.h>
#define LED P0
sbit KEY0=P2^0; &nbsp;//定义按键输入端口 A &nbsp;&nbsp;
sbit KEY1=P2^1; &nbsp;//定义按键输入端口 B &nbsp;&nbsp;
sbit KEY2=P2^2; &nbsp;//定义按键输入端口 C
unsigned int Led_table[8]={0xfe,0xfc,0xf8,0xf0,0xe0,0xc0,0x80,0x00};
char Led_num=0 ...
技术资料 《51单片机C语言应用程序实例精讲》代码
/产初始化RTL8019AS,PAGE2寄存器只读,PAGE3寄存器不是NE2000兼容的,均不用设置材/使用0x40-0x4b为网卡的发送缓冲区,共12页,刚好存储2个最大的以太网数据包。使用0x4c-0x7f为网卡的接收缓冲区,共52页,因此PSTART=0x4c,PSTOP=0x80(0x80为停止页,接收缓冲区直到Ox7f,不包括0x80),刚开始时,网卡没有接收到任何数 ...