Comparison of Features Between e2studio and STM32CubeIDE

Comparison of Features Between e2studio and STM32CubeIDE

1. Overview/Purpose 2. Official Information 2.1 STM32CubeIDE 2.2 e2studio 3. Feature Comparison 1. Overview/Purpose Quickly master both IDEs through comparative learning 2. Official Information 2.1 STM32CubeIDE https://www.stmcu.com.cn/ecosystem/Cube/STM32CubeIDE https://www.st.com/content/st_com/zh/stm32cubeide.html 2.2 e2studio https://www.renesas.cn/cn/zh/software-tool/e-studio https://www.renesas.cn/cn/zh/software-tool/flexible-software-package-fsp#overview 3. Feature Comparison Localization Auto-completion Chinese Encoding Memory Usage Details Online Library Updates Example Download and Import Clock Tree Reset and Automatic Chip … Read more

Reading and Writing Internal Flash with STM32CUBEIDE

Reading and Writing Internal Flash with STM32CUBEIDE

Without clicking the blue text, how can we have a story?Overview This example mainly explains how to read and write the built-in Flash of the chip. Using the internal Flash of the chip can save some data that needs to be retained after power off, without the need to add external storage chips. This example … Read more

Viewing Variables in STM32CubeIDE

Viewing Variables in STM32CubeIDE

ST has launched a free compilation and debugging development environment STM32CubeIDE, which is gaining more attention and use among STM32 users. A common question during the development process based on STM32CubeIDE is how to view variables during debugging. Here, I will briefly demonstrate the implementation process. I defined two global variables in the project, as … Read more

Download STM32Cube IDE

Download STM32Cube IDE

Sometimes, the official STM32 website may be inaccessible for various reasons. You can use the cloud storage service Pandown to download it. The cloud storage service is consistently usable and provides decent speeds without needing to check the news. Link: https://pan.baidu.com/s/1D5C2uVZj2S0jBHrnZs8Xng Extraction Code: 8173 The cloud storage contains version 1.00. I only have version 1.0.0 … Read more

Switching from Keil5 to STM32CubeIDE for C++ Development

Switching from Keil5 to STM32CubeIDE for C++ Development

Since learning about the 51 microcontroller, my programming software has always been Keil5. Whether it’s C51 or MDK, my programming has always been based on Keil, except for using TI’s CCS to program the MSP series, and I have hardly used any other programming IDEs (except for the Arduino IDE for programming the ESP32). However, … Read more

Demonstration of Debugging Tools in STM32CubeIDE

Demonstration of Debugging Tools in STM32CubeIDE

STMicroelectronics provides a powerful integrated debugging tool based on GCC, called STM32CubeIDE, for all STM32 users free of charge. This article briefly demonstrates several debugging tools and features supported by STM32CubeIDE.1. Use Live Expression to display variable data in real-time;2. Use SWV‘s SWO feature to implement printf output;3. Use SWV to achieve real-time tracking and … Read more

Experience the Power of STM32CubeIDE: A Comprehensive Guide

Experience the Power of STM32CubeIDE: A Comprehensive Guide

Follow/Star Public Account to not miss any updates STM32CubeIDE is an all-in-one tool, and this article will guide you through its powerful features: installation and setup, code generation, and online hardware debugging. 1Introduction STM32CubeIDE has been updated to version V1.6.1, and this development environment created quite a stir when it was launched in the community. … Read more

Simple Steps to Migrate from TrueSTUDIO to STM32CubeIDE

Simple Steps to Migrate from TrueSTUDIO to STM32CubeIDE

Follow,Star Public Account Number, don’t miss exciting content More and more people are using the STM32CubeIDE tool, and I am also taking time to master this tool (of course, I haven’t used it in a project yet). The STM32CubeIDE tool integrates many features, but the threshold may be relatively high for beginners. Recommended reading of … Read more

Common Issues When Getting Started with STM32CubeIDE

Common Issues When Getting Started with STM32CubeIDE

ST has provided a free integrated development tool STM32CubeIDE for many STM32 users for some time now. As the saying goes, the beginning is always the hardest. Here are a few common issues regarding its initial use that I would like to share. 【Note: Images in this article can be enlarged for viewing on mobile … Read more

Using STM32CubeIDE Compiler Warnings Effectively

Using STM32CubeIDE Compiler Warnings Effectively

Keywords: STM32CubeIDE, warning, compiler warnings Table of Contents 1 Introduction2 Using Warnings Effectively3 Conclusion 1. Introduction Compiler warnings are very common for engineers. For meticulous engineers, no warning is overlooked. 2. Using Warnings Effectively In STM32CubeIDE, warnings (and even errors) can be used to notify engineers, ensuring that some easily overlooked configurations receive attention. For … Read more