Implementation of SPI interface of Arm processor based on Proteus

Publisher:HeavenlyJoy444Latest update time:2012-03-31 Keywords:Proteus Reading articles on mobile phones Scan QR code
Read articles on your mobile phone anytime, anywhere

Implementation of SPI interface of Arm processor based on Proteus

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 of Labcenter electronics in the UK. It is an electronic design teaching platform, experimental platform and innovation platform, covering all functions of electrical and electronic laboratories, electronic technology laboratories, single-chip microcomputer application laboratories, etc. 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 the system composed of single-chip microcomputer and its peripheral circuits, RS232 dynamic simulation, I2C debugger, SPI debugger, keyboard and LCD system simulation; there are various virtual instruments, such as oscilloscope, logic analyzer, signal generator, etc.

②Support the simulation of mainstream single-chip microcomputer systems. Currently supported single-chip microcomputer types include: 68000 series, 8051 series, AVR series, PIC12 series, PIC16 series, PIC18 series, Z80 series, HC11 series and ARM (LPC series) of Phil-lips Company, etc.

③ Provide software debugging functions. The hardware simulation system has debugging functions such as full speed, single step, and breakpoint setting. At the same time, the current status of various variables and registers can be observed. Therefore, 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 function. It can design SCH (schematic diagram) and PCB (printed circuit 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 with 74HC595, adds necessary peripheral circuits, and controls 74HC595 to drive 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.

Schematic Design in Proteus Environment

3. Program code writing

The writing of program code is mainly divided into 4 parts:

① Initialization code of LPC2106;

②LPC2106 exception vector entry and the interface between the exception vector and C language code, including the code for initializing the stack;

③LPC2106 target board-specific code, including exception handler and target board initialization program;

④ According to the example requirements and combined with the schematic diagram, write the code to implement the expected function, that is, the usual execution code, and save the code file as "main.C".

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 initialization, startup and other program codes. You only need to write "main.C" according to different requirements, which saves a lot of time and greatly improves 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 the 4 LEDs to display the corresponding hexadecimal numbers. The program source code is as follows:

Program source code

Program source code

Program source code

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. Its full name is ARM Developer Suite, and its 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 the Projeet→Make command, compile and connect the project, and generate the 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.

Property Settings Window

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:Implementation of SPI interface of Arm processor based on Proteus

Previous article:Design and verify synthesizable analog and RF models for complex SoCs
Next article:Integrated circuit detection method

Recommended ReadingLatest update time:2024-11-16 15:19

How to use the SPI communication interface inside the PIC microcontroller
#include #define uchar unsigned char #define uint  unsigned int #define cs RC2 #define dout RC4 #define nop() asm("nop") __CONFIG(0x3B31); const uchar table ={0x3f,0x06,0x5b,0x4f,0x66,0x6d,0x7d,                         0x07,0x7f,0x6f,0x77,0x7c,0x39,0x5e,0x79,0x71}; uchar da ta_temp; void delay(uint x); void
[Microcontroller]
Design of adaptive mine main fan monitoring system based on ARM9
0 Introduction The main fan of a mine is the main ventilation equipment of a mine. Its task is to remove dust and dirty gas from the mine and reduce the gas concentration in the mine. However, the main fan control technology used in most domestic coal mining industries has not been improved for many years.
[Microcontroller]
Design of adaptive mine main fan monitoring system based on ARM9
Wu Xiong'ang responded to the dispute over ARM's control in China: There is no conflict of interest, and ARM has no right to remove him
In his first interview with international media, ARM China CEO Wu Xiong'ang defended his pursuit of control over ARM's Chinese business, according to the Financial Times. New details are emerging about Wu's $100 million personal investment fund that led to a dispute with ARM and its backers. Wu Xiong'ang said that A
[Mobile phone portable]
ARM_Core processor modes and registers
ARM processor working state: ARM processor has two working states. During the execution of the program, the processor can switch between the two working states without affecting                                 The contents of the corresponding register. ARM state, when the processor executes 32-bit aligned ARM instr
[Microcontroller]
Use Proteus to learn the digital tube of 51 single chip microcomputer
Today we are learning how to use digital tubes and latches. The purpose of using latches is to reduce the use of IO ports. Originally, at least 15 IO ports were needed. After using latches, only 10 IO ports are needed. If more digital tubes are added, the number of IO ports will also increase one by one. The function
[Microcontroller]
Use Proteus to learn the digital tube of 51 single chip microcomputer
goAhead 2.5 embedded web server ported to arm9 2440 + linux
Summary of this article: This article describes in detail the process, steps, problems encountered and their solutions for porting goAhead 2.5 to the S3C2440 Linux system. Development Environment:         Host: window XP;         Virtual machine: Ubuntu 9.10;         Cross compiler: arm-uclibc-gcc (arm-linux-g
[Microcontroller]
LDR/STR in ARM Assembly
In the ARM architecture, data movement from memory to CPU can only be done through LDR/STR instructions. MOV can only move data between registers, or move immediate data to registers, and the length of the data cannot exceed 8 bits. The first operand of LDR and STR is the target register, and the second operand is the
[Microcontroller]
Design of 16×32 dot matrix LED Chinese character display screen based on Protues
The design of a single-chip microcomputer system generally includes two aspects: hardware circuit design and program design. The debugging process is generally divided into three processes: software debugging, hardware testing, and system debugging. Software debugging is generally easier, but it is more troublesome
[Power Management]
Design of 16×32 dot matrix LED Chinese character display screen based on Protues
Latest Analog Electronics Articles
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号