Unexpected Discovery: Cortex-M Core with 64-bit Timestamp

Unexpected Discovery: Cortex-M Core with 64-bit Timestamp

Tencent Video: Bilibili Video: Introduction: According to the Debug section of the parameter manual, those in the System ROM Table with Timestamp generator are supported, while those without are not supported. The current tested series H743/H750, etc. come with it. Similar to the DWT clock counter, it can be used for debugging as well as … Read more

How to Reduce Bugs During the Coding Phase?

How to Reduce Bugs During the Coding Phase?

Source丨AuthorizedReprinted from Embedded and Linux Matters (ID: gh_748eaf2209b0) Author丨Zhong Yi Introduction As a qualified programmer, it is impossible not to write bugs. How can we spend the least amount of time fixing bugs? By using some static analysis tools during the coding phase, we can often achieve more with less effort and reduce the bugs … Read more

C Language and Embedded System Performance Optimization

C Language and Embedded System Performance Optimization

C Language and Embedded System Performance Optimization: Improving System Response Speed In embedded system development, performance optimization is a crucial topic. Since embedded devices usually have limited resources, optimizing code to improve system response speed is particularly important. This article will introduce some common performance optimization techniques and illustrate them with C language code examples. … Read more

Mutex Issues Between RTOS Tasks

Mutex Issues Between RTOS Tasks

When developing projects based on RTOS, we often encounter mutual exclusion situations, such as: multiple tasks needing to use a single UART port to send data. If mutex locks are not used, a higher priority task may preempt the UART and send data, potentially resulting in “garbled” data being sent. Today, we will discuss a … Read more

27 Programming Languages to Enhance Your Python Skills

27 Programming Languages to Enhance Your Python Skills

Translation: Open Source China www.oschina.net/translate/languages-to-improve-your-python Original: http://www.curiousefficiency.org/posts/2015/10/languages-to-improve-your-python.html 27 Languages Procedural Programming Languages: C, Rust, Cython Object-Oriented Data Modeling Languages: Java, C#, Eiffel Object-Oriented Derivatives of C: C++, D Array-Oriented Data Processing: MATLAB/Octave, Julia Statistical Data Analysis: R Computational Pipeline Modeling: Haskell, Scala, Clojure, F# Event-Driven Programming: JavaScript, Go, Erlang, Elixir Gradual Typing: TypeScript Dynamic Metaprogramming: … Read more

Function Calls in Embedded Systems

Function Calls in Embedded Systems

Understanding the function call process is beneficial for implementing the AUTOSAR layered architecture. 1 Memory Distribution of the Program In embedded systems, what is the internal mechanism when a function is called, and what steps are executed? As shown in Figure 1, first, let’s look at the memory distribution of a program when it is … Read more

Embedded Software Design for Testability

Embedded Software Design for Testability

“Star Public Account“, Let’s Progress Together! Hello everyone, I am Mixed Cuisine Jun. This time we will introduce embedded software design for testability. What is testability? It means that after you finish writing a software module/function interface, you can conveniently and comprehensively perform self-testing. Let’s take a simple example to understand testable software. There is … 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

Running .NET Core 3.0 on Raspberry Pi 4: Truly 64-bit!

Running .NET Core 3.0 on Raspberry Pi 4: Truly 64-bit!

Click the blue text above to follow “Mastering VS Code” Introduction Not long ago, I wrote an article titled “Installing .NET Core 3.0 Runtime and SDK on Raspberry Pi 4” and subsequent articles titled “Self-starting .NET Core 3.0 Environment on Raspberry Pi”, “Nginx Configuration for Internal Access to ASP.NET Core 3.0 Website on Raspberry Pi … Read more

Mainstream Development Languages for Microcontrollers

Mainstream Development Languages for Microcontrollers

Follow+Star Public Account Number, don’t miss exciting content Author | strongerHuang WeChat Official Account | strongerHuang Microcontrollers have many names, MCU (Microcontroller Unit), also called microcontroller, etc. With the popularity of the Internet of Things, the demand for microcontrollers is increasing. At the same time, with the enhancement of microcontroller performance and resources, the languages … Read more