-
TC35 debugging notes, recorded some of TC35 debug parameters, single
TC35调试笔记,记录了TC35的部分调试参数,单片机控制GSM模块TC35的方法,发送短信息和接收短信息(TEXT模式),关于PDU格式的短信息发送和接收,详细的中文AT指令集,及其单片机控制tc35的程序。-TC35 debugging notes, recorded some of TC35 debug parameters, single-chip GSM module TC35 control methods, send text messages and receive text messages (TEXT mode), on the PDU format for sending and receiving text messages detailing the Chinese AT instruction set , and its single-chip control procedures TC35.
- 2022-02-14 03:19:40下载
- 积分:1
-
基于MSC51的数字钟。采用PCF8563作为日历芯片,ZLG7290显示和键盘控制。具有5个闹钟源。同时可以修改报时时间和报时音效和LED灯效。...
基于MSC51的数字钟。采用PCF8563作为日历芯片,ZLG7290显示和键盘控制。具有5个闹钟源。同时可以修改报时时间和报时音效和LED灯效。-MSC51-based digital clock. PCF8563 chip used as a calendar, ZLG7290 display and keyboard control. Clock source has a 5. At the same time, time can be amended time and time efficient audio and LED lamps.
- 2022-04-10 00:58:25下载
- 积分:1
-
240x128液晶驱动程序(T6963控制器)
240x128液晶驱动程序(T6963控制器)-240x128 LCD driver (T6963 controller)
- 2022-07-02 11:29:36下载
- 积分:1
-
mcu_PPP in a microcontroller to achieve PPP Elaborates on. Rar
mcu_PPP在一个单片机上实现PPP协议详解.rar-mcu_PPP in a microcontroller to achieve PPP Elaborates on. Rar
- 2022-03-16 08:09:30下载
- 积分:1
-
本文以51单片机为例介绍如何扩展USB接口进行对U盘的读写,并详细介绍FAT16、FAT32文件系统的细节以及如何编码实现单片机对文件系统的常用操作,顺带提到一...
本文以51单片机为例介绍如何扩展USB接口进行对U盘的读写,并详细介绍FAT16、FAT32文件系统的细节以及如何编码实现单片机对文件系统的常用操作,顺带提到一点关于U盘兼容性问题的解决经验。在这里单片机是host,U盘是slave。-In this paper, single-chip microcomputer 51 as an example on how to expand the USB interface on the U disk read and write, and details on FAT16, FAT32 file system and how to encode the details of the realization of single-chip microcomputer used for file system operations, mentioned in passing that on U disk experience compatibility problems. Here is a single-chip host, U disk is a slave.
- 2022-02-20 12:31:46下载
- 积分:1
-
C51单片机与PC机串行通信源程序,现与大家分享
C51单片机与PC机串行通信源程序,现与大家分享-C51 MCU and PC serial communication source, is to share with you
- 2022-03-29 13:59:06下载
- 积分:1
-
PC and communication between the microcontroller, very easy to read you will!
上位机与单片机之间的通信,非常的容易,看了你也便会!-PC and communication between the microcontroller, very easy to read you will!
- 2023-07-24 12:50:03下载
- 积分:1
-
档案包含OLED液晶驱动,单片机模型vgg12864,LCD…
该压缩包包含了型号为VGG12864的OLED液晶的单片机驱动程序,液晶使用说明以及字模生成软件。该工程对应单片机型号为Motorola的MC68HC908GZ32,只需在头文件中对I/O简单配置后即可使用与其他任何型号的单片机-The archive contains the model VGG12864 of OLED LCD driver, microcontroller, LCD instructions, as well as matrix generation software. The project SCM model corresponds to Motorola" s MC68HC908GZ32, just in the header file of the I/O simple configuration can be used with any other type of MCU
- 2023-05-21 07:20:03下载
- 积分:1
-
89S52 increase USBD12 simulation of a U
89S52加USBD12模拟的一个U盘(源码+原理图+实物照片)
Computer00 发表于 2006-3-3 14:09:00
USB-D12文件包下载.rar
这是一个用89S52加PDIUSBD12模拟的一个U盘,里面涉及到USB接口,USB大容量存储设备,FAT16文件系统等内容。插入电脑后,可显示移动磁盘盘符及一个文本文件。
需要说明一下的是,这个包中的原理图,IDE接口部分、74HC573、以及RS232串口等部分,是作为这个实验板的一部分。在这个模拟U盘的程序中,是没有用到的。在下一个“移动硬盘”的例子中,就用到了IDE接口跟74HC573了。至于RS232,那时笔者在调试程序时用的。如果您不需要通过串口调试程序,RS232部分可以不管它-89S52 increase USBD12 simulation of a U-Disk (OSS diagram kind photos) Comput. er00 published in 2006-3-3 14:09 : 00 USB-D12 package downloaded. rar This is a plus with 89S52 simulation PDIUSBD12 of a U disk, which relate to the USB interface, USB mass storage devices, and FAT16 file system and so forth. Insert the computer, can show that the mobile disk drive and a text file. Need to point out that this is a package of drawings, IDE interface, 74HC573. and RS232 serial port as part of the experiment as part of the plate. In this simulation U disk process is not used in the. Next a "mobile hard" cases, the option of the IDE int
- 2022-03-18 13:32:09下载
- 积分:1
-
单片机编程的bcd码和hex码的互换,BCD2HEX
例子:
c=BCD2HEX(0x255) //255 转成HEX为0xff
c=HE...
单片机编程的bcd码和hex码的互换,BCD2HEX
例子:
c=BCD2HEX(0x255) //255 转成HEX为0xff
c=HEX2BCD(0xff) //0xff 转成BCD码为 2-microcontroller programming bcd yards and hex code swap BCD2HEX example : c = BCD2HEX (0x255)// 255 to HEX conversion c = 0xff HEX2BCD (0xff)// 0xff conversion of 255 BCD
- 2023-02-28 18:45:03下载
- 积分:1