Location:
Search - x51
Search list
Description: Isp_w78e516_MCU.zip:-----W78E516B单片机的ISP在线下载的MCU端源程序(2500.A.D公司的X51.EXE)-Isp_w78e516_MCU.zip : W78E516B SCM ISP online download MCU-source (2500.A.D company X51.EXE)
Platform: |
Size: 103897 |
Author: 田伯运 |
Hits:
Description: Dsc8610.zip:-------------OV8610+OV681+OV651数码相机源程序(2500.A.D公司的X51.EXE)-Dsc8610.zip potentially OV8610 OV681 OV651 digital cameras source (2500.A.D company X51.EXE)
Platform: |
Size: 202441 |
Author: 田伯运 |
Hits:
Description: 版本:1.0
Target:89S51
程序描述:这个程序利用89X51连接绘图型LCD,然后显示出:-Version : 1.0 Target : devised procedures Description : The program uses 89 X51 graphics link-LCD, then showed :
Platform: |
Size: 28441 |
Author: 王杨鸣 |
Hits:
Description: c compiler user menu for build x51 program
Platform: |
Size: 1374821 |
Author: 王耀彰 |
Hits:
Description: Isp_w78e516_MCU.zip:-----W78E516B单片机的ISP在线下载的MCU端源程序(2500.A.D公司的X51.EXE)-Isp_w78e516_MCU.zip : W78E516B SCM ISP online download MCU-source (2500.A.D company X51.EXE)
Platform: |
Size: 103424 |
Author: 田伯运 |
Hits:
Description: Dsc8610.zip:-------------OV8610+OV681+OV651数码相机源程序(2500.A.D公司的X51.EXE)-Dsc8610.zip potentially OV8610 OV681 OV651 digital cameras source (2500.A.D company X51.EXE)
Platform: |
Size: 201728 |
Author: 田伯运 |
Hits:
Description: 版本:1.0
Target:89S51
程序描述:这个程序利用89X51连接绘图型LCD,然后显示出:-Version : 1.0 Target : devised procedures Description : The program uses 89 X51 graphics link-LCD, then showed :
Platform: |
Size: 28672 |
Author: 王杨鸣 |
Hits:
Description: c compiler user menu for build x51 program
Platform: |
Size: 1374208 |
Author: 王耀彰 |
Hits:
Description: UART library for x51, can be used with any c cross compiler and can be used for X51 uC. I had used keil.
Platform: |
Size: 1024 |
Author: Tiger |
Hits:
Description: Lot of useful routines for Hamradio based applications for Intel x51 platform. Hard to find codes now.
Platform: |
Size: 404480 |
Author: karezo |
Hits:
Description: Work IrDa x51-Work IrDa x51
Platform: |
Size: 16384 |
Author: alex |
Hits:
Description: 关于X51的资料,是一篇详实的综述性文章-Information on the X51, is a detailed review paper
Platform: |
Size: 7702528 |
Author: fiona |
Hits:
Description: simple program to calculate and implement the analog to digital conversion in a x51 architecture based embedded controllers
Platform: |
Size: 20480 |
Author: senthil |
Hits:
Description: 中断初始化
时间初始化
RS232初始化
蜂鸣器初始化
按键初始化
4指示灯初始化
数码管初始化
中断初始化-根据焦点指向,内容自- menudeep_deel_B_jian()
根据焦点指向,内容自+ menudeep_deel_B_jia()
Platform: |
Size: 6144 |
Author: foggoat |
Hits:
Description: Bootloader firmware for x51 and at91xxx microcontrollers, can be easy targetted to other microcontrollers. Supports encryption (RC4 algorithm) of ROM-file. ROM files uploading with X-modem protocol (firmware uploading program for PC is in archive too). Can be used for updating ROM in any microcontroller-based device connected to serial port (via USB-adapter). Uploading can be automatically started if connected computer continuously transmits magic sequence in serial port during device power-on.
Platform: |
Size: 2439168 |
Author: Kirill Frolov |
Hits:
Description: 我做过GBK->Unicode的,直接根据编码对应放置相应的转换后编码才是,直接通过计算就可以定位,何苦还二分法... -gbk unicode program course
u16 gbk2uni(u8 c1,u8 c2)
{
return (c1>=0x81 && c1<=0xfe) && (c2>=0x40 && c2<=0xfe)
?
*( mb_gb2uni_table+ (c1-0x81)*0xbf+ c2-0x40 ) :
0x1fff
}
==============================
//const u32 mb_gb2uni_size = 24066
u16* const mb_gb2uni_table = (u16*)
"\x02\x4e\x04\x4e\x05\x4e\x06\x4e\x0f\x4e\x12\x4e\x17\x4e\x1f\x4e\x20\x4e\x21\x4e\x23\x4e\x26\x4e\x29\x4e\x2e\x4e\x2f\x4e\x31\x4e"
"\x33\x4e\x35\x4e\x37\x4e\x3c\x4e\x40\x4e\x41\x4e\x42\x4e\x44\x4e\x46\x4e\x4a\x4e\x51\x4e\x55\x4e\x57\x4e\x5a\x4e\x5b\x4e\x62\x4e"
Platform: |
Size: 37888 |
Author: kaifa |
Hits:
Description: unicode编程的各种知识
GBK->Unicode的,直接根据编码对应放置相应的转换后编码才是,直接通过计算就可以定位,何苦还二分法...
LZ的表格查起来得多慢呀...不敢想像
==============================
附转换函数如下
-unicode program
u16 gbk2uni(u8 c1,u8 c2)
{
return (c1>=0x81 && c1<=0xfe) && (c2>=0x40 && c2<=0xfe)
?
*( mb_gb2uni_table+ (c1-0x81)*0xbf+ c2-0x40 ) :
0x1fff
}
==============================
//const u32 mb_gb2uni_size = 24066
u16* const mb_gb2uni_table = (u16*)
"\x02\x4e\x04\x4e\x05\x4e\x06\x4e\x0f\x4e\x12\x4e\x17\x4e\x1f\x4e\x20\x4e\x21\x4e\x23\x4e\x26\x4e\x29\x4e\x2e\x4e\x2f\x4e\x31\x4e"
"\x33\x4e\x35\x4e\x37\x4e\x3c\x4e\x40\x4e\x41\x4e\x42\x4e\x44\x4e\x46\x4e\x4a\x4e\x51\x4e\x55\x4e\x57\x4e\x5a\x4e\x5b\x4e\x62\x4e"
Platform: |
Size: 43008 |
Author: rosex |
Hits:
Description: OV8610+OV681+OV651数码相机源程序(2500.A.D公司的X51.EXE)-Dsc8610.zip potentially OV8610 OV681 OV651 digital cameras source (2500.A.D company X51.EXE)
-Dsc8610.zip potentially OV8610 OV681 OV651 digital cameras source (2500.A.D company X51.EXE)
Platform: |
Size: 202752 |
Author: sdfsdf |
Hits:
Description: AMT630A Emulator and Firmware
AMT630A firmware for mini TFT screens
The AMT640A is a relative common video controller chip found in cheap mini TFT screens with composite input.
Those screens are often sold as "car rear view monitor" (or by similar names), although they are essentially fully-fledged portable TVs (minus tuner/speaker, and without advanced inputs like S-video or RGB).
The chip contains a 8031/8051 microprocessor, with firmware stored on an external SPI-bus FLASH memory chip
Platform: |
Size: 156672 |
Author: handy |
Hits: