📄 serial.lst
字号:
C51 COMPILER V7.50 SERIAL 03/28/2007 11:36:56 PAGE 1
C51 COMPILER V7.50, COMPILATION OF MODULE SERIAL
OBJECT MODULE PLACED IN Serial.OBJ
COMPILER INVOKED BY: E:\Program Files\Keil\C51\BIN\C51.EXE Serial.c BROWSE DEBUG OBJECTEXTEND
line level source
1 #include<reg52.h>
2 #include <intrins.h>
3 #include "Define.h"
4 #include "Set.h"
5
6
7 extern _ucdLEDDisplayArray[];
8 extern _LengthOfLEDDisplayArray;
9
10 UCHARIDATA ucidSERIALCounter = 0;
11
12 //////////////////////////////////////////////////////////////////
13 void SerialPortCommunication(void) reentrant interrupt 4 using 3
14 {
15 1
16 1 if(TI)
17 1 {
18 2 TI=0;
19 2
20 2 //if(ucidSERIALCounter < LengthOfLEDDisplayArray)
21 2 {
22 3 SBUF = ucdLEDDisplayArray[ucidSERIALCounter%LengthOfLEDDisplayArray];
23 3 ucidSERIALCounter++;
24 3 }
25 2 //else
26 2 {
27 3 ucidSERIALCounter = 0;
28 3 }
29 2
30 2
31 2 }
32 1 if(RI)
33 1 {
34 2 RI=0;
35 2
36 2
37 2
38 2 //RReceive();
39 2
40 2 //ucdReceiveArray[] = SBUF;
41 2 //t=inRxBuf;t++;
42 2 //if(t==RxBuf+LenRxBuf) t=RxBuf;
43 2 //if(t==outRxBuf) return; //RxBuf Full
44 2 //*inRxBuf=SBUF;
45 2 //inRxBuf=t;
46 2 }
47 1 }
48 //////////////////////////////////////////////////////////////////
MODULE INFORMATION: STATIC OVERLAYABLE
CODE SIZE = 54 ----
CONSTANT SIZE = ---- ----
XDATA SIZE = ---- ----
PDATA SIZE = ---- ----
C51 COMPILER V7.50 SERIAL 03/28/2007 11:36:56 PAGE 2
DATA SIZE = ---- ----
IDATA SIZE = 1 ----
BIT SIZE = ---- ----
END OF MODULE INFORMATION.
C51 COMPILATION COMPLETE. 0 WARNING(S), 0 ERROR(S)
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -