Skip to main content

Best Books on 8051 Microcontroller for beginners

I tell you which book you should preferred while learning basics of 8051 microcontroller. It is very tough to choose right and clear concept book for fresher. But, i am telling you the names of books on my experience basis.

There are many books to learn basics of 8051 microcontroller and you can choose according to your understanding and learning. There are mainly 3 books which i prefer a beginner should use while learning and getting skilled in 8-bit microcontroller-

Book#1. The 8051 Micro-controller and Embedded Systems using Assembly and C -by Moammad Ali Mazidi

I suggest you buy this book as this book by Mazidi focuses on C programming of 8051 along with assembly language. As a student you really need to know program 8051 using embedded C language. In the initial phases of your learning curve, assembly language is enough for writing programs (and you should start learning 8051 software by writing in assembly language as it helps you to understand concepts better). But when it comes to advanced software development for 8051, the “embedded C” will be more handy. The reason is, its is more easy to program using C language than using assembly language. It can save your time and makes possible efficient coding!

This is generally recommended for the B.Tech student of India to learn 8051 in assembly as well as Embedded C language. This describes the interfacing examples of 8051 micro-controller with other components too. I also consider this book is the best for learner from concept to understanding in this field.

Book#2. 8051 Microcontroller-Internals,Instructions,Programming&Interfacing by Subrata Ghosha


Some great features of this book are:

Graphical representation of each and every features of 8051 – especially instructions and its working

  • Graphical representation of the program flow -which helps to understand a program really quick
  • Orientation towards practical world – where she focuses on real world usage of each features of the controller
  • All important points are summarized at the end of each chapter in boxes – which helps in quick reference
  • Author has given “Quick Tips” in each chapter – which notifies reader about the most common errors made by people while practically testing many programs and circuits
  • Interrupts are explained really well – especially external interrupts, timer interrupts and serial.

  • Interfacing of 8051 with external devices – Display(LED,7 segment,LCD),Keyboards, Motors(Servo,Stepper,DC), ADC/DAC, external memory are all explained in individual chapters for each with examples.

Book#3. The 8051 Microcontroller (with CD) by Kenneth Ayala


Kenneth Ayala is a popular author when it comes to 8051 microcontroller and his books are recommended by many college faculties. The basic contents of this book are same as the above two ones. But then what differentiates this book? Well, that’s “simulation”. This book comes with chapters dedicated for simulation the of the 8051 programs and software using uVision2, an integrated development tool from Keil. Also the author has written a great detail about “How to use the A51 assembler” – which will be really useful when a student tries to apply his learnings in the real world using programs. So if you are interested in testing some real world applications using 8051, you can consider buying this book ad this integrated development software that comes with this book can help you a lot with software development, especially debugging, simulation etc.

Comments

Popular posts from this blog

Buzzer interface with 8051 microcontroller

Buzzer  is a electronic device that converts the electronic signal into buzzing noise, that is applied to it. It can be used as electronic bell or as quiz buzzer in many applications around us. Here, i world like to discuss the interfacing of a small buzzer with 8051 microcontroller and how different projects can be constructed. Buzzer Interfacing: This project shows the interface with AT89S52 microcontroller to a buzzer. When a push button is pressed, the buzzer will get ON and OFF ( number of times set in the code ) and then stops. Circuit Diagram: - The port P1 of the microcontroller is connected to buzzer. This type of connection is possible, if the current requirements of the buzzer is not more than 20mA. The output is in current source mode so that buzzer will turn ON when the output of the port is logic LOW. Switch is connected to port P3 which remains at logic HIGH by pull up resistor.  Code: #include "REG52.h" #define buz P1 sbit SW=P3^0; long i...

Comparison Chart Between 8051, 8052, 8031and 8751

8051 is a popular 8-bit microcontroller and has been used in many applications since Intel introduced it. Many 8051 architecture are produced by Triscend, Intel, Atmel, Philips, Infineon (Siemens), ISSI, and Max Corp. Today, 8051 microcontrollers may not be popular but, the 8051 architecture is still popular and employed in thousands of embedded applications. This 8-bit architecture has been different segments such as 8052, 8051, 8751 and 8031 . 8052 is the super-set of 8051 and 8031 is the memory-less microcontroller hence, it has interfaced with external ROM. Whereas, 8751 chip has only 4Kbytes of on chip UV-EPROM. Everyone knows about the general 40-pin microcontroller i.e. 8051 introduced by Intel in 1980s and consists of serial communication pins, Timer, Interrupts, RAM, ROM. It has 4 ports and each port has 8 pins, total 32 pins and other 8 pins for other purposes. 8052 is the super-set of 8051 that consists of 8K bytes of internal RAM (4K in 8051), 256 by...

Different ways to generate delays in 8051

The delay length in 8051 microcontroller depends on three factors: The crystal frequency the number of clock per machine the C compiler. The original 8051 used 1/12 of the crystal oscillator frequency as one machine cycle. In other words, each machine cycle is equal to 12 clocks period of the crystal frequency connected to X1-X2 pins of 8051. To speed up the 8051, many recent versions of the 8051 have reduced the number of clocks per machine cycle from 12 to four, or even one. The frequency for the timer is always 1/12th the frequency of the crystal attached to the 8051, regardless of the 8051 version. In other words, AT89C51, DS5000, and DS89C4x0 the duration of the time to execute an instruction varies, but they all use 1/12th of the crystal's oscillator frequency for the clock source. 8051 has two different ways to generate time delay using C programming, regardless of 8051 version. The first method is simply using Loop   program function in which Delay() funct...