Getting Started with ESP32: Phase One Course Launch

Getting Started with ESP32: Phase One Course Launch

ESP32 Phase One Course is now live, here are some explanations and introductions to this course: 1. This tutorial is the first phase of the ESP32 course, covering mainly ESP32 introduction, environment installation, GPIO interface, external interrupts, UART communication, ADC, DAC, timers, IIC bus, SPI bus, and IIS bus. Since the core feature of the … Read more

Choosing Between ESP32 and STM32: A Comprehensive Guide

Choosing Between ESP32 and STM32: A Comprehensive Guide

Advantages of ESP32 Before discussing this issue, we first need to outline the advantages of ESP32 compared to STM32. The ESP32 features a dual-core 240MHz processor, built-in WiFi and Bluetooth including low power Bluetooth, while most STM32 chips lack built-in wireless capabilities and rely on external devices for wireless communication, which is the main advantage … Read more

Understanding the Cortex-M Interrupt/Exception System and Priority/Nesting

Understanding the Cortex-M Interrupt/Exception System and Priority/Nesting

Follow and star the public account to access wonderful content Compiled by: Technology makes dreams greater | Li Xiaoyao Link: https://itexp.blog.csdn.net/article/details/85029696 Problem Recently, while using the STM32F3 chip, I encountered a problem: If the frequency of external interrupts is fast enough, how to handle the new interrupt if the previous one has not been processed? … Read more

Driving a 4-Digit Seven-Segment Display Module

Driving a 4-Digit Seven-Segment Display Module

The TM1637 four-digit seven-segment display module is a 4-digit common anode display module (0.36 inches) with a clock point. The driving chip is TM1637, and the driving method is IIC, so only 2 signal lines are needed to control the 4-digit 8-segment display (the brightness of the display can be adjusted in 8 levels). Module … Read more

Comparative Analysis of STM32 and Arduino: Which is Superior?

Comparative Analysis of STM32 and Arduino: Which is Superior?

What is the comparative performance of Arduino and STM32? Many electronics enthusiasts face a dilemma when choosing between Arduino and STM32. Arduino has always been popular, but STM32 offers more interfaces, stronger performance, and faster speeds? Features of Arduino and STM32 Arduino: Arduino is more geared towards creativity, simplifying hardware operations. Its functions and syntax … Read more

Optimizing Embedded C Code for Performance

Optimizing Embedded C Code for Performance

Click the “Microcontroller” above, and select “Top/Star“Public Account to receive the latest articles! Introduction How to optimize embedded C code? Application of Wuhan Chip Source General MCU CW32F030 series products in massage guns – Wuhan Chip Source Semiconductor Co., Ltd. [C Language Advanced] Efficiently troubleshooting your C programs using assert [C Language Advanced] Advanced usage … Read more

Top Development Boards for IoT: A Comprehensive Review

Top Development Boards for IoT: A Comprehensive Review

Follow and star the official account,so you won’t miss out on exciting content. Source: Huawei Developer Community Edited by: strongerHuang In recent years, the rapid development of the Internet of Things (IoT) has been felt by everyone. It is well known that the underlying boards (or development boards) are the smart devices in the perception … Read more

Understanding the Differences and Connections Between ARM7, ARM9, S3C2410, STM32, and Cortex-M3

Understanding the Differences and Connections Between ARM7, ARM9, S3C2410, STM32, and Cortex-M3

Seeing that the number 9 in ARM9 is larger, do you think it is better? Seeing that a lot of information is based on S3C2410, do you think it is still quite popular now? If we could turn back time 10 years, ARM9 and S3C2410 were indeed quite popular. Why do I say this? Because … Read more

Understanding the Relationship Between STM32, Cortex-M3, and ARMv8-M

Understanding the Relationship Between STM32, Cortex-M3, and ARMv8-M

Follow our official account, and never miss exciting content. Compiled by: Engineer Huang Reference: Wikipedia Reference link: https://en.wikipedia.org/wiki/ARM_architecture Everyone should know that STM32, Cortex-M3, and ARMv8-M are related to ARM, but may not be clear about their relationships or what they specifically are. 1. Overview ARMv8-M: is an ARM architecture. ARM architectures are divided into: … Read more

Understanding the Principles of Bit-Banding Operations in Cortex-M

Understanding the Principles of Bit-Banding Operations in Cortex-M

Bit-banding operations may not be used as much now, but in the past, when MCU performance was not very good, bit-banding operations were a common operation among many software engineers. This article mainly discusses the Cortex-M3 core (STM32F1), and I believe many friends have been confused when they first learned about it. 1About Bit-Banding Operations … Read more