Understanding RISC-V: Is It Really Open Source?

Understanding RISC-V: Is It Really Open Source?

Follow Fengyun Voice Enhance Thinking Level Introduction The chairman of RISC-V made it clear: RISC-V is not an open-source processor? It certainly is not a processor; it refers to an instruction set. Recently, there have been articles online that misinterpret RISC-V and open-source processors, causing confusion among some readers. This article will clarify concepts such … Read more

Why RISC-V is Succeeding: An In-Depth Analysis

Why RISC-V is Succeeding: An In-Depth Analysis

Author | BRIAN BAILEY Translator | Wang Qiang Planning | Liu Yan The birth of the RISC-V processor architecture has undoubtedly excited many people. However, although many say that RISC-V heralds a broader open-source hardware movement, it is not easy to determine why this architecture has succeeded, and whether it will promote the emergence of … Read more

Applications of CAN Communication in Microcontroller Hardware

Applications of CAN Communication in Microcontroller Hardware

Follow+Star Public Number, don’t miss exciting content Source | Renesas Embedded Encyclopedia CAN has a wide range of applications, and many microcontrollers now integrate CAN controllers internally. Today, I will describe its application case in conjunction with the CAN controller module of the Renesas RA2 microcontroller. Introduction to Renesas RA2L1 Series MCU The RA2L1 product … Read more

Comprehensive Guide to 80 Examples of Microcontroller Programming

Comprehensive Guide to 80 Examples of Microcontroller Programming

*Example 1: Using P3 port to light up 8 LEDs in sequence #include<reg51.h> //Include the header file for microcontroller registers / Function: Delay for a period of time void delay(void) { unsigned char i,j; for(i=0;i<250;i++) for(j=0;j<250;j++) ; } / Function: Main function void main(void) { while(1) { P3=0xfe; //First light on delay(); //Call delay function … Read more

Understanding the Differences Between VCC and VDD in Microcontrollers

Understanding the Differences Between VCC and VDD in Microcontrollers

Microcontrollers, as a common type of embedded device, are an essential part of many electronic devices and systems. In the design and application of microcontrollers, the supply voltage is a very important parameter, and among them, VCC and VDD are the two most critical supply pins in microcontrollers. This article will introduce the differences between … Read more

Building an Inspection Robot Using Microcontrollers

Building an Inspection Robot Using Microcontrollers

Write summaries, discuss careers, and win DJI drones, Redmi tablets, Huawei headphones, and JD gift cards!Participate in the “End of Year Summary and Career Discussion” event, share your past experiences in the electronics industry, or summarize your 2023. Project Development Background The construction of the rail inspection robot is achieved through an intelligent rail-based inspection … Read more

Common Filtering Methods for Microcontroller ADC

Common Filtering Methods for Microcontroller ADC

Follow+Star Public Number, don’t miss wonderful content Source | Internet Nowadays, the types and quantities of sensors are increasing, and many of these sensors use analog signals, which rely on ADC. However, the analog signals collected by our microcontroller’s ADC generally need to go through “filtering” processing before they can be used. Below are some … Read more