Understanding ARM Assembly and ARM GNU Assembly

Understanding ARM Assembly and ARM GNU Assembly

1. Two Ways of ARM Assembly Development ARM assembly development refers to the use of ARM-provided assembly instructions for ARM program development. There are two ways of ARM assembly development: one is using ARM assembly, and the other is using ARM GNU assembly. The assembly instructions used in both development methods are exactly the same; … Read more

Mastering C Language: Become an Excellent Programmer

Mastering C Language: Become an Excellent Programmer

Basic Knowledge Computer Language: The language used for communication between humans and computers is called computer language. Computer languages are divided into high-level languages and low-level languages. High-level languages: Far from hardware. Low-level languages: Close to hardware. Instruction: A command for the computer to perform a certain operation, consisting of a series of binary codes. … Read more

What Happens After the Microcontroller Program Ends?

What Happens After the Microcontroller Program Ends?

For embedded systems, if there is no RTOS running, the main function main() in program development needs to use some mechanism to keep running happily forever, it has no endpoint. If you want to exit from the main function, what happens specifically is determined by the C language compiler used. 1. Introduction to the Problem … Read more

LLVM Example Practice: Compiling LLVM/Clang on ARM and Writing LLVMPass

LLVM Example Practice: Compiling LLVM/Clang on ARM and Writing LLVMPass

"IT Talk" is a professional IT information and service platform under the Machinery Industry Press, dedicated to helping readers master more professional and practical knowledge and skills in the broad field of IT, quickly enhancing their competitiveness in the workplace. Click the blue WeChat name to quickly follow us! How to Compile LLVM/Clang on ARM … Read more

Detailed Explanation of ARM Compilers (armcc/armclang)

Detailed Explanation of ARM Compilers (armcc/armclang)

Click the blue text Follow us Due to changes in the public account’s push rules, please click “View” and add “Star” to get exciting technical shares at the first time Source from the internet, please delete if infringing Learning the ARM Compiler First, let’s understand the compiler, which is usually divided into three parts: frontend … Read more

Keil MDK Compiler Migration Guide from V5 to V6

Keil MDK Compiler Migration Guide from V5 to V6

This is an official migration video. You can reply with 【Keil Series Tutorial】 in the background of my public account “strongerHuang” to view the corresponding article. var __INLINE_SCRIPT__ = (function () { 'use strict'; function _arrayLikeToArray$2(arr, len) { if (len == null || len > arr.length) len = arr.length; for (var i = 0, arr2 … Read more

Common Issues When Adding/Modifying AC Compiler in Keil MDK

Common Issues When Adding/Modifying AC Compiler in Keil MDK

Follow+Star Public Account, don’t miss exciting content Author | strongerHuang WeChat Official Account | strongerHuang Yesterday shared a 【How to Install and Change AC Compiler in Keil MDK?】 video: However, some friends encountered issues during the actual operation, so today I will briefly summarize: Common Issues When Adding/Modifying AC Compiler in Keil MDK. 1. Unable … Read more