CMake: Installing a Project

CMake: Installing a Project

Introduction: This note will introduce some basic concepts through a small project, which will also be used in later notes. Installing files, libraries, and executables is a very basic task, but it can also bring some issues. This note demonstrates how to effectively avoid these problems using CMake. ✦ Project Structure ✦ ├── CMakeLists.txt ├── … Read more

Library-Based Embedded Device Driver Development

Library-Based Embedded Device Driver Development

Follow and star our public account to access exciting content Source: The Last Bug Some friends asked me how to write excellent C code. This cannot be explained in just a few sentences. Excellent code is bound to be the crystallization of various programming techniques and design philosophies, so it requires step-by-step accumulation of methods … Read more

The ‘Library’ Concept in Embedded Device Drivers

The 'Library' Concept in Embedded Device Drivers

I'm Lao Wen, an embedded engineer who loves learning. Follow me, and let's become better together! How to write excellent C code? Excellent code is a crystallization of various programming techniques and design ideas, so it requires step-by-step accumulation. I’m sharing this article on building the ‘library’ concept for everyone to experience. What if device … Read more

Building the ‘Library’ Concept for Embedded Device Drivers

Building the 'Library' Concept for Embedded Device Drivers

How to write excellent C code? Excellent code is undoubtedly the crystallization of various programming techniques and design philosophies, so it requires step-by-step accumulation. Here I share this article on building the ‘library’ concept, and everyone can experience it. What if device programs were perfectly library-based? 1. All engineers would spend minimal effort when porting … Read more

Comparative Analysis of Four STM32 Libraries: Register, Standard Peripheral Library, HAL, and LL

Comparative Analysis of Four STM32 Libraries: Register, Standard Peripheral Library, HAL, and LL

Follow+Star Public Account Number, don’t miss the wonderful content Author | strongerHuang WeChat Public Account | strongerHuang 1. Should I choose register development for STM32, or the Standard Peripheral Library? 2. Do you have the STM32L0 Standard Peripheral Library? 3. What are the differences between HAL and LL libraries? … Now, let’s discuss the four … Read more

Essential Proteus Simulation Libraries for Arduino Projects

Essential Proteus Simulation Libraries for Arduino Projects

We often need to perform many simulations with Proteus, but there are many files that cannot be immediately found. I discovered some useful simulation libraries on The Engineering Projects blog. 1) Arduino Proteus Library With this library, you can simulate Arduino boards in Proteus and design any type of circuit. Arduino UNO Arduino Mega 2560 … Read more

Top Open Source Android Libraries of 2016

Top Open Source Android Libraries of 2016

Related Articles: Comprehensive List of Popular Android Frameworks Essential Android Interview Questions You Must Know for 2017 Awesome! 74 Complete APP Source Codes! 1. Dependency Injection (DI) Reduce repetitive initialization, event binding, and other tedious work through dependency injection. 1. AndroidAnnotations (Code Diet) Fast Development Framework for Android Project link: https://github.com/excilys/androidannotations Documentation: https://github.com/excilys/androidannotations/wiki Official website: … Read more

Exploring Arduino Official Libraries for Hardware Control

Exploring Arduino Official Libraries for Hardware Control

Arduino, as a very popular open-source hardware and software platform, owes its powerful functionality to the rich libraries provided officially. These libraries offer pre-written codes that allow easy control of various hardware components to achieve various functions. This article will delve into Arduino’s official libraries, guiding you to explore the Arduino world and kickstart your … Read more