ARM low-level development tools

Publisher:technology78Latest update time:2016-08-13 Source: eefocusKeywords:ARM Reading articles on mobile phones Scan QR code
Read articles on your mobile phone anytime, anywhere
        Nowadays, ARM is generally quite powerful, and can be directly installed with operating systems such as Linux and WINCE starting from ARM9. However, in some cases, it is used as a super MCU without operating system.

        To use ARM as a super MCU, the following development tools are required:

 

ADS: does not support ARM11, only supports ARM9 at most, which is now obsolete.

Keil MDK-ARM: Same as RealView MDK. In previous versions, the kernel used Keil, which does not support ARM as well as ARM's own ADS. Now it has been acquired by ARM. After ARM acquired Keil, the compiler was changed to its own Real View, which became RealView MDK.

RealView MDK: RealView Microcontroller Develop Kit, a product developed in cooperation with Keil. It only supports the development of low-end MCUs, such as ARM7/ARM9/cortex-m3/m1

RVDS: Real View Develop Suit, supports all ARM, high-end development tools.

 

IAR: IAR Embedded Workbench, compared with the above 4 software released by ARM, IAR has better compatibility and supports more processors, not only ARM but also Renesas, and also supports 8051 and other MCUs. Unfortunately, ARM only supports ARM11 so far, and does not support cortex-A8 and so on.

///////////////////////////////////////////////////// ///////////////////////////////////////////////////// //////////////////////////////

The difference between Realview MDK and Realview DS:

        Realview MDK is mainly used for the development of embedded applications. Its device database contains many chips from many manufacturers, such as AT91SAM64, S3C2410, etc. MDK can not only simulate the instruction sets of ARM7, ARM9 and CORTEX, but also simulate their peripheral devices, such as IIC, UART, SPI, etc. MDK cooperates with ULINK2 to control ARM-based chips through the JTAG interface, and can display the register values ​​of the ARM core and the values ​​of the peripheral registers on the chip in real time. At the same time, it can also modify the values ​​of the memory, so it is very convenient for the development and debugging of embedded applications. 

        Realview DS is mainly used for debugging during chip development. It cooperates with the ICE emulator to accurately implement the logical functions of ARM cores such as ARM7, ARM9, ARM10, ARM11, CORTEX, etc., which is convenient for IC manufacturers to simulate and test the ARM core-based SOC chips they design or manufacture. 

        Although Realview MDK and Realview DS both use the RVCT compiler suite and can develop embedded applications, Realview DS is mainly used for IC design and is not suitable for the development of embedded applications. It is best to use Realview MDK to develop embedded applications. 

        RVMDK and RVDS are two different products of ARM. The two tools have different positioning. RVMDK is launched to meet the needs of engineers who develop embedded software based on MCU. RVDS is provided for engineers engaged in SOC and FPGA design. The price of RVDS is relatively expensive. If you are developing ARM-based applications, it is best to use RVMDK, which is also relatively cheap.

///////////////////////////////////////////////////// ///////////////////////////////////////////////////// /////////////////////////////

Keywords:ARM Reference address:ARM low-level development tools

Previous article:Compilation problems encountered when cross-compiling the json-c-0.9 library under arm-linux
Next article:ARM Timer 0 (interrupt)

Recommended ReadingLatest update time:2024-11-16 13:24

GNU ARM Assembly--(VI) Clock Control of s3c2440
        In the previous few articles, I used GNU ARM assembly to control LED and the design of ARM interrupt processing, which gave me a certain understanding of ARM assembly and architecture. The following assembly learning will be combined with specific chips, one is to use assembly more flexibly and skillfully, and
[Microcontroller]
GNU ARM Assembly--(VI) Clock Control of s3c2440
IAR fully supports GigaDevice's ultra-high-performance MCUs based on the Arm® Cortex®-M7 core
IAR embedded development solutions now fully support GigaDevice GD32H7 series, and work with partners to provide development tools for high-end innovative applications Shanghai, China—July 13, 2023, IAR, a global leader in embedded development software and services, and GigaDevice, an industry-leading
[Embedded]
IAR fully supports GigaDevice's ultra-high-performance MCUs based on the Arm® Cortex®-M7 core
Digital Temperature Measurement System Based on ARM and DS18B20
        0 Introduction   Thermal error is the biggest error source of CNC machine tools. Temperature test of CNC machine tools provides a basis for compensating thermal errors of machine tools. The traditional temperature measurement scheme is to transmit analog signals over long distances through cables to data acq
[Microcontroller]
Digital Temperature Measurement System Based on ARM and DS18B20
ARM coprocessor and its instructions
ARM microprocessors can support up to 16 coprocessors for various coprocessing operations. During program execution, each coprocessor only executes coprocessing instructions for itself and ignores instructions from the ARM processor and other coprocessors. ARM coprocessor instructions are mainly used for: 1 ARM proces
[Microcontroller]
What is the difference between ARM architecture and x86 architecture?
  This article mainly introduces the difference between arm architecture and x86 architecture. First, it introduces the ARM architecture diagram, and then the x86 architecture diagram. Finally, it compares the difference between arm architecture and x86 architecture in detail from five aspects: performance, scalabilit
[Microcontroller]
What is the difference between ARM architecture and x86 architecture?
Difference between ARM and FPGA
     In the field of embedded development, ARM is a very popular microprocessor with a very high market coverage. DSP and FPGA are coprocessors for embedded development, helping microprocessors to better realize product functions. What are the technical characteristics and differences between the three? The following i
[Microcontroller]
ARM aarch64 assembly learning notes (Part 2): ARM DS-5 simulator installation and use
If you want to do your work well, you must first sharpen your tools. Although Qemu can be used for simulation development, there are some difficulties in debugging and assembling in Qemu. DS-5 (ARM Development Studio 5) is a comprehensive end-to-end software development tool suite for ARM-supported Linux and Android p
[Microcontroller]
ARM aarch64 assembly learning notes (Part 2): ARM DS-5 simulator installation and use
Design and implementation of motion controller based on ARM+FPGA
1 Introduction The motion control system of an industrial CT machine often requires precise and real-time control of the motion of multiple axes. In the past, the motion controller was designed using an industrial computer + multiple boards. As the overall functions of industrial CT machines become increasingly
[Microcontroller]
Design and implementation of motion controller based on ARM+FPGA
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号