Application of ProteuS in ARM system design

Publisher:达文西happyLatest update time:2011-06-21 Keywords:ProteuS Reading articles on mobile phones Scan QR code
Read articles on your mobile phone anytime, anywhere

Introduction
Nowadays, embedded devices exist in every corner of people's lives, such as DVDs, mobile phones, MP3s, and PDAs. Most of these embedded devices use 32-bit RISC embedded processors as core components. Among them, embedded processors based on ARM cores are the best, accounting for more than 75% of the market share in 32-bit RISC processors. Therefore, more and more electronics enthusiasts have joined the team of learning ARM. By comparing with the development process of general single-chip microcomputer systems, it is not difficult to find that the design of embedded systems includes two aspects: hardware design and software design, and its debugging process includes three processes: software debugging, hardware testing, and system debugging. Software debugging is generally easier to carry out, but hardware testing and system debugging are more troublesome, because these two processes must be carried out after PCB production and component welding are completed; and PCB production and component welding are very time-consuming and labor-intensive. If the simulation tool Proteus VSM can be used, the above work can be completed without making a specific circuit board. There is no doubt that this will bring great convenience to the majority of ARM learners.

1 Introduction to Proteus
Proteus software is an EDA tool software from Labcenter electronics in the UK. It is an electronic design teaching platform, experimental platform and innovation platform, covering all the functions of electrical and electronic laboratories, electronic technology laboratories, and single-chip microcomputer application laboratories. It runs on the Windows operating system and can simulate and analyze (SPICE) various analog devices and integrated circuits. The features of this software are:
① It realizes the combination of single-chip microcomputer simulation and SPICE circuit simulation. It has the functions of analog circuit simulation, digital circuit simulation, simulation of systems composed of single-chip microcomputers and their peripheral circuits, RS232 dynamic simulation, I2C debugger, SPI debugger, keyboard and LCD system simulation; there are various virtual instruments such as oscilloscopes, logic analyzers, signal generators, etc.
② It supports the simulation of mainstream single-chip microcomputer systems. The types of single-chip microcomputers currently supported are: 68000 series, 8051 series, AVR series, PIC12 series, PIC16 series, PIC18 series, Z80 series, HC11 series, and Phil-lips' ARM (LPC series).
③ It provides software debugging functions. In the hardware simulation system, it has debugging functions such as full speed, single step, and breakpoint setting. At the same time, it can observe the current status of various variables, registers, etc., so these functions must also be available in the software simulation system; at the same time, it supports third-party software compilation and debugging environments, such as Keil, ADS and other software.
④ It has powerful schematic drawing functions. It can design SCH (schematic) and PCB (printed board) circuits.

2 Schematic design under Proteus environment
Proteus is similar to Protel, EWB and other software. To draw a schematic diagram, you must first take out the required component symbols from the device library and lay them out in the drawing area, edit the parameters of the components, and then connect them, add necessary network labels and other steps. The following is a simple example to illustrate how to use Proteus software to implement the design and simulation of ARM (taking LPC2106 as an example) system. The example takes the LPC2106 controller as the core, uses the hardware SPI interface to connect to the 74HC595, adds the necessary peripheral circuits, and controls the 74HC595 to drive the LED digital tube display. The circuit principle is shown in Figure 1. P0.4 (/SCK/CAP0.1), P0.6 (/MOSI/CAP0.2) and P0.8 (/TxD1/PWM4) of LPC2106 are respectively connected to SH_CP, DS and ST_CP of 74HC595 to control 74HC595. The outputs Q0~Q6 of 74HC595 are respectively connected to the digital tube and LED to control their real-time display.

3 Program code writing
The program code writing is mainly divided into 4 parts:
① LPC2106 initialization code;
② LPC2106 exception vector entry and the interface between the exception vector and the C language code, including the code for initializing the stack;
③ LPC2106 target board special code, including the exception handler and the target board initialization program;
④ According to the example requirements and combined with the schematic diagram, write the code to achieve the expected function, that is, the usual execution code, and save the code file as "main.C". [page]

In order to save development time, we usually use a designed project template. Here we use the LPC2100 series project template. The template contains the startup files of the LPC2100 series ARM7 microcontroller, including STACK.S, HEAP.S, STARTUP.S and TARGET.C; the template also contains the header files of the LPC2100 series ARM7 microcontroller, scattered loading description files (such as mem_a.scf, mem_b.scf and mem_c.scf), etc. In this way, you can directly use these project templates when writing program codes in the future, without having to write initial and startup program codes. You only need to write "main.C" according to different requirements, thus saving a lot of time and greatly improving work efficiency.
Here we mainly explain the writing of "main.C". The function to be realized is to use the hardware SPI interface to output data from 0 to F, control the LED digital tube to display characters from 0 to F through 74HC595, and control 4 LEDs to display the corresponding hexadecimal numbers. The program source code is as follows:

4 Simulation
Use the ADS integrated development environment to compile and connect the program. The ADS integrated development environment is an integrated development tool for ARM core microcontrollers launched by ARM. The full name in English is ARM Developer Suite, and the mature version is ADS1.2. ADS1.2 supports all ARM series microcontrollers before ARM10, supports software debugging, supports assembly, C and C++ source programs, and has the characteristics of high compilation efficiency and strong system library functions. Open the ADS1.2 integrated development environment CodeWarrior IDE, use the pre-added project template to create a new project spi.mcp, and add the above compiled code file main.c to the project. After making relevant settings, select Projeet→Make command, compile and connect the project, and generate spi.hex file.
Double-click the microcontroller LPC2106 in the schematic diagram, and a property setting window Edit Component will appear, as shown in Figure 2. Add the path of the spi.hex file generated above in ProgramFile, and click OK to complete the setting.

Click the Run button in the lower left corner of the schematic to start the simulation. The digital tube displays the data O~F sent by SPI, and the LED displays the corresponding hexadecimal value. The simulation results fully meet the design requirements.

Conclusion
This article explains the application of Proteus in ARM development in detail by combining a simple SPI interface experiment. It can be seen that Proteus is very powerful and can simulate various digital analog circuits. It is simple to operate and easy to use. Using Proteus for virtual development of ARM can not only reduce the investment in experimental hardware capital, but also break through the limitations of experimental content in the actual development board, so that developers can give full play to their own initiative. After the successful virtual development of the system using Proteus simulation, actual production can undoubtedly improve development efficiency, reduce development costs, and increase development speed, and has a high value of promotion and application.

Keywords:ProteuS Reference address:Application of ProteuS in ARM system design

Previous article:ARM7 keyboard and VFD display interface technology
Next article:Design of embedded remote measurement and control system based on ARMlinux

Recommended ReadingLatest update time:2024-11-16 20:48

51 single chip microcomputer dds low frequency function signal generator Proteus simulation program
The microcontroller source program is as follows: #include reg52.h #include "lcd1602.h" #include "delay.h" #include "pltable.h" #include "key.h" #include "adc0832.h" void timer0() interrupt 1 {                  TH0=THtemp;         TL0=TLtemp;                         if(waveform==0)      sine_out();         e
[Microcontroller]
51 single chip microcomputer dds low frequency function signal generator Proteus simulation program
AVR programming language Arduino can be simulated and debugged with Proteus
Connect a potentiometer to the analog interface 0 of the Arduino  168 Duemilanove 2009ATMEGA168P controller, and connect an LED to the digital interface 13 of the controller. When the potentiometer slides and the voltage exceeds 2.5V, the LED lights up, otherwise it goes out. The AD conversion of the ATMEGA168P co
[Power Management]
AVR programming language Arduino can be simulated and debugged with Proteus
The Simulation Design of 51 Single Chip Microcomputer Real-time Clock Based on Proteus
Single-chip microcomputer technology is applied to all walks of life and is a practical intelligent control technology. The development of single-chip microcomputer technology has greatly promoted the rapid development of electronics, communications, computers, mechatronics and other industries, and has become a pop
[Microcontroller]
The Simulation Design of 51 Single Chip Microcomputer Real-time Clock Based on Proteus
Proteus simulation of multimeter based on 51 single chip microcomputer
Simulation diagram: Part of the source code: #include reg52.h #include "LCD.h" #include "Delay.h" #include "AD.h" #include measure_define.h #include KEY_FUNCTION_DEFINE.H #include Cap_define.h void ININT_int1(void); extern unsigned char key_number; extern unsigned char disp_value ; void main(void) { unsigne
[Microcontroller]
Proteus simulation of multimeter based on 51 single chip microcomputer
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号