Found 558 Articles for Microprocessor

Interfacing DAC with 8051 Microcontroller

George John
Updated on 14-Sep-2023 15:43:06

34K+ Views

In this section we will see how DAC (Digital to Analog Converter) using Intel 8051 Microcontroller. We will also see the sinewave generation using DAC.The Digital to Analog converter (DAC) is a device, that is widely used for converting digital pulses to analog signals. There are two methods of converting digital signals to analog signals. These two methods are binary weighted method and R/2R ladder method. In this article we will use the MC1408 (DAC0808) Digital to Analog Converter. This chip uses R/2R ladder method. This method can achieve a much higher degree of precision. DACs are judged by its ... Read More

Programming 8051 using Keil Software

Chandu yadav
Updated on 27-Jun-2020 12:11:13

21K+ Views

In this section we will see how to write and execute programs for 8051 microcontroller using the Keil Software.Download KeilHere is the download link of Keil. You can download it and install it very easily. We are using C51 version for 8051 devices.https://www.keil.com/download/product/Use Keil to write programs for 8051 MicrocontrollerStart the Keil software. Go to the Project > New Project then choose a location to store your program, and give a name and Save.Now in the next window select the device from different manufacturers. We are selecting Microchip, and then by expanding we are selecting AT89C51 device and click ok.Now ... Read More

RAM Addressing of 8051 Microcontroller

Ankith Reddy
Updated on 27-Jun-2020 07:55:45

6K+ Views

Here we will see how external RAM memories can be addressed by the Intel 8051 microcontroller. There are different methods for addressing the RAMs. Now at first we will discuss about some different types of RAM memories in short.The RAM (Random Access Memory) is volatile memory. So when the power is cutting off to the RAM chip, it losses the data. RAMs are also known as RAWM (Read and Write Memory). There are basically three kinds of RAMs. These are SRAM (Static RAM), NV-RAM (Non-Volatile RAM) and DRAM (Dynamic RAM).Static RAMThe storage cell in Static RAM are made of flip-flops. ... Read More

High-level language program

Arjun Thakur
Updated on 27-Jun-2020 11:01:32

2K+ Views

High level language is the next development in the evolution of computer languages. Examples of some high-level languages are given belowPROLOG (for “PROgramming LOGic”)FORTRAN (for ‘FORrmula TRANslation’)LISP (for “LISt Processing”)Pascal (named after the French scientist Blaise Pascal).High-level languages are like English-like language, with less words also known as keywords and fewer ambiguities. Each high level language will have its own syntax and keywords. The meaning of the word syntax is grammar.Now let us discuss about the disadvantages of high-level languagesA high level language program can’t get executed directly. It requires some translator to get it translated to machine language. There ... Read More

Assembly language program

George John
Updated on 27-Jun-2020 11:02:25

7K+ Views

After machine level language, the next level of development in the evolution of computer languages was the Assembly Language. Machine level language uses only the binary language. But on the other hand, assembly language uses mnemonics or symbolic instructions in place of a sequence of 0s and 1s. As example, we can consider that, to add register A and B in a particular computer, assembly language uses the mnemonic ‘ADD B’ in place of 10001111. In assembly language, we use symbolic names to denote addresses and data. A number of such examples are dealt with in the successive chapters. Thus ... Read More

Machine language program

Chandu yadav
Updated on 27-Jun-2020 11:03:58

3K+ Views

Computer can understand only the language of Digital Electronics. Digital Electronics deals with presence and absence of voltages. Within the computer there are two logics can play their role. These logics are −Positive Logic − Here presence of voltage will be denoted by 1 and absence of voltage will be denoted by 0Negative Logic −Here presence of voltage will be denoted by 0 and absence of voltage will be denoted by 1But obviously computer can follow anyone of the logics at a time, not both the logics simultaneously. To make the computer understand, a program can be written using only ... Read More

Computer languages

Ankith Reddy
Updated on 27-Jun-2020 11:04:32

2K+ Views

There are mainly three different languages with the help of which we can develop computer programs. And they areMachine Level languageAssembly Level Language andHigh-Level LanguageMachine Level LanguageThe computer can understand only the language of Digital Electronics. Digital Electronics deals with the presence and absence of voltages. Within the computer there are two logics can play their role. These logics are −Positive Logic − Here presence of voltage will be denoted by 1 and absence of voltage will be denoted by 0Negative Logic − Here presence of voltage will be denoted by 0 and absence of voltage will be denoted by ... Read More

Differences in Microcomputer, Microprocessor and Microcontroller

Arjun Thakur
Updated on 27-Jun-2020 11:05:24

16K+ Views

Let us discuss Microcomputer, Microprocessor, and Microcontroller in this article and also to highlight their respective differences in between. MicrocomputerA microcomputer can be defined as a small sized, inexpensive, and limited capability computer. It has the same architectural block structure that is present on a computer. Present-day microcomputers are having smaller sizes. Nowadays, they are of the size of a notebook. But in the coming days also their sizes will get more reduced as well. Due to their lower costs, individuals can possess them as their personal computers. Because of mass production, they are becoming still cheaper. Initially, in the earlier ... Read More

Microprocessor Basics

Chandu yadav
Updated on 27-Jun-2020 09:24:10

3K+ Views

The processor on a single chip is called a Microprocessor which can process micro-instructions. Instructions in the form of 0s and 1s are called micro-instructions. The microprocessor is the CPU part of a microcomputer, and it is also available as a single integrated circuit. Thus as main components, the microprocessor will have the Control Unit (CU) and the Arithmetic Logic Unit (ALU) of a microcomputer. An example is Intel 8085 microprocessor. In addition to the microprocessor features, a microcomputer will have the following additional features −ROM / PROM / EPROM / EEPROM for storing programRAM for storing data, intermediate results, ... Read More

Microcomputer Basics

Ankith Reddy
Updated on 27-Jun-2020 08:08:39

1K+ Views

A microcomputer can be defined as a small sized, inexpensive, and limited capability computer. It has the same architectural block structure that is present in a computer. Present-day microcomputers are having smaller sizes. Nowadays, they are of the size of a notebook. But in coming days also their sizes will get more reduced as well. Due to their lower costs, individuals can possess them as their personal computers. Because of mass production they are becoming still cheaper. Initially in the earlier days they were not very much powerful. Their internal operations and instructions were very much limited and restricted. But ... Read More

Advertisements