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

Advanced Support for IoT Applications in .NET Core 3: System.Device.Gpio

Advanced Support for IoT Applications in .NET Core 3: System.Device.Gpio

System.Device.Gpio is a brand new open-source library for .Net Core, designed to enable IoT (Internet of Things) applications to interact with hardware like sensors, displays, and input devices through its GPIO pins or other I/O controls. This library is enhanced by a collection of device bindings maintained by the community. As demonstrated by Microsoft’s .NET … Read more

How to Deploy .NET Core 2 on Raspberry Pi 3B

How to Deploy .NET Core 2 on Raspberry Pi 3B

There is very little information on how to deploy .NET Core 2 on Linux ARM processors. I found a few articles online, but they were not detailed enough, and I hit a wall following their tutorials. After several days of struggle, I finally succeeded in the deployment. Here is a successful run screenshot: 1. In … Read more

Why C++ is Not Recommended for Microcontroller Programming

Why C++ is Not Recommended for Microcontroller Programming

Follow+Star Public Account, don’t miss out on exciting content Author | strongerHuang WeChat Public Account | Embedded Column Generally speaking, when programming on microcontrollers, either assembly or C language is used, and it is rare to develop with C++. So why is it not recommended to use C++ for microcontroller development? Below, I will discuss … Read more