Tutorial Microcontroller 8051
 
 
 
 
 
   

BACK NEXT

4.4. Send ADC data to PC serially - RS 232

This experiment is very good for the process of data acquisition for the process of measurement of long distance serially. You should learn more about Serial communication RS232.

 

Microcontroller Serial Communication

Figure 4.1. Sending ADC data serially to PC

Step 1st
Build the circuit as shown in figure 4.1. As you seen on figure 4.1. Remember, that all we want to do with this lesson is send out ADC data to PC serially.

Step 2nd
In this step, you must tipe the assembly program to make your serial working, we assume that you have already known the editor, we used MIDE-51 to edit the program. ( Download File : exp41.zip , Download Complete Circuit File : SerialADC.PDF )

       org 0h
       call initserial
;
start: mov a,p2; ambil data dari adc
       call Sendout
       sjmp start
;
Sendout:
detect: jnb ti,detect; 
        clr ti ; 
        mov sbuf,a ; 
        ret
;
initserial:
       mov scon,#52h;initialize serial mode 1
       mov tmod,#20h;timer1 mode 2
       mov th1,#0F3h;Reload value for baud rate 2400
       setb tr1
       ret
end

To get the data from microcontroller serially, computer must run the program to get data from port communication RS232, in this experiment I have been used Delphi programming: ( Download Delphi File : adcserial.zip )

 


Figure 4.2. Delphi Programming Display Data ADC

unit serial1;
interface
uses
Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
ExtCtrls, StdCtrls;
type
         TForm1 = class(TForm)
         Button1: TButton;
         Timer1: TTimer;
         Edit1: TEdit;
         Label1: TLabel;
         Label2: TLabel;
         procedure Button1Click(Sender: TObject);
         procedure Timer1Timer(Sender: TObject);
         private
         { Private declarations }
         public
         { Public declarations }
         end;
var
         Form1: TForm1;
         data,status:byte;
const
         base = $3f8;{base address port serial}
         lcr = 3; {line control register}
         dll = 0; {divisor lacht low byte}
         dlh = 1; {divisor lacht high byte}
         lsr = 5; {line status register}
implementation
{$R *.DFM}
Procedure Initserial;
begin
 asm
  mov dx,base+lcr; {address line control register}
  mov al,$80 ; {10000000b = access bit divisor lacht}
  out dx,al
         ;
  mov dx,base+dll; {address divisor lacht low byte}
  mov al,$30 ; {DLLB = 30h}
  out dx,al
         ;
  mov dx,base+dlh; {address divisor lacht high byte}
  mov al,$00 ; {DLLH = 00h}
  out dx,al
         ; {Pada saat ini Port serial}
         ; {memp.baud rate = 2400 bps}
  mov dx,base+lcr;{address line control register}
  mov al,$03 ; {00000011b =}
  out dx,al ; {bit 7=0, access to Rx buffer & Tx
         ; {bit 6=0, set break disable
         ; {bit 5-4-3=000, no parity
         ; {bit 2=0, one stop bit
         ; {bit 1-0=11,data lenght 8 bit}
 end;
end;
Procedure Receive_Data_Serial;
begin
 asm
  mov dx,base
  in al,dx
  mov data,al
  end
end;
procedure TForm1.Button1Click(Sender: TObject);
begin
 initserial;
 timer1.enabled:=true;
end;
procedure TForm1.Timer1Timer(Sender: TObject);
begin
 Repeat
  asm
   mov dx,base+lsr ; { address line status register }
   in al,dx
   and al,$01      ; {LSR = 00000001b, detects bit 0}
   mov status,al   ; {bit 0 = data ready}
  end;
 until status = $01;{ jika bit 0 = 1 then data ready}
 Receive_Data_Serial;
 edit1.text:=inttostr(data);
end;

end.

Step 3rd
Safe your assembly program above, and name it with exp41.asm (for example) Compile the program that you have been save by using MIDE-51, see the software instruction.

Step 4th
Download your hex file ( exp41.hex ) into the microcontroller by using Microcontroller ATMEL ISP software, see the instruction.After download this hex file you'll see the action of serial transmition( of course if your cable connection and your program are corrected ).

Best Link

 

BACK NEXT

 

Lesson 1:
T o o l
1.1. Programmer
1.2.
Edsim 51
1.3. MIDE-51
1.4. ATMEL ISP

Lesson 2:
Input Output
2.1.LED
2.2.Swicht
2.3.7 Segmen
2.4.LCD Character
2.5.ADC
2.6.DAC
2.7.Motor Stepper
2.8.Keypad

Lesson 3:

Timer Counter

3.1.Basic
3.2.Mode 0
3.3.Mode 1
3.4.Mode 2
3.5.Mode 3

Lesson 4:

Serial Comm.

4.1.Basic
4.2.LED
4.3.Rotate LED
4.2 ADC
4.3.LCD

Lesson 5:
Interuption

5.1.Basic
5.2.Timer
5.2.External