Mastering STM32: Overcoming Project Challenges

Mastering STM32: Overcoming Project Challenges

Follow,Star public number, don’t miss wonderful content Source: Zhihu Editor: Zhang Qiaolong Someone asked on Zhihu: I’ve been learning STM32 for a long time, but I still feel helpless when it comes to doing projects independently? I started learning from 51, and now I’ve been learning STM32 for almost two years, mainly following the courses … 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

Introduction to Industrial Software Development Technology in 2024

Introduction to Industrial Software Development Technology in 2024

Professional Overview The Industrial Software Development Technology program is a key program in the “Hubei Province’s Service to Modern Industrial Clusters”—a backbone program in the high-level professional construction group of Xinchuang. It was established in 2016 in response to the Ministry of Education’s call for the key development of “New Engineering” and is one of … Read more

27 Programming Languages to Enhance Your Python Skills

27 Programming Languages to Enhance Your Python Skills

(Click the blue text above to quickly follow us) Translation: Open Source China www.oschina.net/translate/languages-to-improve-your-python If you have good articles to submit, please click → here for details 27 Programming 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 … Read more

The Bible of Embedded System Development

The Bible of Embedded System Development

Introduction to autonomous mobile robots, covering: Introduction to embedded systems, Overview of embedded SoC hardware systems, Embedded system software development. Suitable for product managers, system design analysts, and engineers looking to enter this field. This material provides detailed theoretical explanations and extensively analyzes relevant embedded system technologies. It is an essential introductory bible for developing … Read more

Essential Knowledge Points for Embedded C Language: A Comprehensive Summary

Essential Knowledge Points for Embedded C Language: A Comprehensive Summary

How to excel in Embedded Systems? When you ask this question, you will often hear the advice to master C language!Today, I recommend a comprehensive summary of knowledge points in Embedded C Language written by an expert, which is definitely worth reading. From a grammatical perspective, C language is not complex, but writing high-quality and … Read more

Practical Development of VxWorks

Practical Development of VxWorks

Authors: Chen Zhiyu, Wen Yanjun, Chen Qi Content Summary: This book introduces the embedded real-time multitasking operating system VxWorks and its host environment Tornado, and practically describes the program development process on it. The book details the important components of VxWorks, including multitasking environment, memory management, I/O system (including character devices), file system, and network … Read more

Reduce Docker Image Size by 99% with These Techniques

Reduce Docker Image Size by 99% with These Techniques

For those who are new to containers, they can easily be intimidated by the size of the Docker images they build. Why does an image exceed 1 GB when I only need a few MB executable? This article will introduce several techniques to help you slim down your images without sacrificing the convenience for developers … Read more

Three Common Architectures in Embedded Software Development

Three Common Architectures in Embedded Software Development

Abstract: For microcontroller programs, everyone is familiar, but very few actually consider the architecture. With the increasing number of program developments, having an architecture is very necessary. There are roughly three types of application architectures: 1. Simple front and back sequential execution programs, this method is used by most people, without needing to think about … Read more

Architectural Patterns Suitable for Embedded Software

Architectural Patterns Suitable for Embedded Software

Embedded software may experience coupling between drivers and applications due to hardware resource limitations. However, for large projects with ample resources, complex business logic and the need for future expansion and maintenance necessitate the adoption of layered and modular thinking, which is the essence of architectural patterns. Common architectural patterns available in the market include … Read more