Guide to Using and Configuring YCT Automotive MCU VSCode IDE (Part 1)

Guide to Using and Configuring YCT Automotive MCU VSCode IDE (Part 1)

Content Summary Author’s Note: With the increasing production of YCT automotive MCU chip models, more and more customers are beginning to use YCT’s automotive MCU application software development toolchain. Among them, the VSCode IDE based on CMake + ninja + GNU gcc toolchain is particularly popular. However, for many engineers accustomed to traditional IDEs, using … Read more

Guide to Configuring a Meteorological Python Environment in an Offline Network

Guide to Configuring a Meteorological Python Environment in an Offline Network

Guide to Configuring a Meteorological Python Environment in an Offline Network (Based on Anaconda) This guide is suitable for the Anaconda + VSCode development environment, helping users quickly set up the required Python environment for meteorological data analysis without internet access. 📦 Project Name Configuration of the Meteorological Python Environment (MeteoPy310) Main Purpose: Pre-install commonly … Read more

Compiling OpenCV with MinGW-GCC and Developing in VSCode on Windows

Compiling OpenCV with MinGW-GCC and Developing in VSCode on Windows

0. Introduction OpenCV (Open Source Computer Vision Library: http://opencv.org) is an open-source library that contains hundreds of computer vision algorithms. It is essentially a C++ API, rather than the C-based OpenCV 1.x API (the C API has been deprecated since the release of OpenCV 2.4 and has not been tested with C compilers). Since OpenCV’s … Read more

stm32-for-vscode: Compile, Debug, and Flash Firmware Directly in VSCode

stm32-for-vscode: Compile, Debug, and Flash Firmware Directly in VSCode

For those writing STM32 code, you must have used STM32CubeMX + CubeIDE, right? However, the IDE can sometimes be sluggish and the configuration can be quite frustrating. Today, I want to recommend a powerful tool: stm32-for-vscode, which allows you to compile, debug, and flash firmware directly in VSCode. It is lightweight and efficient, making it … Read more

Configuring C/C++ Development Environment for VSCode with GCC and MinGW (Windows) (Part 1)

Configuring C/C++ Development Environment for VSCode with GCC and MinGW (Windows) (Part 1)

0. Introduction This article references the official Visual Studio Code documentation on Using GCC with MinGW, but provides a more detailed analysis of the parameters in the four configuration files located in the <span>.vscode</span> folder of the project directory: <span>c_cpp_properties.json</span>, <span>launch.json</span>, <span>settings.json</span>, and <span>tasks.json</span>. It explains how to configure these four files to achieve the … Read more

Configuring C/C++ Development Environment for VSCode with GCC and MinGW (Windows) – Part 2

Configuring C/C++ Development Environment for VSCode with GCC and MinGW (Windows) - Part 2

4. Understanding tasks.json When running the program for the first time, the C++ extension will create a <span>tasks.json</span> file, which can be found in the project’s <span>.vscode</span> folder. The purpose of <span>tasks.json</span> is to define tasks such as compilation, building, and cleaning, which can be triggered by <span>Ctrl+Shift+B</span>. The automatically generated <span>tasks.json</span> file should look … Read more

Tutorial | How to Install GitHub Copilot in Arduino IDE

Tutorial | How to Install GitHub Copilot in Arduino IDE

The version of Arduino IDE used in this tutorial is 2.3.6. Introduction If you don’t want to fiddle with the Arduino CLI, Arduino IDE is the programming environment that almost all beginners encounter when starting with Arduino. I found the functionality of Arduino IDE to be inconvenient and the interface quite simplistic, so I went … Read more

Configuring C/C++ Language Environment in VSCode (Beginner’s Guide)

Configuring C/C++ Language Environment in VSCode (Beginner's Guide)

Welcome to follow CSDN: Honglong Maker (formerly known as Capitalist) Basic Steps: Download and Install VSCode VSCode download link: https://code.visualstudio.com If you don’t know how to install VSCode, check the blog below: Detailed VSCode Installation Guide (Windows) – Suoerya’s Blog – CSDN Blog: https://blog.csdn.net/Zhangguohao666/article/details/105665412 Install C++ Extension img Click and drag to move Install Compiler … Read more

Configuring C Language: A Comprehensive Guide

Configuring C Language: A Comprehensive Guide

Section 1: Introduction“Before typing my first line of code, I was almost discouraged by C language…”“Want to write your first line of C code but got stuck on configuration—spending half an hour installing the compiler without success, changing environment variables until dizzy, and encountering a bunch of errors, unable to run even ‘hello world’? Don’t … Read more

VS Installation Localization and Collaboration Tutorial with Keil5 (Includes Installation Package Link)

VS Installation Localization and Collaboration Tutorial with Keil5 (Includes Installation Package Link)

Note: For installation tutorials, you can search for “Embedded Workshop” on Bilibili for instructional videos. This tutorial covers localization and collaboration.1. Search for the localization plugin in the left search bar: chinese2. After installation, click restart on the right page3. Similarly, search for C++ installation4. Search for Keil5 installation5. In Keil, click the settings icon … Read more