ISD2500+ATmega8 realizes intelligent voice system

Publisher:HarmoniousDreamLatest update time:2011-09-19 Keywords:ISD2500+  ATmega8 Reading articles on mobile phones Scan QR code
Read articles on your mobile phone anytime, anywhere

1 Introduction

With the rapid development of semiconductor technology and computer technology, voice technology is also making continuous breakthroughs, especially speech synthesis technology is becoming more and more perfect, and new voice chips are constantly emerging. The ISD2500 series voice chips produced by ISD of the United States can adopt single-chip control mode or microprocessor control mode.

2 Introduction to ISD2500 Series Voice Chip

The ISD2500 series voice chip is a high-fidelity recording and playback integrated single-chip solid-state voice integrated circuit. It uses ISD's patented "direct analog storage technology" to successfully store analog data in semiconductor memory. This breakthrough EEPROM storage method can write analog data directly into a single storage unit without the need for A/D or D/A conversion. The effects of this technology are: (1) increased integration compared to equivalent digital methods; (2) the storage of analog data is non-volatile. According to the different recording and playback times, the ISD2500 series chips can be divided into four models: ISD2560, 2575, 2590 and 25120.

2.1 ISD2500 Package and Pin Function

ISD2500 adopts DIP-28 package, the pin arrangement is shown in Figure 1, and the pin functions are listed in Table 1.

ISD2500 pin diagram

2.2 Working Mode

When the highest address bits (MSB) A8 and A9 are both high, the address terminal is used as the operation mode selection terminal (high level is valid). Its working mode is shown in Table 2.

There are two points to note when using the working mode:

(1) Operations in all working modes start from address 0. Subsequent operations start from the corresponding address according to the different modes. When the circuit is recording or playing back or entering the power saving state, the address counter is reset to 0.

(2) The working mode bit is not locked, and the working mode operation can be executed at any time when the MSB address bit is high and the CE level becomes low. If one (or two) of the MSB address bits becomes low in the next chip selection cycle, the information address is executed, that is, recording or playing from this address, and the originally set working mode state is lost. [page]

3 ISD2500 and MCU interface and programming

The ISD2500 series voice chip has a simple structure and is easy to use. It can form a simple single-chip application system. However, in many cases, since the recording/playback of voice data needs to be automatically controlled by other signals, the single-chip ISD2500 cannot meet the application requirements. At this time, it is necessary to use the voice system of the microcontroller to combine different working modes and flexibly record and play multiple messages as needed. ISD2500 can form an intelligent voice system with various microcontrollers. This article uses ATmega8 in Atmel's AVR series of microcontrollers as an example to form a basic circuit with ISD2500. This circuit is a hardware platform that can be expanded accordingly according to different requirements.

Taking the playback process as an example, the operation process is as follows:

(1) Power on the device;

(2) PD terminal is set to low level;

(3) Enter the playback start address;

(4) After waiting for the power-on delay (TPUD), the CE terminal changes from high to low, and the falling edge performs the playback operation. At this time, the device no longer affects the re-jump of the address terminal and the recording and playback control terminal. Note that the above pins should be kept stable within the control/address setup time (TSET) before CE changes low;

(5) When encountering the EOM mark, the device continues to output sound, and when the EOM pulse (TEOM) ends, the sound playback stops.

The recording operation is basically the same as the playback operation and will not be described in detail.

The specific hardware connection circuit is shown in Figure 2. Among them, S1 is the "record" key, S2 is the "play" key, and S3 is the "segment" operation key.

When using a single-chip microcomputer to control ISD2500, the following points should be noted:

(1) The address setup time (TSET) of the ISD2500 series is 300 ns, which means that the address signal should be delayed by 300 ns before the falling edge of CE. Some very fast microcontrollers need to add a delay.

(2) The typical value of the ISD2500 series EOM pulse width is 12.5 ms. When playing, you can use the query or external interrupt method to detect the rising edge of the EOM terminal, because only when the EOM terminal becomes a high level, the CE signal can start the next operation. The software flow is shown in Figure 3.

ISD2500+ATmega8 realizes the hardware circuit of intelligent voice system

ISD2500+ATmega8 realizes the software process of intelligent voice system

[page]

The key source programs are as follows:

4 Conclusion

The test proves that the ISD2500 series voice chip and ATmega8 MCU have achieved good results. It can be easily expanded and transplanted, and applied to robot voice prompts, aircraft automatic warning, ECG signal recording and playback systems, etc., and has a very broad application prospect.

Keywords:ISD2500+  ATmega8 Reference address:ISD2500+ATmega8 realizes intelligent voice system

Previous article:Design of Temperature Measurement System Based on Serial Communication of AT89S52
Next article:Wireless remote control technology based on single chip microcomputer

Recommended ReadingLatest update time:2024-11-16 17:28

Vehicle stable driving and acceleration and deceleration control based on PID control strategy of Atmega8
    This article introduces the structure and working principle of the car automatic cruise control system, and selects the PID control strategy based on Atmega 8 microcontroller to achieve the stable driving and acceleration and deceleration control process of the vehicle. This system can effectively reduce the workl
[Microcontroller]
Vehicle stable driving and acceleration and deceleration control based on PID control strategy of Atmega8
ATmega88 On-Chip Debug System
characteristic * Complete program flow control * Emulates all analog and digital functions on the chip, except RESET pin * Real-time operation * Supports symbolic debugging (C and assembly level, or other HLL) * Unlimited program breakpoints (using software breakpoints) * Non-intrusive operation * Same electrical char
[Microcontroller]
ATmega88 On-Chip Debug System
ATmega88 How to reduce power consumption
There are several issues to consider when trying to reduce power consumption in an AVR controlled system. In general, use sleep modes as much as possible and keep as few modules as possible running. Unnecessary functions should be disabled. The following modules require special consideration to achieve the lowest poss
[Microcontroller]
Design of industrial frequency voltage/frequency meter based on ATmega8 microcontroller
1 Introduction In power production and electrical testing, it is often necessary to measure power frequency voltage and frequency. There are many types of power frequency voltage meters and frequency meters on the market. Compared with them, this design has the characteristics of simple circuit, small size, low powe
[Microcontroller]
Design of industrial frequency voltage/frequency meter based on ATmega8 microcontroller
Latest Microcontroller Articles
  • Download from the Internet--ARM Getting Started Notes
    A brief introduction: From today on, the ARM notebook of the rookie is open, and it can be regarded as a place to store these notes. Why publish it? Maybe you are interested in it. In fact, the reason for these notes is ...
  • Learn ARM development(22)
    Turning off and on interrupts Interrupts are an efficient dialogue mechanism, but sometimes you don't want to interrupt the program while it is running. For example, when you are printing something, the program suddenly interrupts and another ...
  • Learn ARM development(21)
    First, declare the task pointer, because it will be used later. Task pointer volatile TASK_TCB* volatile g_pCurrentTask = NULL;volatile TASK_TCB* vol ...
  • Learn ARM development(20)
    With the previous Tick interrupt, the basic task switching conditions are ready. However, this "easterly" is also difficult to understand. Only through continuous practice can we understand it. ...
  • Learn ARM development(19)
    After many days of hard work, I finally got the interrupt working. But in order to allow RTOS to use timer interrupts, what kind of interrupts can be implemented in S3C44B0? There are two methods in S3C44B0. ...
  • Learn ARM development(14)
  • Learn ARM development(15)
  • Learn ARM development(16)
  • Learn ARM development(17)
Change More Related Popular Components

EEWorld
subscription
account

EEWorld
service
account

Automotive
development
circle

About Us Customer Service Contact Information Datasheet Sitemap LatestNews


Room 1530, 15th Floor, Building B, No.18 Zhongguancun Street, Haidian District, Beijing, Postal Code: 100190 China Telephone: 008610 8235 0740

Copyright © 2005-2024 EEWORLD.com.cn, Inc. All rights reserved 京ICP证060456号 京ICP备10001474号-1 电信业务审批[2006]字第258号函 京公网安备 11010802033920号