What is DebugWire interface

Debug wire is an interface that enables debugging AVR microcontrollers by using one wire. All new AVR microcontrollers with less than 16kByte memory have a built-in one-wire bidirectional debugging interface that allows debugging devices in real-time. Like the JTAG interface, DebugWIRE can handle full execution and program flow control. It also supports an unlimited number of breakpoints, adjusting memory contents. The good thing is that interface doesn’t require additional pins as only the RESET pin is used for debugging purposes.

Continue reading

Major programmer types for 8 bit AVR microcontrollers

AVR microcontrollers have many ways to be programmed. One type of adapters are used only to program AVR memory others are used to program and debug. AVRISP The most known and common programming adapter is AVRISP, which is the basic tool and can be used to program Flash, EEPROM memory, most of the fuses, lock-bits for probably all 8bit AVR MCU’s. The programmer connects to a computer via an RS232 serial interface powered from the target board with no need additional power supply. The programmer connects to the target board via one of two headers – 6 or 10pin. AVRISP from Atmel Corporation is designed to work from AVRStudio as front end software and is upgradable. However, AVRISP is discontinued due to the newer adapter appearance –  AVRISP MKII. There are cheap third party clones available. But most of them aren’t compatible with AVRStudio but work well with programs like PonyProg or AVRDUDE.

Continue reading

How to solder SMD at home even better-Part two

This is continuing of part one. The following advice is for how to solder SMD parts with improved technology. Soldering Oven isolation As an isolation material, their glass insulation can be used. In this case, glass insulation was packed in aluminum foil: Inspected improvement in heating speed: 0.95% without isolation; 1.50% with isolation only inside oven; 1.72% full isolation.

Continue reading

How to solder SMD at home-Part one

Soldering SMD parts isn’t a hard task, and there are many methods of doing this. Let’s go through several SMD soldering methods and examples. Method 1: using the soldering iron For this you will need: Good sight or magnifying glass. Better one and another; Soldering iron with small tip ~10W; solder wire with a diameter of about 0.6mm Steps to follow: cut solder wire in pieces in the length of element width:

Continue reading

Very simple IR detector that controls relay

This Infrared(IR) detector circuit is a simple light relay that triggers when infrared light is applied to phototransistor Q1. This device can be used in control systems. When infrared light is OFF, the Q1 transistor and relay K1 are normally closed. When the IR diode is transmitting IR light, phototransistor Q1 opens and thus relays K1 triggers because current starts flowing through the Q2 transistor. Construction can easily be modified when circuit output is connected to a microcontroller or another device. Sensitivity so the distance can be controlled by changing IR diode D1, using more sensitive phototransistor Q1, and adjusting the R2 resistor.

Continue reading

Quality music sound in the car

Most of the driver’s car is more than a vehicle. Sometimes people spend hours in the car every day and listens to the news radio broadcast and listens to music. Having good quality music sound in the car requires more than good speakers and power amps, but some smart solutions are also needed to make it sound better. There are plenty of publications on how to DIY a good car sound system at home in the current time. Even the best power amplifier does not guarantee that car music will sound like Hi-Fi class. The main problem is the hard installation of the audio-system inside the vehicle. In many cases, speakers are installed where ever they fit in the car. But there is also no clear answer where it is the best place to install speakers and how. The most common mistake is to place powerful high-quality speakers in the rear shelf while the speaker’s front position is installed or not at all. Such an audio system installation gives a feeling like he is sitting back to the scene.

Continue reading

Real time clock of LPC2148

LPC2000 series of microcontrollers have a built-in Real Time Clock (RTC) unit, which may be used for counting time to maintain a calendar and clock. RTC is designed for low power designs that enable use in battery-powered designs. The real-time clock can count time in Seconds, Minutes, Hours, Days of Month, Months, Years, Days of the week, and Days of Year. The real-time module can be clocked using a distinct 32kHz clock oscillator or internal prescaller from the VPB clock. The real-time clock unit has additional power supply pins (3.3V) that allow the RTC clock to work when the system is off – actually power-down mode operated from the clock battery. As there are many functions in clocks like time units(seconds, minutes, etc.) and alarms, there are quite some registers to cover clock functionality. There are several groups of registers:

Continue reading

How PCB files are transfered to circuit boards

When you are done with a clean period of task – designing, drawing a circuit, and tracing a PCB, you need to transfer a design to a real board. Here starts what I call a messy part of the design. When designing at home, there are several options – to use prototyping boards or make PCB by yourself. You have to transfer the PCB image to a board with a copper layer in the second option. There are several methods of doing this: direct transfer with glossy paper where the image is printed with a laser printer or more advanced ultraviolet exposure. This way, the PCB image is printed on paper or film directly from the program window without keeping in mind PCB file formats. A different situation is when fabricating professional PCB’s. Each company that fabricates PCB boards always announce what type of file formats they support. So if you are going to order a PCB, better check with them to save your time. The most common and standard format is the so-called Gerber file format. Almost all layout tools can produce Gerber files. If you want to preview your generated Gerber files, there is a nice free Gerber…

Continue reading

PCB routing considerations

One of the hardest tasks when fabricating PCBs is a Printed Circuit Board(PCB) routing. There are no unified rules on how properly board should be routed, and it would be impossible to write them as the situation on each board is different. One of the general rules is that the shortest routes are the best because longer routes tend to generate more noises or pick them up from different sources. Every conducting material acts as an antenna, no exception with PCB routes. No secret that each route acts as a small transmitting and receiving antenna. So one thing is to keep in mind when routing PCB is to route short as possible. Another concerning area is a cross-talk or cross-coupling between routes. This effect appears when two traces run along with each other, and energy from one trace route couples to another. This effect is obvious in high frequency digital and analog circuits. This effect can make the device dis-functional because only of the cross-coupling effect. These defects are hard to determine as the electrical circuit board is correct. If this effect is noticed – the only solution is to cut traces off and run separate wires instead. It is…

Continue reading

Pulse Width Modulator in LPC2000 ARM7 MCU

In ARM7 microcontrollers, PWM is designed as a separate module, but it has all features as general-purpose timers have; just limited pins are associated. PWM module has improved match module, allowing six single edges controlled PWM or three double-edge controlled PWM. There are seven match registers used with improved update logic. PWM modulator has additional shadow match registers that perform the latching effect. This means that you can instantly update match registers, but new values are taking effect only at the beginning of the new cycle. This mechanism ensures that all updates are performed at the beginning of a new cycle through the latch enable register(LER). In general-purpose timers, match registers take effect immediately after they are updated.

Continue reading