Skip to main content

Tools Required for Starting up Embedded Project

Many engineering students work on embedded projects during and post their summer training. But, working on embedded projects are not easy task. The main problem comes during hardware design and debugging are considered more important task by amateur than coding of the project.

But, Practice and following simple tips can make your project work easy and will require less time. You have to firstly decide your project on embedded field and collect the required related stuffs from your project.
Tools required for starting your project-
1. The first and important thing is the making of list of all stuffs, with their costs, whether in terms of hardware and software. You may encounter with many stuffs that may be difficult to find and this method will help you choosing the correct project according to your financial and availability needs.

2. Discuss about the project with your teacher, coordinator or guide and find out the flaws or errors that can occur during the project. And you will get figured out easily about your project.

3. Compulsory List of tools required in every project.

  1. Hardware- It is the most important thing in your embedded project. You have to required a hardware lab equipped with below specified tools.

(a) Solder iron with stand- To solder components it is required. There are many range of solder iron in Watts(W) available. 15 W solder iron will be enough for b.tech level projects.


(b) Solder Wire- It is melted on the components using solder iron to fix the electronic components.


(c) Flux- It is also important part soldering. It is recommended to slightly dip the soldering part of  components before soldering them.

 (d) Rainbow Wires- Buying rainbow wires are necessary to connect components that are soldered and make the circuit.


(e) Connectors- There are different pin connectors are available in the market. Buy the connector according to your need.


(f) Multimeter- It is a vital instrument to measure different components value, the shorted path in PCB etc. required in your embedded project. It will cost you 250-300 rupees.


(g) Cutter- It is required to cut the nib of wire going to be soldered.


(h) PCB or Breadboard- Buy PCB or Breadboard according to the need of your project. They are used on which hardware design is realized.


(i) Other Components- These are the components that you required at every point of your project. Must buy extra resistors, capacitor, voltage regulator, transistor, LEDs, etc from the required need of your project. Buy the components according to your project.

2. Software- Find out the software required to implement in your project and arrange those software on your working PC or laptop.


(a) Keil µvision IDE software- It is required to write and debug your code for your project. It is compatible with various ranges of micro-controllers.


(b) Circuit Designing- You will require software to design and test your circuit diagram working. I prefer to use proteus over Express PCB software as Proteus allows you to simulate your circuit by loading hex file in the diagram you have made.


(c) SPI Flash Programmer required to burn the hex file in the microcontroller of your hardware. You may also use Flash Magic Programmer to burn hex file.

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...