代码搜索:串行端口
找到约 10,000 项符合「串行端口」的源代码
代码结果 10,000
www.eeworm.com/read/192058/8409352
c pc_115k.c
//115.2k串行口通信程序,校验方式为简单双向校验,
//而且是必要的,因为任何采用中断、crc等的方法
//均很难保证速度和避免错误.
//总体速度5KB/秒
//单片机程序
//使用22.1184晶振
unsigned char time,b_break,b_break_3;
//35.555ms
void int_t0(void) interrupt 1 {
www.eeworm.com/read/391291/8411556
c pc_115k.c
//115.2k串行口通信程序,校验方式为简单双向校验,
//而且是必要的,因为任何采用中断、crc等的方法
//均很难保证速度和避免错误.
//总体速度5KB/秒
//单片机程序
//使用22.1184晶振
unsigned char time,b_break,b_break_3;
//35.555ms
void int_t0(void) interrupt 1 {
www.eeworm.com/read/188038/8577760
plg main.plg
礦ision2 Build Log
Project:
D:\已完成\单片机语言C51典型应用\单片机C51典型应用设计代码\第5章串行口\5-2\main.uv2
Project File Date: 08/15/2005
Output:
www.eeworm.com/read/188038/8577786
plg 5.4.plg
礦ision2 Build Log
Project:
D:\已完成\单片机语言C51典型应用\单片机C51典型应用设计代码\第5章串行口\5-4\5.4.uv2
Project File Date: 08/24/2005
Output:
www.eeworm.com/read/188038/8577882
plg withpc.plg
礦ision2 Build Log
Project:
D:\已完成\单片机语言C51典型应用\单片机C51典型应用设计代码\第5章串行口\5-3\withpc.uv2
Project File Date: 08/15/2005
Output:
www.eeworm.com/read/188038/8577926
plg 5.1.plg
礦ision2 Build Log
Project:
D:\已完成\单片机语言C51典型应用\单片机C51典型应用设计代码\第5章串行口\5-1\5.1.uv2
Project File Date: 08/24/2005
Output:
www.eeworm.com/read/287811/8667903
c pc_115k.c
//115.2k串行口通信程序,校验方式为简单双向校验,
//而且是必要的,因为任何采用中断、crc等的方法
//均很难保证速度和避免错误.
//总体速度5KB/秒
//单片机程序
//使用22.1184晶振
unsigned char time,b_break,b_break_3;
//35.555ms
void int_t0(void) interrupt 1 {
www.eeworm.com/read/430417/8748187
c pc.c
#include
#include "led.h"
void pc_init(void)
{
TMOD = 0x20; // 定时器1工作于8位自动重载模式, 用于产生波特率
TH1 = 0xF3; // 波特率2400
TL1 = 0xF3;
SCON = 0x50; // 设定串行口工作方式
PCON = 0x00;
www.eeworm.com/read/286215/8782581
c main.c
//UARTDemo Code Edit by xinqiang 20050607
//UART 波特率设置为9600
//IOA0~7接LED发光管,
//接收到一个零的数据则认为是接收到了有效数据,这时在IOA的低八位口输出接收到的数据
//
#include "SPCE061V004.h"
extern unsigned int uiRS_Buff; //串行口接收数据
www.eeworm.com/read/385323/8809547
c pc_115k.c
//115.2k串行口通信程序,校验方式为简单双向校验,
//而且是必要的,因为任何采用中断、crc等的方法
//均很难保证速度和避免错误.
//总体速度5KB/秒
//单片机程序
//使用22.1184晶振
unsigned char time,b_break,b_break_3;
//35.555ms
void int_t0(void) interrupt 1 {