Programming 8051 Microcontroller
Programming 8051 Microcontroller
Registers
DPTR DPH DPL PC PC
; dest = source
;A=72H ;A=r OR 72H ;R4=62H ;B=the content of F9th byte of RAM
Note 1:
MOV A,#72H After instruction MOV MOV A,72H A,72H the content of 72th byte of RAM will replace in Accumulator.
8086
MOV MOV MOV MOV AL,72H AL,r BX,72H AL,[BX]
8051
MOV MOV MOV A,#72H A,#r A,72H
Note 2:
MOV A,R3 MOV A,3
Arithmetic Instructions
ADD A, Source ;A=A+SOURCE
bit bit
C P0.0 P3.7 ACC.2 05
; bit=1 ; bit=0
; CY=1 ;bit 0 from port 0 =1 ;bit 7 from port 3 =1 ;bit 2 from ACCUMULATOR =1 ;set high D5 of RAM loc. 20h
CLR instruction is as same as SETB i.e: CLR C ;CY=0 But following instruction is only for CLR: CLR A ;A=0
ACOE343 - Embedded Real-Time Processor Systems Frederick University 6
SUBB
SETB C SUBB A,R5
A,source ;A=A-source-CY
;CY=1 ;A=A-R5-1
ADC
SETB C ADC
A,source ;A=A+source+CY
;CY=1 A,R5 ;A=A+R5+1
DEC INC
INC DEC DEC
byte byte
R7 A 40H
;byte=byte-1 ;byte=byte+1
; [40]=[40]-1
CPL
Example:
A
MOV CPL MOV ACALL SJMP
;1s complement
A,#55H ;A=01010101 B A P1,A DELAY L01
L01:
CALL
Logic Instructions ANL byte/bit ORL byte/bit XRL byte EXAMPLE: MOV R5,#89H ANL R5,#08H
ACOE343 - Embedded Real-Time Processor Systems Frederick University 9
Rotate Instructions
RR A Accumulator rotate right RL A Accumulator Rotate left RRC A Accumulator Rotate right through the carry. RLC A Accumulator Rotate left through the carry.
ACOE343 - Embedded Real-Time Processor Systems Frederick University 10
Myfile.abs
OH PROGRAM Myfile.hex
11
8k
0000H
32k
1FFFH
8752 AT89C52
7FFFH
12
30H
2FH
Bit-Addressable RAM 20H 1FH 18H 17H 10H 0FH 08H 07H 00H Register Bank 2 (Stack) Register Bank 1 Register Bank 3
Register Bank 0
13
Carry flag Auxiliary carry flag Available to the user for general purpose Register Bank selector bit 1 Register Bank selector bit 0 Overflow flag User define bit Parity flag Set/Reset odd/even parity
CY AC -RS1 RS0 OV -P
RS1 0 0 1 1
RS0 0 1 0 1
Register Bank 0 1 2 3
14
Note: X can be 0 or 1
15
Example: MOV A,#38H ADD A,#2FH 38 +2F ---67 CY=0 AC=1 00111000 +00101111 -------------01100111 P=1
16
Addressing Modes
Immediate Register Direct Register Indirect Indexed
17
18
Example
Write the decimal value 4 on the SSD in the following figure. Switch the decimal point off.
19
MOV MOV
DPTR, A Rm, Rn
20
In other word, the content of register R0 or R1 is sources or target in MOV, ADD and SUBB insructions. Example: Write a program to copy a block of 10 bytes from RAM location sterting at 37h to RAM location starting at 59h. Solution: MOV R0,37h MOV R1,59h MOV R2,10 L1: MOV A,@R0 MOV @R1,A INC R0 INC R1 DJNZ R2,L1
jump
22
Example: Assuming that ROM space starting at 250h contains Hello., write a program to transfer the bytes into RAM locations starting at 40h. Solution: ORG 0 MOV DPTR,#MYDATA MOV R0,#40H L1: CLR A MOVC A,@A+DPTR JZ L2 MOV @R0,A INC DPTR INC R0 SJMP L1 L2: SJMP L2 ;------------------------------------ORG 250H MYDATA: DB Hello,0
END Notice the NULL character ,0, as end of string and how we use the JZ instruction to detect that.
ACOE343 - Embedded Real-Time Processor Systems Frederick University 24
Example: Write a program to get the x value from P1 and send x2 to P2, continuously . Solution: ORG 0 ;code segment MOV DPTR, #TAB1 ;moving data segment to data pointer MOV A,#0FFH ;configuring P1 as input port MOV P1,A L01: MOV A,P1 ;reading value from P1 MOVC A,@A+DPTR MOV P2,A SJMP L01 ;---------------------------------------------------ORG 300H ;data segment TAB1: DB 0,1,4,9,16,25,36,49,64,81 END
25
26
;A=2, B=5
28
Bit-Addressable RAM
20H 1FH 18H 17H 10H 0FH 08H 07H 00H
29
Example: MOV MOV MOV PUSH PUSH PUSH R6,#25H R1,#12H R4,#0F3H 6 1 4
SP=08H
SP=09H
SP=10H
30
Example (cont.)
POP POP POP
0BH
0AH 09H 08H F3 12 25
4 1 6
0BH
0AH 09H 08H 12
0BH
0AH 09H 08H 25
0BH
0AH 09H 08H Start SP=07H
25
SP=10H
SP=09H
SP=08H
31
Example (correct)
RLC A ;you can only rotate A PUSH A ;saving A and B on the stack before PUSH B ;calling function Call function POP B ;restoring B POP A ;and A (POP in reverse order) DIV AB ; A has the wrong value!!!!! function: MOV A, #5 ;values are for example sake MOV B, #10 MUL AB ;you can only multiply on A RET
33
Saving PSW
The Program Status Word registers contains flags that are often important for correct program flow You can push PSW on the stack before calling a function ADD A, R0 PUSH PSW PUSH A ;saving A and R0 on the stack before PUSH R0 ;calling function Call function POP R0 ;restoring R0 POP A ;and A (POP in reverse order) POP PSW JC loop ;If this means the carry from the ;function then dont push PSW function: MOV A, #5 ;values are for example sake ADD A, R2 ;the flags are set according to ADD result RET 34 ACOE343 - Embedded Real-Time Processor Systems Frederick University
35
Jump if A=0
Jump if A/=0 Decrement and jump if A/=0 Jump if A/=byte Jump if byte/=#data Jump if CY=1 Jump if CY=0
JB
JNB JBC
Jump if bit=1
Jump if bit=0 Jump if bit=1 and clear bit
36
CJNE , JNC
Exercise: Write a program that compare R0,R1. If R0>R1 then send 1 to port 2, else if R0<R1 then send 0FFh to port 2, else send 0 to port 2.
38
CALL Instructions
Another control transfer instruction is the CALL instruction, which is used to call a subroutine. LCALL(long call) In this 3-byte instruction, the first byte is the opcode an the second and third bytes are used for the address of target subroutine. Therefore, LCALL can be used to call subroutines located anywhere within the 64K byte address space of the 8051.
ACOE343 - Embedded Real-Time Processor Systems Frederick University 39
Example
A ORG 0H VAL1 EQU 05H MOV R5,#25H LOOP: MOV R7,#VAL1 MOV ADD ADD A,#0 A,R5 A,#12H B R5 R7 Address Data
RRC A
DJNZ A, LOOP SETB ACC.3 CLR A
Port 1 is denoted by P1. P1.0 ~ P1.7 We use P1 as examples to show the operations on ports. P1 as an output port (i.e., write CPU data to the external pin) P1 as an input port (i.e., read pin data into CPU bus)
42
A Pin of Port 1
Read latch
TB2
Vcc
Load(L1)
P1.X
Clk Q
P1.X pin M1
P0.x
8051 IC
43
44
Tri-state Buffer
Output Input
Low
Highimpedance (open-circuit)
45
Vcc
Load(L1) 2. output pin is
Vcc 1 0
M1
P1.X
Clk Q
P1.X pin
output 1
8051 IC
46
Vcc
Load(L1) 2. output pin is
ground 0 1
M1
P1.X
Clk Q
P1.X pin
output 0
8051 IC
47
BACK:
Vcc
Q
P1.X
P1.X pin
Write to latch
Clk
M1
TB1 Read pin 3. Read pin=1 Read latch=0 Write to latch=1 8051 IC ACOE343 - Embedded Real-Time Processor Systems Frederick University 50
Vcc
Q
P1.X
P1.X pin
Write to latch
Clk
M1
TB1 Read pin 3. Read pin=1 Read latch=0 Write to latch=1 8051 IC ACOE343 - Embedded Real-Time Processor Systems Frederick University 51
BACK:
52
Reading Latch
Exclusive-or the Port 1 MOV P1,#55H ;P1=01010101 ORL P1,#0F0H ;P1=11110101 1. The read latch activates TB2 and bring the data from the Q latch into CPU. Read P1.0=0 2. CPU performs an operation. This data is ORed with bit 1 of register A. Get 1. 3. The latch is modified. D latch of P1.0 has value 1. 4. The result is written to the external pin. External pin (pin 1: P1.0) has value 1.
ACOE343 - Embedded Real-Time Processor Systems Frederick University 54
Vcc
Q
P1.X
0 M1
Clk
55
Read-modify-write Feature
Read-modify-write Instructions Table C-6 This features combines 3 actions in a single instruction 1. CPU reads the latch of the port 2. CPU perform the operation 3. Modifying the latch 4. Writing to the pin Note that 8 pins of P1 work independently.
56
57
Read-Modify-Write Instructions
Mnemonics
ANL ORL XRL JBC PX.Y, TARGET CPL INC DEC DJNZ PX, TARGET
Example
ANL P1,A ORL P1,A XRL P1,A JBC P1.1, TARGET CPL P1.2 INC P1 DEC P1 DJNZ P1,TARGET
MOV PX.Y,C
CLR PX.Y SETB PX.Y
MOV P1.2,C
CLR P1.3 SETB P1.4
58
59
Other Pins
P1, P2, and P3 have internal pull-up resisters. P1, P2, and P3 are not open drain. P0 has no internal pull-up resistors and does not connects to Vcc inside the 8051. P0 is open drain. Compare the figures of P1.X and P0.X. However, for a programmer, it is the same to program P0, P1, P2 and P3. All the ports upon RESET are configured as output.
60
A Pin of Port 0
Read latch
TB2
P1.X
Clk Q
P0.X pin M1
P1.x
8051 IC
61
62
P0.0 DS5000 P0.1 P0.2 8751 P0.3 P0.4 8951 P0.5 P0.6 P0.7
Port 0
63
64
74LS373
PSEN ALE P0.0 P0.7
G D
74LS373
OE OC A0 A7
D0 EA P2.0 P2.7 D7
A8 A15
ACOE343 - Embedded Real-Time Processor Systems Frederick University
8051
ROM
65
A7
A8 A12
8051
ACOE343 - Embedded Real-Time Processor Systems Frederick University
ROM
66
74LS373
OE OC A0 A7
Address
8051
ROM
67
ALE Pin
The ALE pin is used for de-multiplexing the address and data by connecting to the G pin of the 74LS373 latch.
When ALE=0, P0 provides data D0-D7. When ALE=1, P0 provides address A0-A7. The reason is to allow P0 to multiplex address and data.
68
69
Function
RxD TxD INT0 INT1 T0 T1 WR RD
Pin
10 11 12 13 14 15 16 17
71
Generating Delays
You can generate short delays using a register and incrementing or decrementing its value Example: mov r1, #0ah loop: djnz r1, loop How much delay is that?
Djnz is a 2-byte instruction it takes two machine cycles One machine cycle is 1/12 of the system clock period For a 12 MHz system clock that is: Machine cycle = 12/12 = 1 MHz Machine period = 1/(1 MHz) = 10^(-6) s = 1 s Loop time = 10*2*1 s = 20 s
ACOE343 - Embedded Real-Time Processor Systems Frederick University 72
73
74
TMOD Register:
TCON Register:
TF1: Timer 1 overflow flag. TR1: Timer 1 run control bit. TF0: Timer 0 overflag. TR0: Timer 0 run control bit. IE1: External interrupt 1 edge flag. IT1: External interrupt 1 type flag. IE0: External interrupt 0 edge flag. IT0: External interrupt 0 type flag.
ACOE343 - Embedded Real-Time Processor Systems Frederick University 76
Timer Modes
M1-M0: 00 (Mode 0) 13-bit mode (not commonly used) M1-M0: 01 (Mode 1) - 16-bit timer mode M1-M0: 10 (Mode 2) - 8-bit auto-reload mode M1-M0: 11 (Mode 3) Split timer mode
78
81
Interrupt :
85
EA : Global enable/disable.
--: Undefined.
ET2 :Enable Timer 2 interrupt. ES :Enable Serial port interrupt. ET1 :Enable Timer 1 interrupt. EX1 :Enable External 1 interrupt. ET0 : Enable Timer 0 interrupt. EX0 : Enable External 0 interrupt.
ACOE343 - Embedded Real-Time Processor Systems Frederick University 86
Interrupt handling
8051 Interrupt Vector Table
87
ORG 0003H ; external interrupt 0 vector . ; interrupt handler code for external interrupt 0 RETI
ORG 0013H ; external interrupt 1 vector . ;interrupt handler code for external interrupt 1 RETI ORG 0030H ; main program main:SETB IT0 ; set external interrupt 0 as edge activated SETB IT1 ; set external interrupt 1 as edge activated SETB EX0 ; enable external interrupt 0 SETB EX1 ; enable external interrupt 1 SETB EA ; global interrupt enable
ACOE343 - Embedded Real-Time Processor Systems Frederick University 88
Examples
Write a 8051 assembly program that matches 8 switches with 8 LEDs Write a 8051 assembly program that uses a two-digit SSD to display the temperature as input from an ADC. Assume that the 05V range corresponds to 0-50 C. The ADC uses RD, WR and INT pins.
89
Restrictions
Depending on the compiler, some restrictions to the high-level language may apply
ACOE343 - Embedded Real-Time Processor Systems Frederick University 91
Keil C keywords
data/idata: Description: The variable will be stored in internal data memory of controller. example: unsigned char data x; //or unsigned char idata y; bdata: Description: The variable will be stored in bit addressable memory of controller. example: unsigned char bdata x; //each bit of the variable x can be accessed as follows x ^ 1 = 1; //1st bit of variable x is set x ^ 0 = 0; //0th bit of variable x is cleared xdata: Description: The variable will be stored in external RAM memory of controller. example: ACOE343 unsigned char xdata x; - Embedded Real-Time Processor Systems Frederick University 92
Keil C keywords
code: Description: This keyword is used to store a constant variable in code and not data memory. example: unsigned char code str="this is a constant string"; _at_: Description: This keyword is used to store a variable on a defined location in ram. example: CODE: unsigned char idata x _at_ 0x30; // variable x will be stored at location 0x30 // in internal data memory sbit: Description: This keyword is used to define a special bit from SFR (special function register) memory. example: sbit Port0_0 = 0x80; // Special bit with name Port0_0 is defined at address 0x80
93
Keil C keywords
sfr: Description: sfr is used to define an 8-bit special function register from sfr memory. example: sfr Port1 = 0x90; // Special function register with name Port1 defined at addrress 0x90 sfr16: Description: This keyword is used to define a two sequential 8-bit registers in SFR memory. example: sfr16 DPTR = 0x82; // 16-bit special function register starting at 0x82 // DPL at 0x82, DPH at 0x83
using: Description: This keyword is used to define register bank for a function. User can specify register bank 0 to 3.
example: void function () using 2{ // code } // Funtion named "function" uses register bank 2 while executing its code
Interrupt: Description: defines interrupt service routine void External_Int0() interrupt 0{ //code } ACOE343 - Embedded Real-Time Processor Systems Frederick University
94
Pointers
//Generic Pointer char * idata ptr; //character pointer stored in data memory int * xdata ptr1; //Integer pointer stored in external data memory //Memory Specific pointer char idata * xdata ptr2; //Pointer to character stored in Internal Data memory //and pointer is going to be stored in External data memory int xdata * data ptr3; //Pointer to character stored in External Data memory //and pointer is going to be stored in data memory
ACOE343 - Embedded Real-Time Processor Systems Frederick University 95
96
97
end
98
99
Example 1
Generate a 5V peek-to-peek 200s period square waveform on the DAC output
100
Example 2
Generate a 5V peek-to-peek 200s period sawtooth waveform on the DAC output
101
Example 3
Generate a 5V peek-to-peek 2ms period sine waveform on the DAC output code unsigned char Sine[180] = { /* Sine values */ 127,131,136,140,145,149,153,158,162,166,170,175, 179,183,187,191,194,198,202,205,209,212,215,218, 221,224,227,230,232,235,237,239,241,243,245,246, 248,249,250,251,252,253,253,254,254,254,254,254, 253,253,252,251,250,249,248,246,245,243,241,239, 237,235,232,230,227,224,221,218,215,212,209,205, 202,198,194,191,187,183,179,175,170,166,162,158, 153,149,145,140,136,131,127,123,118,114,109,105, 101, 96, 92, 88, 84, 79, 75, 71, 67, 64, 60, 56, 52, 49, 45, 42, 39, 36, 33, 30, 27, 24, 22, 19, 17, 15, 13, 11, 9, 8, 6, 5, 4, 3, 2, 1, 1, 0, 0, 0, 0, 0, 1, 1, 2, 3, 4, 5, 6, 8, 9, 11, 13, 15, 17, 19, 22, 24, 27, 30, 33, 36, 39, 42, 45, 49, 52, 56, 60, 63, 67, 71, 75, 79, 84, 88, 92, 96, 101,105,109,114,118 }; /************************************************************ * START of the PROGRAM * ************************************************************ / void main (void) { unsigned char i; /************************************************************ * Enable the D/A Converter * ************************************************************ / ENDAC0 = 1; /* Enable DAC0 */ /************************************************************ * Create the waveforms on DAC0 * ************************************************************ / while(1){ /* Run for ever */ for(i = 0; i < 179; i++) DAC0 = Sine[i]; } * while(1) */ } /* main() */ } 102 ACOE343 - Embedded Real-Time Processor Systems Frederick University
Examples:
103
104
Example
extern unsigned char add2_func(unsigned char, unsigned char); void main(){ unsigned char a; a = add2_func(10,30); //a will have 40 after execution while(1); } ;assembly file add2.asm NAME _Add2_func ?PR?add2_func?Add2 SEGMENT CODE PUBLIC add2_func RSEG ?PR?Add2_func?Add2 add2_func: mov a, r7 ;first parameter passed to r7 add a, r5 ;second parameter passed to r5 mov r7, a ;return parameter must be in r7 RET END
105
106
Data Converters
Analog to Digital Converters (ADC)
Convert an analog quantity (voltage, current) into a digital code
Analog
Digital
A/D
Temperature (C)
109
110
Analog Signal can take infinity values can change at any time
Digital Signal can take one of 2 values (0 or 1) can change only at distinct times
u(V) 16
1110
1111 1100 1010
12
10 8 6 4 2 1 2 3 4 5 6 7
Reconstruction of an analog signal from a digital one (Can take only predefined values)
t (S)
ADC
D0 D1 D2 D3
0 1 0 1 0 0 1 0 0
14 12 10 8
1001
1000 011 0
0
1 0
0
0 1
1
1 0
0
1 0
1
0 1
1
1 1
1
1 1
0
1 1
0
0 1
DAC6
0100
0101
4 2 6 7 8 9 t (S) 111
QUANTIZATION ERROR
The difference between the true and quantized value of the analog signal Inevitable occurrence due to the finite resolution of the ADC The magnitude of the quantization error at each sampling instant is between zero and half of one LSB. Quantization error is modeled as noise (quantization noise) u(V)
16 14 12 10 8 6 4 2 1 2 3 4 5 6 7 8 9 t (S)
Analog signal value at sampling time: 4.9 V Quantized Analog signal value: 5.0 V Quantization error: 5.0 - 4.9 = 0.1 V
112
113
0
1 1 1 1 1 1 1 1
1
0 0 0 0 1 1 1 1
1
0 0 1 1 0 0 1 1
1
0 1 0 1 0 1 0 1
35
40 45 50 55 60 65 70 75 114
3.
4.
115
5.
6.
Resolution The analog voltage (or current) that corresponds to a change of 1LSB in the binary code It is affected by the number of bits of the converter and the Full Scale voltage (VFS) For example if the full-scale voltage of an 8-bit D/A converter is 2.55V the the resolution is: VFS/(2N-1) = 2.55 /(28-1) 2.55/255 = 0.01 V/LSB = 10mV/LSB Conversion Time The time from the moment that a Start of Conversion signal is applied to an A/D converter until the corresponding digital value appears on the data lines of the converter. For some types of A/D converters this time is predefined, while for others this time can vary according to the value of the analog signal.
0.1Vo Vo
7. Settling Time
The time needed by the analog signal at the output of a D/A converter to be within 10% of the nominal value.
116
Non-linear
Used in telecommunications, since human voice carries more energy in the low frequencies than the high.
117
ADC TYPES
Direct Conversion Fast Low resolution Successive approximation Low-cost Slow Not constant conversion delay Sigma-delta High resolution, low-cost, high accuracy
ACOE343 - Embedded Real-Time Processor Systems Frederick University 118
DAC
D7 V(+) D6 D5 D4 Vout D3 D2 D1 D0 Vref
CS WR Vout
8088 System
A0
IO/M' WR RD
A11 A10 A9 A8 A7 A6 A5 A4
V(-)
10K
10K
119
Programming Example 1
Write a program to generate a positive ramp at the output of an 8-bit D/A converter with a 2V amplitude and a 1KHz frequency. Assume that the full scale voltage of the D/A converter is 2.55V. The D/A converter is in P0 and the WR signal is in P1.1
main() { do { for (i=0;i<200;i++) { P1_0=1; P0=i;
2V
0V f = 1KHZ
120
D/A Converters example Write a program to generate the waveform, shown below, at the output of
an 8-bit digital to analog converter. The period of the waveform should be approximately 8 ms. Assume that a time delay function with a 1 s resolution is available. The full scale output of the converter is 5.12 V and the address of the DAC is P0, while the WR signal is in P1.1.
V ( volts) 4 3 2 1 0 1 5 6 7
o
t ( msec )
Assuming that an 8-bit A/D converter is used to interface a temperature sensor measuring temperature values in the temperature range 0 - 51.2 C o , specify: The resolution in of the system in C
The digital output word for a temperature of 32.5 C The temperature corresponding to a digital output word of 01001110
ACOE343 - Embedded Real-Time Processor Systems Frederick University 121
o