Welcome![Sign In][Sign Up]
Location:
Search - stc com

Search list

[Embeded-SCM DevelopSTC_Download

Description: STC-Download/STC-ISP下载工具(STC89C51单片机在线下载器) 必须组件: SPComm(必须), VCLSkin(可以去掉) ------------------------------------------ 23:13 2005年7月4日 ------------------- 1.增加了重复下载功能,便于多个芯片下载 2.改进连机搜索算法 13:23 2005年7月4日 ------------------- 1.增加了Hex文件功能,可以直接载入Hex文件 2.修改了Bin文件载入功能,实现Bin文件直接载入,Hex解码到内存再载入 1:12 2005年7月4日 ------------------- 1.优化下载速度,将波特率由原来的1200提高到57600 2.增强芯片识别率,只要以16H结尾,都是芯片合法回应值 3.增加芯片版本识别,可以烧写固件版本2.9和3.0和芯片 4.关闭调试串输出,状态栏只显示操作信息和时间 -------------------------------- 作者: 吴江涛 Http://www.ktao.net E-Mail: ik3000cn@126.com -STC-Download/STC-ISP download tools (SCM STC89C51 online download) must components : SPComm (must), VCLSkin (can be removed) --- --- --- --- --- --- --- --- 23 : 13 July 4, 2005 --- --- --- - 1. a repeat download gong to facilitate downloading more than two chips. even improved search algorithm 13 : 23 July 4, 2005 ------------------- 1. increased Hex documents functions can be directly printed documents Hex 2. Bin revised document printed in function, achieving Bin documents directly printed, Hex decoder to further include a memory : 12 July 4, 2005 ------------------- 1. Optimization download speeds, baud rate will increase from 1200 to 57600 2. chip recognition rate increase, as long as the end 16H, chips are legitimate response to the value of 3. increased chip versio
Platform: | Size: 535746 | Author: brrx | Hits:

[Other resource1

Description: 设计自己的ISP程序 C程序源代码 /******************************************************************** IAP.C SST和STC单片机IAP操作函数 魏东(tonywei@tom.com) 2004.7.23
Platform: | Size: 22893 | Author: qinshaohua | Hits:

[assembly language闰年计算

Description:

 data segment    ;定义数据段

    infon db 0dh,0ah,'Please input a year: $'
    Y db 0dh,0ah,'This is a leap year! $'
    N db 0dh,0ah,'This is not a leap year! $'
    w dw 0
    buf db 8
        db ?
        db 8 dup(?)
data ends
 
stack segment stack
    db 200 dup(0)
stack ends
 
code segment
          assume ds:data,ss:stack,cs:code
    start:mov ax,data
          mov ds,ax
         
          lea dx,infon ;在屏幕上显示提示信息
          mov ah,9
          int 21h
 
          lea dx,buf    ;从键盘输入年份字符串
          mov ah,10
          int 21h
         
          mov cl, [buf+1]
          lea di,buf+2
          call datacate
          call ifyears
          jc a1
         
          lea dx,n
          mov ah,9
          int 21h
          jmp exit
    a1:   lea dx,y
          mov ah,9
          int 21h
    exit: mov ah,4ch
          int 21h
      
 
 
 datacate proc near;
          push cx;                                                      
          dec cx
          lea si,buf+2
     tt1: inc si
          loop tt1
          ;lea si,cx[di]
          pop cx
    
     
          mov dh,30h
          mov bl,10
          mov ax,1
      l1: push ax
          sub byte ptr [si],dh
          mul byte ptr [si]
          add w,ax
          pop ax
          mul bl
          dec si
          loop l1
          ret
 datacate endp
 
 
   ifyears proc near
           push bx
           push cx
           push dx
           mov ax,w
           mov   cx,ax
           mov dx,0
           mov bx,4
           div bx
           cmp dx,0
           jnz lab1
           mov   ax,cx
           mov bx,100
           div bx
           cmp dx,0
           jnz lab2
           mov ax,cx
           mov bx,400
           div bx
           cmp dx,0
           jz lab2
     lab1: clc
           jmp lab3
     lab2: stc
     lab3: pop dx
           pop cx
           pop bx
           ret
   ifyears endp
code ends
   end start
     




[广告] 2008年最受关注楼盘


Platform: | Size: 10752 | Author: jackdawson0@ | Hits:

[Embeded-SCM DevelopSTC_Download

Description: STC-Download/STC-ISP下载工具(STC89C51单片机在线下载器) 必须组件: SPComm(必须), VCLSkin(可以去掉) ------------------------------------------ 23:13 2005年7月4日 ------------------- 1.增加了重复下载功能,便于多个芯片下载 2.改进连机搜索算法 13:23 2005年7月4日 ------------------- 1.增加了Hex文件功能,可以直接载入Hex文件 2.修改了Bin文件载入功能,实现Bin文件直接载入,Hex解码到内存再载入 1:12 2005年7月4日 ------------------- 1.优化下载速度,将波特率由原来的1200提高到57600 2.增强芯片识别率,只要以16H结尾,都是芯片合法回应值 3.增加芯片版本识别,可以烧写固件版本2.9和3.0和芯片 4.关闭调试串输出,状态栏只显示操作信息和时间 -------------------------------- 作者: 吴江涛 Http://www.ktao.net E-Mail: ik3000cn@126.com -STC-Download/STC-ISP download tools (SCM STC89C51 online download) must components : SPComm (must), VCLSkin (can be removed)------------------------ 23 : 13 July 4, 2005---------- 1. a repeat download gong to facilitate downloading more than two chips. even improved search algorithm 13 : 23 July 4, 2005------------------- 1. increased Hex documents functions can be directly printed documents Hex 2. Bin revised document printed in function, achieving Bin documents directly printed, Hex decoder to further include a memory : 12 July 4, 2005------------------- 1. Optimization download speeds, baud rate will increase from 1200 to 57600 2. chip recognition rate increase, as long as the end 16H, chips are legitimate response to the value of 3. increased chip versio
Platform: | Size: 535552 | Author: brrx | Hits:

[SCM1

Description: 设计自己的ISP程序 C程序源代码 /******************************************************************** IAP.C SST和STC单片机IAP操作函数 魏东(tonywei@tom.com) 2004.7.23 -Design their own ISP program C source code /******************************************************************** IAP.C SST and STC operations Singlechip IAP function Wei Dong (tonywei@tom.com) 2004.7 .23
Platform: | Size: 22528 | Author: qinshaohua | Hits:

[SCM51

Description: 8051架构单片机元件库。 Protel一直以来都没有提供Atmel公司8051架构单片机的元件库,电子爱好者和工程师们都得用其它公司8051架构单片机元件库来代替或者自己制作元件库。 根据Atmel公司官方网站(http://www.atmel.com)提供的Datasheet文件制作了一个Atmel公司8051架构单片机元件库。-8051 single-chip architecture libraries. Protel has failed to provide Atmel Corporation 8051 MCU architecture libraries, electronic enthusiasts and engineers had to use other companies Singlechip 8051 framework libraries to replace or produce their own libraries. According to the official website of Atmel Corporation (http://www.atmel.com) provided Datasheet paper produced a single-chip Atmel Corporation 8051 framework libraries.
Platform: | Size: 56320 | Author: Shadow | Hits:

[SCMstc-isp-v3.5-not-setup

Description: STC单片机串口下载软件,支持STC系列单片机的下载,以及USB下载-STC Single-chip serial download software, support for SCM STC series download, as well as the USB download
Platform: | Size: 3731456 | Author: 刘朝霞 | Hits:

[source in ebook51

Description: 有关资料的下载链接地址 1. 书中用到的IC芯片的DATASHEET下载地址:http://www.21icsearch.com/so.asp 2. CH341驱动:http://winchiphead.com/download/ 3. STC单片机ISP下载软件:http://www.mcu-memory.com/-http://www.mcu-memory.com/ http://winchiphead.com/download/
Platform: | Size: 3051520 | Author: zhan | Hits:

[SCMmcu-com

Description: STC单片机的几种,通讯方式的实验,方便参考.-Several STC microcontroller, means of communication experiment.
Platform: | Size: 27648 | Author: 田红峰 | Hits:

[SCMdouble_uart485

Description: 双串口STC12T5A16S2单片机完成和服务器的通讯,以及对485从机的轮询监视.-double serial com !
Platform: | Size: 67584 | Author: lvben | Hits:

[SCMserial-communicate

Description: 功能简介: 晶振跳至11.0592左边,LCD/lED跳至上方。 上位机可采用上位机软件\ 安装湘灵版串行通信程序,下载试验程序。点击上位机软件的数值,在单片机的数码管上相应的显示;也可以用串口助手选择9600频率发送数据,注意串口调试助手发送数据为16进制发送时候数据要写两位数,然后点击发送,或者自动发送。两个软件只能开一个,因为公用一个com口 如果是stc单片机用户,在用串口下载程序之前,请务必要关闭这两个软件,否则因为占用COM口而造成程序无法下载,后续程序不另外再次强调。-Features: Jump 11.0592 crystal left, LCD/lED skip to the top. PC PC software can be used \ install Xiang Ling Edition serial communication program, download the test program. Click the value PC software in the microcontroller on the corresponding digital display assistant can also select the 9600 frequency of the serial transmit data, note the serial debugging assistant for 16 to send data when the data sent to write two-digit hexadecimal, and then click Send , or automatically sent. Two software can only open one, because a com port utility If stc MCU users, with serial download, be sure to close these two software, or as a result of occupation of COM port program can not download, follow-up program is not another re-emphasized.
Platform: | Size: 411648 | Author: 孙俊 | Hits:

[SCMserial-communicate2

Description: 功能简介: 晶振跳至11.0592左边,LCD/lED跳至上方。 上位机可采用上位机软件\ 安装湘灵版串行通信程序,下载试验程序。点击上位机软件的数值,在单片机的数码管上相应的显示;也可以用串口助手选择9600频率发送数据,注意串口调试助手发送数据为16进制发送时候数据要写两位数,然后点击发送,或者自动发送。两个软件只能开一个,因为公用一个com口 如果是stc单片机用户,在用串口下载程序之前,请务必要关闭这两个软件,否则因为占用COM口而造成程序无法下载,后续程序不另外再次强调-Features: Jump 11.0592 crystal left, LCD/lED skip to the top. PC PC software can be used \ install Xiang Ling Edition serial communication program, download the test program. Click the value PC software in the microcontroller on the corresponding digital display assistant can also select the 9600 frequency of the serial transmit data, note the serial debugging assistant for 16 to send data when the data sent to write two-digit hexadecimal, and then click Send , or automatically sent. Two software can only open one, because a com port utility If stc MCU users, with serial download, be sure to close these two software, or as a result of occupation of COM port program can not download, follow-up program is not another re-emphasized.
Platform: | Size: 520192 | Author: 孙俊 | Hits:

[SCMele_danpjimokuai

Description: elecfans.com-单片机典型模块设计实例导航源代码-elecfans.com-chip module design typical example source code navigation. rar
Platform: | Size: 92160 | Author: onejacky | Hits:

[SCMsine-wave

Description: 单片机实现两路正弦波 运用STC单片机的PCA模块实现的正弦波 可以调频、调幅、调相、调载波。 对初学者有很大的帮助,如有问题,可发邮件至xiaokuan133@163.com-The use of STC SCM PCA module to achieve the sine wave frequency modulation, amplitude modulation, phase modulation, the modulated carrier. A great help for beginners, any questions, please email xiaokuan133@163.com
Platform: | Size: 70656 | Author: xiaokuan | Hits:

[ARM-PowerPC-ColdFire-MIPS232-FOR-COM

Description: 串口模拟实验,初学者使用,在STC串口运用中很多,可以直接调用函数-The serial simulation experiments, beginners, STC serial use many functions can be called directly
Platform: | Size: 3072 | Author: jiuganl | Hits:

[Com Portcom

Description: 实现STC单片机的串口通信!已经通过串口助手测试成功!-MCU serial communication!
Platform: | Size: 6144 | Author: JHJ | Hits:

[SCMcom

Description: STC15系列双串口MODBUS通信,公用寄存器。-MODBUS for STC MCU WITH C51
Platform: | Size: 72704 | Author: xuechao | Hits:

[SCMcom

Description: 电脑串口接收DS18B20温度测试程序 1、程序说明: 该例程演示了单片机采集温度,并将温度值 发送到电脑的测试程序, 2、实验操作 1、将跳线插座J11的跳线帽调至TDQ端。 2、将跳线插座J28的跳线帽跳到TxD1和RxD1。 打开STC-ISP下载软件中的串口助手,选择相应串口号, 选择波特率9600,8位数据位,1位停止位,无校验。 点打开串口 接收缓冲区选择“文本模式” 发送缓冲区选择“文本模式” - PC serial port to receive DS18B20 temperature test program 1. Program Description: This example demonstrates the single-chip collecting temperature and the temperature value Sent to the computer test program, 2, experimental operation 1, the jumper socket J11 jumper cap adjusted TDQ end. 2, the jumper socket J28 jumpers to jump TxD1 and RxD1. Open the STC-ISP download software serial assistant, the corresponding serial number, Select the baud rate of 9600, 8 data bits, 1 stop bit, no parity. Point to open the serial port receive buffer Text Mode Transmit Buffer Select Text Mode
Platform: | Size: 65536 | Author: 科恩电子 | Hits:

[SCMSTC-VUart

Description: 51单片机程序,用端口与定时器模拟串口,全异步通信!-51 use port and timer virtual com.
Platform: | Size: 21504 | Author: 曾伟峰 | Hits:

[SCM20170327

Description: STC双串口,内有延时,双串口定义,按钮扫描,外部中断 等功能;欢迎前来交流与探讨-STC COM TWO
Platform: | Size: 43008 | Author: 张探 | Hits:
« 12 »

CodeBus www.codebus.net