The Evolution of Arm Servers from v8 to v9

The Evolution of Arm Servers from v8 to v9

Related Reading: What are the differences between Arm architecture upgrades from v9 to v8? 01 ARM: The Big Three The separation of CPU design and manufacturing through foundry models provides AMD with high flexibility. The second and third generation EPYC processors can relatively freely choose different processes to match specific chip design needs, objectively helping … Read more

Invisible Embedded Skirting Board: How to Draw Node Diagrams? (DOP Design Experience)

Invisible Embedded Skirting Board: How to Draw Node Diagrams? (DOP Design Experience)

△Star Mark ☆DOP Design, never miss a valuable article. Source: google.cn DOP Design (ID: dopdesign) Original Author | DOP Design Editor | Lizi As people’s pursuit of refinement and high quality increases, every detail in interior design has become more meticulous. In addition to the “invisible light” hidden design, the design of skirting boards has … Read more

Understanding Embedded Communication Protocols Made Simple

Understanding Embedded Communication Protocols Made Simple

UART, SPI, and I2C are very common serial communication methods in embedded development. The underlying communication principles are not difficult, but many beginners struggle to learn them. Today, I will share some common underlying data transmission principles. 1 UART Serial Communication UART:Universal Asynchronous Receiver/Transmitter. The UART serial port is the most common type of serial … Read more

Understanding Memory Alignment of C Structs in Embedded Systems

Understanding Memory Alignment of C Structs in Embedded Systems

Today, I bring you a classic and commonly mistaken question about memory alignment of C language structures: Calculate the number of bytes occupied by the following structure in a 32-bit environment: typedef struct test_struct { char a; short b; char c; int d; char e; }test_struct; Please provide your answer: Let’s take a look at … Read more

How Embedded WiFi Chips are Disrupting the MCU Market

How Embedded WiFi Chips are Disrupting the MCU Market

AuthorGuilin Zhong (WeChat ID: great_basketball) Editor of “Smart Product Circle” Undoubtedly, driven by the Internet of Things (IoT) and the interconnection of all things, the embedded WiFi chip market has become the “explosion point,” with total shipments expected to reach 100 million units in 2016 (For more information on embedded WiFi chips, please read “The … Read more

Embedded C Coding Standards

Embedded C Coding Standards

“ Introduction: This article analyzes the embedded C coding standards shared by a foreigner on GitHub (recommended for careful reading): Embedded Mixed Bag.Keywords: Embedded, C statements, Programming standards ” Sharing the embedded C coding standards of a foreigner on GitHub (recommended for careful reading) [1] 01 Most Important Rules   The most important rule when writing … Read more

Essential Embedded Tools for Developers

Essential Embedded Tools for Developers

Previously shared in the article “Embedded Software Tools List” were some commonly used and well-known tools. In this article, we will summarize some lesser-known but very practical auxiliary tools, hoping to be of help to everyone. 1. VSPD Virtual Serial Port Driver (VSPD) is a virtual serial port software. Virtual serial port software simulates physical … Read more