STC12C5A60S2系列工作电压:5.5V-3.3V(5V单片机)
STC12LE5A60S2系列工作电压:3.6V-2.2V(3V单片机)
- search baidupan, 51单片机资料_我的光盘.iso
- https://www.cnblogs.com/rain-blog/p/how-to-set-51-environment-in-linux.html
- http://sdcc.sourceforge.net/snap.php#Linux
- gSTCISP
- http://osdn.jp/projects/sfnet_gstcisp/releases/?fulllist=1
- https://github.com/RainMark/stcflash.git
- https://www.exploreembedded.com/wiki/8051_Development_Board_Setup
- rtxtiny
- https://www.electroschematics.com/11099/at89s52-minimum-development-board-8051-tutorial-2/
- 基于单片机的万年历设计
- http://www.doc88.com/p-4015132597462.html
- search baidupan 基于单片机的万年历设计.doc
- 精选单片机设计与制作30例
- 云龙51单片机视频教程 - 如何学好单片机
- https://chuanke.baidu.com/v2844297-112176-235940.html
- emu8051
- https://github.com/jarikomppa/emu8051
- http://sol.gfxile.net/8051.html
- (baidupan) emu8051_072.zip
- STC15W408AS: 我爱电子, 8K Flash, 512 SRAM, 5K EPPROM, 26 I/O, 1 UART
- STC15W404AS: DIY乐园, 4K Flash, 512 SRAM, 9K EPPROM, 26 I/O, 1 UART
- STC15F204EA: 上升沿, 4K Flash, 256 SRAM, 1K EPPROM, 26 I/O, 0 UART
- 《STC15增强型8051单片机C语言编程与应用》
- 《MCS-51单片机C语言编程100例》
- 3.3V, 220R, (3.3-1.63) / 0.008 = 208.75
Mastering_the_Raspberry_Pi.pdf, Chapter 12, P.128 - 5V, 200R - 300R, (5.0-3.2) / 0.01 = 180
http://www.21ic.com/calculator/LEDfaguang.htm
- P3.0=RxD
- P3.1=TxD
数字万用表
(search biadupan) lock_v3.rar
https://gitee.com/weimingtom/wmt_51
(search baidupan) DS1302实时时钟模块.rar
价格6元, 不需要外部时钟电路(晶振)
http://www.stcmcudata.com/datasheet/stc/STC-AD-PDF/STC15.pdf
left bottom 3: 5V
left bottom 1: GND
right bottom 1: RxD
right bottom 2: TxD
http://www.51hei.com/mcu/1377.html
D:\Program Files\Labcenter Electronics\Proteus 7 Professional\SAMPLES\VSM for 8051\C51 Calculator\
(search baidupan) n76e003_led_v2.rar
https://blog.csdn.net/znmdwahaha/article/details/48597643
http://www.waveshare.net/wiki/CY7C68013A_USB_Board_(mini)
CY7C68013A
https://github.com/MCU-ZHISHAN-IoT/HML_FwLib_STC89
https://miaowlabs.com/wiki/Mwbalanced/setup-environment.html
https://github.com/MiaowLabs/MWbalanced-firmware-none
- 我试下用MCS51编译51单片机汇编程序,还真能编译出来——不过不推荐用,
因为这个工具链只能用于DOS环境——它的过程大概是这样,通过ASM51生成OBJ文件,
然后通过RL51链接成无后缀的执行文件(带有头部和尾部信息),
最后通过OH生成hex文件(可以通过hexbin转换回去bin文件)。
也就是说,类似于linux的单片机程序,也是会生成一个目标文件,
但是带有头部和尾部的多余字节,需要用别的办法去掉,这里用到的OH这个程序,
意思可能是指object to hex,它甚至可以绕过RL51这个程序直接转换obj后缀文件,
似乎效果也是一样的