Learn stm32f103c8t6, how to download and use the information from the official website of Zhengdian Atom

Learn stm32f103c8t6, ​​how to download and use the information from the official website of Zhengdian Atom

1. Download information

Use Baidu to search for "punctual atom"

image-20230602094816643

Click to enter and find the information about the chip model we need, and select the information about the stm32f103-mini development board to download. Others are like the elite version of stm32f103, the battleship development board, etc. Because we did not buy the development board of Atom, we are just for reference. His information, so the information on the stm32f103-mini development board is enough for us to learn and use:

image-20230602095001510

Click on it and it will be full of information links. Let’s download the information on disk A of the development board information:

image-20230602095109573

Development board information: Disk A is very rich in information. Use what you need, as shown below.

image-20230602100137651

At this point, the data acquisition of Zhengdian Atom is basically completed. Here's how to use it.

2. How to use

The first and last step: Open the file "STM32F103 MINI Development Guide V1.3.pdf". If you downloaded the A disk information of other boards of Zhengdian Atom, there will be pages similar to "STM32F103 ***Elite Development Guide V* **.pdf" file. Follow this document to read, learn, and use it. The document will explain what the data on disk A is used for and how to use it.

This development guide introduces all functions and peripherals of STM32 in detail. It is divided into three chapters according to difficulty level and knowledge structure: basic chapter, entry chapter and improvement chapter.
Basics, a total of 12 chapters, mainly introduces some basic knowledge, including development environment construction, new projects, HAL library introduction, clock tree introduction, SYSTEM folder introduction, etc. These chapters have no common structure, but they are related to each other. There is an integrated relationship in it, that is, you must first learn the previous knowledge before you can learn the following knowledge points.
There are forty-one chapters in total in the introductory and advanced chapters, which introduce in detail the usage and driver code of each peripheral of the STM32F103, and also introduce some very practical program codes (pure software routines), such as: memory management, files System reading and writing, pinyin input method, handwriting recognition, picture decoding, IAP, etc. This part takes up most of the book, and these chapters have a common structure. They are generally divided into four parts: introduction to peripheral functions, hardware design, program design, and download verification.

Introduction to peripheral functions, briefly introduces the peripheral functions, block diagrams and registers used in specific chapters, so that everyone can have a basic understanding of the functions of the peripherals used, which will facilitate subsequent program design.

Hardware design, including the specific function description of the experiment in specific chapters, the hardware resources used and the schematic connection method, so as to know what to do? Which IO ports need to be used? How is it wired? It is convenient to write driver code during programming.

Programming generally includes three parts: driver introduction, configuration steps, program flow chart, key code analysis, and main function explanation. Introduce step by step how the program code comes from, precautions, etc., so as to learn the entire code.
Download verification is a practical part. After completing the program design, we will teach you how to download and verify whether our routine is correct? Complete a closed-loop process.

Guess you like

Origin blog.csdn.net/quxuexi/article/details/131022071