8051 Microcontroller in Tamil | Microcontroller in Tamil
by Anto B in Circuits > Microcontrollers
66 Views, 0 Favorites, 0 Comments
8051 Microcontroller in Tamil | Microcontroller in Tamil
Hello Friends, I have explained about 8051 microcontroller in tamil on my youtube channel.
I will give the link below, you can click and watch the video till the end. I have given an useful information like ROM memory calculation, address calculation, how the cpu works, pipelining stages, what the decoder will do inside the cpu and so on..
click the link below...
The name of my channel is Mission Tamil Electronics. click the link and subscribe, share and like my videos.
8051 is the most important microcontroller designed by Intel corporation in 1981. This microcontroller is an 8 bit microcontroller. It comes of 40 Pin DIP package.
Supplies
8051 mic
Features
4 ports namely P0, P1, P2, P3
4KB ROM
128bytes of RAM
2 timer (T0, T1)
1 UART communication
6 Interrupt source
11.0592MHZ oscillator frequency
Supported Languages
Assembly language
Embedded C language
Example code:-
#include<reg51.h>
void main() { unsigned int i; P1=0x00; while(1) { P1=0x00; for(i=0;i<65535;i++); P1=0xff; for(i=0;i<65535;i++); } }