STC12C5A60S2单片机是一款功用比较强壮的单片机,它具有两个全双工串行通讯接口,串口1的功用及操作与传统51单片机串行口相同;特别的是STC12C5A60S2单片机内部有一个独立波特率发生器,串口1能够运用定时器1作为波特率发生器,也能够运用独立波特率发生器作为波特率发生器;而串口2只能运用独立波特率发生器作为波特率发生器。
下面是一段双串口通讯的程序:
/***********************************************************************时刻:2012.11.24芯片:STC12C5A60S2晶振:22.1184MHz 波特率:9600bps引脚界说:串行口1: 发送————TxD/P3.1; 接纳————RxD/P3.0串行口2: 发送————TxD2/P1.3;接纳————RxD2/P1.2功用描绘:STC12双串口通讯(中止方法)当串行口1接纳数据后,将此数据由串行口2发送出去当串行口2接纳数据后,将此数据由串行口1发送出去***********************************************************************/#include<12C5A60S2.h>#define S2RI 0x01 //串口2接纳中止请求标志位#define S2TI 0x02 //串口2发送中止请求标志位unsigned char flag1,flag2,temp1,temp2;/****************串行口初始化函数****************/void InitUART(void){TMOD = 0x20; //定时器1作业在方法2 8位主动重装SCON = 0x50; //串口1作业在方法1 10位异步收发 REN=1答应接纳TH1 = 0xFA; //定时器1初值TL1 = TH1;TR1 = 1; //定时器1开端计数EA =1; //开总中止ES =1; //开串口1中止S2CON = 0x50; //串口2作业在方法1 10位异步收发 S2REN=1答应接纳BRT = 0xFA; //独立波特率发生器初值AUXR = 0x10; //BRTR=1 独立波特率发生器开端计数IE2 =0x01; //开串口2中止 ES2=1}/****************串行口1发送****************/void UART_1SendOneByte(unsigned char c){SBUF = c;while(!TI); //若TI=0,在此等候TI = 0; }/****************串行口2发送****************/void UART_2SendOneByte(unsigned char c){S2BUF = c;while(!(S2CON&S2TI)); //若S2TI=0,在此等候S2CON&=~S2TI; //S2TI=0}/*****************主函数******************/void main(void){InitUART(); //串行口初始化while(1){//假如串口1接纳到数据,将此数据由串口2发送if(flag1==1){flag1=0;UART_2SendOneByte(temp1);}//假如串口2接纳到数据,将此数据由串口1发送if(flag2==1){flag2=0;UART_1SendOneByte(temp2);}}}/************串行口1中止处理函数*************/void UART_1Interrupt(void) interrupt 4{if(RI==1){RI=0;flag1=1;temp1=SBUF;}}/************串行口2中止处理函数*************/void UART_2Interrupt(void) interrupt 8{if(S2CON&S2RI){S2CON&=~S2RI;flag2=1;temp2=S2BUF;} }12C5A60S2.h的头文件如下://--------------------------------------------------------------------------------//新一代 1T 8051系列 单片机内核特别功用寄存器 C51 Core SFRs// 7 6 5 4 3 2 1 0 Reset Valuesfr ACC = 0xE0; //Accumulator 0000,0000sfr B = 0xF0; //B Register 0000,0000sfr PSW = 0xD0; //Program Status Word CY AC F0 RS1 RS0 OV F1 P 0000,0000//-----------------------------------sbit CY = PSW^7;sbit AC = PSW^6;sbit F0 = PSW^5;sbit RS1 = PSW^4;sbit RS0 = PSW^3;sbit OV = PSW^2;sbit P = PSW^0;//-----------------------------------sfr SP = 0x81; //Stack Pointer 0000,0111sfr DPL = 0x82; //Data Pointer Low Byte 0000,0000sfr DPH = 0x83; //Data Pointer High Byte 0000,0000//--------------------------------------------------------------------------------//新一代 1T 8051系列 单片机系统管理特别功用寄存器// 7 6 5 4 3 2 1 0 Reset Valuesfr PCON = 0x87; //Power Control SMOD SMOD0 LVDF POF GF1 GF0 PD IDL 0001,0000// 7 6 5 4 3 2 1 0 Reset Valuesfr AUXR = 0x8E; //Auxiliary Register T0x12 T1x12 UART_M0x6 BRTR S2SMOD BRTx12 EXTRAM S1BRS 0000,0000//-----------------------------------sfr AUXR1 = 0xA2; //Auxiliary Register 1 - PCA_P4 SPI_P4 S2_P4 GF2 ADRJ - DPS 0000,0000/*PCA_P4:0, 缺省PCA 在P1 口1,PCA/PWM 从P1 口切换到P4 口: ECI 从P1.2 切换到P4.1 口,PCA0/PWM0 从P1.3 切换到P4.2 口PCA1/PWM1 从P1.4 切换到P4.3 口SPI_P4:0, 缺省SPI 在P1 口1,SPI 从P1 口切换到P4 口: SPICLK 从P1.7 切换到P4.3 口MISO 从P1.6 切换到P4.2 口MOSI 从P1.5 切换到P4.1 口SS 从P1.4 切换到P4.0 口S2_P4: 0, 缺省UART2 在P1 口1,UART2 从P1 口切换到P4 口: TxD2 从P1.3 切换到P4.3 口RxD2 从P1.2 切换到P4.2 口GF2: 通用标志位ADRJ:0, 10 位A/D 转化成果的高8 位放在ADC_RES 寄存器, 低2 位放在ADC_RESL 寄存器1,10 位A/D 转化成果的最高2 位放在ADC_RES 寄存器的低2 位, 低8 位放在ADC_RESL 寄存器DPS: 0, 运用缺省数据指针DPTR01,运用另一个数据指针DPTR1*///-----------------------------------sfr WAKE_CLKO = 0x8F; //附加的 SFR WAK1_CLKO/*7 6 5 4 3 2 1 0 Reset ValuePCAWAKEUP RXD_PIN_IE T1_PIN_IE T0_PIN_IE LVD_WAKE _ T1CLKO T0CLKO 0000,0000Bb7 - PCAWAKEUP : PCA 中止可唤醒 powerdown。b6 - RXD_PIN_IE : 当 P3.0(RXD) 下降沿置位 RI 时可唤醒 powerdown(有必要翻开相应中止)。b5 - T1_PIN_IE : 当 T1 脚下降沿置位 T1 中止标志时可唤醒 powerdown(有必要翻开相应中止)。b4 - T0_PIN_IE : 当 T0 脚下降沿置位 T0 中止标志时可唤醒 powerdown(有必要翻开相应中止)。b3 - LVD_WAKE : 当 CMPIN 脚低电平置位 LVD 中止标志时可唤醒 powerdown(有必要翻开相应中止)。b2 - b1 - T1CLKO : 答应 T1CKO(P3.5) 脚输出 T1 溢出脉冲,Fck1 = 1/2 T1 溢出率b0 - T0CLKO : 答应 T0CKO(P3.4) 脚输出 T0 溢出脉冲,Fck0 = 1/2 T1 溢出率*///-----------------------------------sfr CLK_DIV = 0x97; //Clock Divder - - - - - CLKS2 CLKS1 CLKS0 xxxx,x000//-----------------------------------sfr BUS_SPEED = 0xA1; //Stretch register - - ALES1 ALES0 - RWS2 RWS1 RWS0 xx10,x011/*ALES1 and ALES0:00 : The P0 address setup time and hold time to ALE negative edge is one clock cycle01 : The P0 address setup time and hold time to ALE negative edge is two clock cycles.10 : The P0 address setup time and hold time to ALE negative edge is three clock cycles. (default)11 : The P0 address setup time and hold time to ALE negative edge is four clock cycles.RWS2,RWS1,RWS0:000 : The MOVX read/write pulse is 1 clock cycle. 001 : The MOVX read/write pulse is 2 clock cycles.010 : The MOVX read/write pulse is 3 clock cycles.011 : The MOVX read/write pulse is 4 clock cycles. (default)100 : The MOVX read/write pulse is 5 clock cycles.101 : The MOVX read/write pulse is 6 clock cycles.110 : The MOVX read/write pulse is 7 clock cycles.111 : The MOVX read/write pulse is 8 clock cycles.*///--------------------------------------------------------------------------------//新一代 1T 8051系列 单片机中止特别功用寄存器//有的中止操控、中止标志位分布在其它特别功用寄存器中,这些位在位地址中界说//其间有的位无位寻址才能,请参阅 新一代 1T 8051系列 单片机中文攻略// 7 6 5 4 3 2 1 0 Reset Valuesfr IE = 0xA8; //中止操控寄存器 EA ELVD EADC ES ET1 EX1 ET0 EX0 0x00,0000//-----------------------sbit EA = IE^7;sbit ELVD = IE^6; //低压监测中止答应位sbit EADC = IE^5; //ADC 中止答应位sbit ES = IE^4;sbit ET1 = IE^3;sbit EX1 = IE^2;sbit ET0 = IE^1;sbit EX0 = IE^0;//-----------------------sfr IE2 = 0xAF; //Auxiliary Interrupt - - - - - - ESPI ES2 0000,0000B//-----------------------// 7 6 5 4 3 2 1 0 Reset Valuesfr IP = 0xB8; //中止优先级低位 PPCA PLVD PADC PS PT1 PX1 PT0 PX0 0000,0000//--------sbit PPCA = IP^7; //PCA 模块中止优先级sbit PLVD = IP^6; //低压监测中止优先级sbit PADC = IP^5; //ADC 中止优先级sbit PS = IP^4;sbit PT1 = IP^3;sbit PX1 = IP^2;sbit PT0 = IP^1;sbit PX0 = IP^0;//-----------------------