Location:
Search - ledk
Search list
Description: 拷拷贝到你的Keil安装目录下的c51\bin文件夹中。
工程文件中需设置一下:
project->Option for Target Target1
选Debug页
左侧最下面
Dialog Dll
一般是DP51.DLL,不用修改
Parameter
中是
-P51
在其后加入
-dledkey
即该行看起来应该是这样的:
-p51 -dledkey
保存即可
进入调试后,点击:Peripherals,其中多出一个“键盘LED实验仿真板”选择该项即可。-emboss your copy of the Keil installation directory under the decoder \ bin folder. The project document to be provided as follows : project-gt; Option for Target Target1 election Debug bottom of the left page is generally Dialog Dll DP51.DLL, need not be amended Parameter is- P51 add after-dledkey that the bank should look like this :-p51-can be preserved into dledkey to debug and click : Peripherals, in which more than a "keyboard LED simulation board," which can be chosen.
Platform: |
Size: 56320 |
Author: |
Hits:
Description: keilc51仿真板软件使用方法:1. 请将下载的2个插件内容拷贝到uVision 的安装目录下的 \Keil\C51\BIN 中
2. 修改 Tool.ini, 此文件位于 uVision 的安装目录 \keil 下.
请将下面的内容 添加到 [C51] 部分的后面.
AGSI1=ledkey.dll ("ledkey")
AGSI2=simboard.dll ("simboard")
3. 重启uVsion. 进入Debug 模式, 打开菜单Peripheral, 发现增加了2项
分别是键盘LED仿真板,51实验仿真板。
这样使用时就不用每次设置了,任何时候打开都可以用
-keilc51 board simulation software to use: 1. Please download the contents of two plug-ins are copied to the installation directory uVision under KeilC51BIN 2. modify Tool.ini, this file is located in the installation directory uVision under keil. I would be grateful if the contents of the following added to the [C51] part of the back. AGSI1 = ledkey.dll ( ledkey ) AGSI2 = simboard.dll ( simboard ) 3. Reset uVsion. entered the Debug mode, open the menu Peripheral, found an increase of 2 are keyboard LED emulation board, emulation board 51 experiments. So no need to use each set at any time can be opened
Platform: |
Size: 107520 |
Author: zjb |
Hits:
Description: 该程序实现的是可控流水灯
/* 接P3.2 的键为开始键,按此键则灯开始流动(由下而上)
/* 接P3.3 的键为停止键,按此键则停止流动,所有灯暗
/* 接P3.4 的键为向上键,按此键则灯由上向下流动
/* 接P3.5 的键为向下键,按此键则灯由下向上流动-The program is controlled water realize lights/* P3.2 access keys for the Start button, click the start button then lights flow [bottom-up]/* P3.3 access keys for the stop button, this button is to stop the flow, all the lights the dark/* P3.4 access to up-arrow key, this key is the downward flow of light from/* Access P3.5 for the down arrow key, this button will light from the next upward mobility
Platform: |
Size: 32768 |
Author: sdsajsdsaj |
Hits:
Description: #define uchar unsigned char
#define unint unsigned int
sbit T_CLK=P1^0 /* 实时时钟的时钟线引脚*/
sbit T_IO=P1^1 /* 实时时钟的数据线*/
sbit T_RST=P2^0 /* 实时时钟的复位线引脚*/
sbit DUAN=P2^6 //74HC573的LE端 LED的段选端
sbit WEI=P2^7 //74HC573的LE端 LED的位选端
unint a[6] //={0,0,0,0,0,0} /*位段的数字*/
uchar code ledk[]=
{
0x3f,/*0*/
0x06,/*1*/
0x5b,/*2*/
0x4f,/*3*/
0x66,/*4*/
0x6d,/*5*/
0x7d,/*6*/
0x07,/*7*/
0x7f,/*8*/
0x6f,/*9*/
0x40,} /*-*/ -# Define uchar unsigned char# define unint unsigned int sbit T_CLK = P1 ^ 0 /* Real-time clock line pin*/sbit T_IO = P1 ^ 1 /* real-time clock data line*/sbit T_RST = P2 ^ 0 segment selector the end sbit WEI /* real-time clock reset line pin*/sbit VOl.41.No.10, = P2 ^ 6 // 74HC573 the LE-end LED = P2 ^ 7 // 74HC573 the LE-end LED Choice end unint a [6] //= {0,0,0,0,0,0} /* digital bit segment*/uchar code ledk [] = {0x3f, /* 0*/0x06, /* 1*/0x5b, /* 2*/0x4f, /* 3*/0x66, /* 4*/0x6d, /* 5*/0x7d, /* 6*/0x07, /* 7*/0x7f, /* 8*/0x6f , /* 9*/0x40,} /*-* /
Platform: |
Size: 2048 |
Author: 秦凯 |
Hits: